VRTK_ObjectCache.cs 534 B

1234567891011
  1. namespace VRTK
  2. {
  3. using System.Collections.Generic;
  4. public static class VRTK_ObjectCache
  5. {
  6. public static List<VRTK_BasicTeleport> registeredTeleporters = new List<VRTK_BasicTeleport>();
  7. public static List<VRTK_DestinationMarker> registeredDestinationMarkers = new List<VRTK_DestinationMarker>();
  8. public static Dictionary<VRTK_InteractTouch, VRTK_ControllerTrackedCollider> registeredTrackedColliderToInteractTouches = new Dictionary<VRTK_InteractTouch, VRTK_ControllerTrackedCollider>();
  9. }
  10. }