TestString.OnLoadFinished C# (CSharp) Method

OnLoadFinished() protected method

protected OnLoadFinished ( ) : void
return void
    protected override void OnLoadFinished()
    {
        base.OnLoadFinished();
        luaState.DoString(script);
        LuaFunction func = luaState.GetFunction("Test");
        func.Call();
        func.Dispose();
        func = null;
    }