Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
534 B

  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. }