示例#1
0
		void Awake()
		{
			//Instantiate the context, passing it this instance and a 'true' for autoStartup.
			context = new SocialContext(this, true);
			context.Start ();
		}
示例#2
0
 void Awake()
 {
     //Instantiate the context, passing it this instance
     context = new SocialContext(this);
 }
示例#3
0
		void Awake()
		{
			//Instantiate the context, passing it this instance
			context = new SocialContext(this);
		}
示例#4
0
 void Awake()
 {
     //Instantiate the context, passing it this instance and a 'true' for autoStartup.
     context = new SocialContext(this, true);
     context.Start();
 }