コード例 #1
0
ファイル: WorldBuilderMain.cs プロジェクト: Levi777L/Version3
 public static void ChoosePlaceMode()
 {
     objAngleX = 0;
     objAngleY = 0;
     objAngleZ = 0;
     PlaceObjectMode.Instance().SetupMode();
 }
コード例 #2
0
 public static PlaceObjectMode Instance()
 {
     if (instance == null)
     {
         instance = new PlaceObjectMode();
         manager  = SL.Get <GameManager>();
         control  = SL.Get <IVRControl>();
     }
     return(instance);
 }