Ulua_toLua_基本案例(六)_LuaCoroutine2

Posted blfbuaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ulua_toLua_基本案例(六)_LuaCoroutine2相关的知识,希望对你有一定的参考价值。

Ulua_toLua_基本案例(六)_LuaCoroutine2


using UnityEngine;
using System.Collections;
using LuaInterface;

public class TestCoroutine2 : MonoBehaviour 
{
    LuaState luaState = null;    

    string script =
    @"
        function CoExample()            
            WaitForSeconds(2)
            print('WaitForSeconds end time: '.. UnityEngine.Time.time)
            WaitForFixedUpdate()
            print('WaitForFixedUpdate end frameCount: '..UnityEngine.Time.frameCount)
            WaitForEndOfFrame()
            print('WaitForEndOfFrame end frameCount: '..UnityEngine.Time.frameCount)
            Yield(null)
            print('yield null end frameCount: '..UnityEngine.Time.frameCount)
            Yield(0)
            print('yield(0) end frameCime: '..UnityEngine.Time.frameCount)
            local www = UnityEngine.WWW('http://www.baidu.com')
            Yield(www)
            print('yield(www) end time: '.. UnityEngine.Time.time)
            local s = tolua.tolstring(www.bytes)
            print(s:sub(1, 128))
            print('coroutine over')
        end

        function TestCo()
            print('TestCo')
            local co = coroutine.create(CoExample)
                        
            local flag, msg = coroutine.resume(co)
            
            if not flag then
                error(msg)
            end
        end
    ";

	void Awake () 
    {
        luaState = new LuaState();
        luaState.Start();
        LuaBinder.Bind(luaState);
        LuaCoroutine.Register(luaState, this);

        luaState.DoString(script);
        LuaFunction func = luaState.GetFunction("TestCo");
        func.Call();
        func.Dispose();
	}

    void OnDestroy()
    {
        luaState.Dispose();
        luaState = null;
    }
}


以上是关于Ulua_toLua_基本案例(六)_LuaCoroutine2的主要内容,如果未能解决你的问题,请参考以下文章

二十六学成在线案例_底部模块

十六算术编码_1基本原理与实现

案例六:实现1+2+3+...+100的求和计算

[jQuery学习系列六]6-jQuery实际操作小案例

[jQuery学习系列六]6-jQuery实际操作小案例

Tutorial 01_JAVA基本语法[实验任务四]