예제 #1
0
 static void ClearEditorCacheMemory()
 {
     ScriptThread.Start(ClearEditorCacheMemoryImp());
 }
예제 #2
0
 //截图用读取像素方式
 public static void ScreenShotByReadPixels(Action <byte[]> CallBack)
 {
     ScriptThread.Start(screenShotByReadPixels((data) => { CallBack(data); }));
 }
 /// <summary>
 ///		Updates the animation of the entity associated with this process.
 /// </summary>
 /// <param name="deltaTime">Elapsed time since last frame.</param>
 public override void Run(float deltaTime)
 {
     _thread.IsWaiting = false;
     _thread.Start();
     Finish(ProcessResult.Success);
 }