コード例 #1
0
 private void Start()
 {
     this._testNum    = 0;
     this._statusText = this.TextObject.GetComponent <TextMesh>();
     this._statusText.set_text("-- SERIALIZATION TESTS -- \r\n Tests are run with \r\n a three second delay \r\n Starting in 10 seconds.");
     this._tester  = new JsonTestScript(this._statusText);
     this._refTime = DateTime.get_Now().AddSeconds(7.0);
 }
コード例 #2
0
 // Use this for initialization
 void Start()
 {
     //Set the test starting point
     _testNum         = 0;
     _statusText      = TextObject.GetComponent <TextMesh>();
     _statusText.text = "-- SERIALIZATION TESTS -- \r\n Tests are run with \r\n a three second delay \r\n Starting in 10 seconds.";
     _tester          = new JsonTestScript(_statusText);
     _refTime         = DateTime.Now.AddSeconds(7);
 }
コード例 #3
0
ファイル: TextTest.cs プロジェクト: GregLukosek/Crowd
	// Use this for initialization
	void Start ()
	{
        //Set the test starting point
        _testNum = 0;
	    _statusText = TextObject.GetComponent<TextMesh>();
        _statusText.text = "-- SERIALIZATION TESTS -- \r\n Tests are run with \r\n a three second delay \r\n Starting in 10 seconds.";
        _tester = new JsonTestScript(_statusText);
        _refTime = DateTime.Now.AddSeconds(7);
        
	}