예제 #1
0
    public static int PushFBScene(ILuaState lua)
    {
        int    stk   = 1;
        string scene = L.ToString(stk++);

        if (!string.IsNullOrEmpty(scene))
        {
            StringTool.UTF8String(ref scene);
        }

        GlobalValue.AddFBScene(scene);

        return(0);
    }