コード例 #1
0
ファイル: HandPool.cs プロジェクト: prosa100/vros
 // Use this for initialization
 void Start()
 {
     ModelPool = new List <IHandModel>();
     ModelPool.Add(LeftGraphicsModel);
     ModelPool.Add(RightGraphicsModel);
     ModelPool.Add(LeftPhysicsModel);
     ModelPool.Add(RightPhysicsModel);
     controller_ = GetComponent <LeapHandController>();
 }
コード例 #2
0
ファイル: HandPool.cs プロジェクト: VRWizards/VR-Project
 // Use this for initialization
 void Start()
 {
     ModelPool = new List<IHandModel>();
       ModelPool.Add(LeftGraphicsModel);
       ModelPool.Add(RightGraphicsModel);
       ModelPool.Add(LeftPhysicsModel);
       ModelPool.Add(RightPhysicsModel);
       controller_ = GetComponent<LeapHandController>();
 }
コード例 #3
0
 // Use this for initialization
 void Start() {
   ModelPool = new List<IHandModel>();
   for (int i = 0; i < ModelCollection.Count; i++) {
     if (ModelCollection[i] != null) {
       ModelPool.Add(ModelCollection[i]);
     }
   }
   controller_ = GetComponent<LeapHandController>();
 }
コード例 #4
0
ファイル: HandPool.cs プロジェクト: tezikazhou/ImmenseBrick
 // Use this for initialization
 void Start()
 {
     ModelPool = new List <IHandModel>();
     for (int i = 0; i < ModelCollection.Count; i++)
     {
         if (ModelCollection[i] != null)
         {
             ModelPool.Add(ModelCollection[i]);
         }
     }
     controller_ = GetComponent <LeapHandController>();
 }