コード例 #1
0
 static public InputEventCtrl GetInstance()
 {
     if (_Instance == null)
     {
         GameObject obj = new GameObject("_InputEventCtrl");
         _Instance = obj.AddComponent <InputEventCtrl>();
         _Instance.Init();
         pcvr.GetInstance();
     }
     return(_Instance);
 }