コード例 #1
0
ファイル: GameRoot.cs プロジェクト: soltierre/SoundPanda
		void Awake()
		{
			//Instantiate the context, passing it this instance and a 'true' for autoStartup.
			context = new GameContext(this, true);
			context.Start ();
		}
コード例 #2
0
ファイル: GameRoot.cs プロジェクト: KMY520/strangeioc
		void Awake()
		{
			//Instantiate the context, passing it this instance.
			context = new GameContext(this);
		}
コード例 #3
0
ファイル: GameRoot.cs プロジェクト: BIGBUILDGAMES/starcontrol
 void Awake()
 {
     //Instantiate the context, passing it this instance and a 'true' for autoStartup.
     context = new GameContext(this, true);
     context.Start();
 }