├── Assets ├── LuaFramework.meta ├── LuaFramework │ ├── Editor.meta │ ├── Editor │ │ ├── CustomSettings.cs │ │ ├── CustomSettings.cs.meta │ │ ├── Packager.cs │ │ └── Packager.cs.meta │ ├── Examples.meta │ ├── Examples │ │ ├── Builds.meta │ │ ├── Builds │ │ │ ├── Message.meta │ │ │ ├── Message │ │ │ │ ├── MessagePanel.prefab │ │ │ │ └── MessagePanel.prefab.meta │ │ │ ├── Prompt.meta │ │ │ └── Prompt │ │ │ │ ├── PromptItem.prefab │ │ │ │ ├── PromptItem.prefab.meta │ │ │ │ ├── PromptPanel.prefab │ │ │ │ └── PromptPanel.prefab.meta │ │ ├── Editor Default Resources.meta │ │ ├── Editor Default Resources │ │ │ ├── WelcomeScreenContactIcon.png │ │ │ ├── WelcomeScreenContactIcon.png.meta │ │ │ ├── WelcomeScreenDocumentationIcon.png │ │ │ ├── WelcomeScreenDocumentationIcon.png.meta │ │ │ ├── WelcomeScreenForumIcon.png │ │ │ ├── WelcomeScreenForumIcon.png.meta │ │ │ ├── WelcomeScreenHeader.png │ │ │ ├── WelcomeScreenHeader.png.meta │ │ │ ├── WelcomeScreenSamplesIcon.png │ │ │ ├── WelcomeScreenSamplesIcon.png.meta │ │ │ ├── WelcomeScreenVideosIcon.png │ │ │ └── WelcomeScreenVideosIcon.png.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── WelcomeScreen.cs │ │ │ └── WelcomeScreen.cs.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── Prompt.meta │ │ │ ├── Prompt │ │ │ ├── 1.png │ │ │ └── 1.png.meta │ │ │ ├── Shared.meta │ │ │ └── Shared │ │ │ ├── ButtonClick.png │ │ │ ├── ButtonClick.png.meta │ │ │ ├── ButtonDisable.png │ │ │ ├── ButtonDisable.png.meta │ │ │ ├── ButtonNormal.png │ │ │ ├── ButtonNormal.png.meta │ │ │ ├── SmallBaseMap.png │ │ │ └── SmallBaseMap.png.meta │ ├── LiteNetLib.meta │ ├── LiteNetLib │ │ ├── INetEventListener.cs │ │ ├── INetEventListener.cs.meta │ │ ├── NatPunchModule.cs │ │ ├── NatPunchModule.cs.meta │ │ ├── NetConstants.cs │ │ ├── NetConstants.cs.meta │ │ ├── NetDebug.cs │ │ ├── NetDebug.cs.meta │ │ ├── NetEndPoint.cs │ │ ├── NetEndPoint.cs.meta │ │ ├── NetManager.cs │ │ ├── NetManager.cs.meta │ │ ├── NetPacket.cs │ │ ├── NetPacket.cs.meta │ │ ├── NetPeer.cs │ │ ├── NetPeer.cs.meta │ │ ├── NetSocket.cs │ │ ├── NetSocket.cs.meta │ │ ├── NetThread.cs │ │ ├── NetThread.cs.meta │ │ ├── NetUtils.cs │ │ ├── NetUtils.cs.meta │ │ ├── NtpSyncModule.cs │ │ ├── NtpSyncModule.cs.meta │ │ ├── Properties.meta │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyInfo.cs.meta │ │ ├── ReliableChannel.cs │ │ ├── ReliableChannel.cs.meta │ │ ├── SequencedChannel.cs │ │ ├── SequencedChannel.cs.meta │ │ ├── SimpleChannel.cs │ │ ├── SimpleChannel.cs.meta │ │ ├── Utils.meta │ │ └── Utils │ │ │ ├── FastBitConverter.cs │ │ │ ├── FastBitConverter.cs.meta │ │ │ ├── NetDataReader.cs │ │ │ ├── NetDataReader.cs.meta │ │ │ ├── NetDataWriter.cs │ │ │ ├── NetDataWriter.cs.meta │ │ │ ├── NetSerializer.cs │ │ │ └── NetSerializer.cs.meta │ ├── Lua.meta │ ├── Lua │ │ ├── 3rd.meta │ │ ├── 3rd │ │ │ ├── cjson.meta │ │ │ ├── cjson │ │ │ │ ├── example1.json │ │ │ │ ├── example1.json.meta │ │ │ │ ├── example2.json │ │ │ │ ├── example2.json.meta │ │ │ │ ├── example3.json │ │ │ │ ├── example3.json.meta │ │ │ │ ├── example4.json │ │ │ │ ├── example4.json.meta │ │ │ │ ├── example5.json │ │ │ │ ├── example5.json.meta │ │ │ │ ├── json2lua.lua │ │ │ │ ├── json2lua.lua.meta │ │ │ │ ├── lua2json.lua │ │ │ │ ├── lua2json.lua.meta │ │ │ │ ├── test.lua │ │ │ │ ├── test.lua.meta │ │ │ │ ├── util.lua │ │ │ │ └── util.lua.meta │ │ │ ├── luabitop.meta │ │ │ ├── luabitop │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.meta │ │ │ │ ├── Makefile.mingw │ │ │ │ ├── Makefile.mingw.meta │ │ │ │ ├── README │ │ │ │ ├── README.meta │ │ │ │ ├── bitbench.lua │ │ │ │ ├── bitbench.lua.meta │ │ │ │ ├── bittest.lua │ │ │ │ ├── bittest.lua.meta │ │ │ │ ├── doc.meta │ │ │ │ ├── doc │ │ │ │ │ ├── api.html │ │ │ │ │ ├── api.html.meta │ │ │ │ │ ├── bluequad-print.css │ │ │ │ │ ├── bluequad-print.css.meta │ │ │ │ │ ├── bluequad.css │ │ │ │ │ ├── bluequad.css.meta │ │ │ │ │ ├── changes.html │ │ │ │ │ ├── changes.html.meta │ │ │ │ │ ├── contact.html │ │ │ │ │ ├── contact.html.meta │ │ │ │ │ ├── img.meta │ │ │ │ │ ├── img │ │ │ │ │ │ ├── contact.png │ │ │ │ │ │ └── contact.png.meta │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.html.meta │ │ │ │ │ ├── install.html │ │ │ │ │ ├── install.html.meta │ │ │ │ │ ├── semantics.html │ │ │ │ │ └── semantics.html.meta │ │ │ │ ├── installpath.lua │ │ │ │ ├── installpath.lua.meta │ │ │ │ ├── md5test.lua │ │ │ │ ├── md5test.lua.meta │ │ │ │ ├── msvcbuild.bat │ │ │ │ ├── msvcbuild.bat.meta │ │ │ │ ├── msvctest.bat │ │ │ │ ├── msvctest.bat.meta │ │ │ │ ├── nsievebits.lua │ │ │ │ └── nsievebits.lua.meta │ │ │ ├── pbc.meta │ │ │ ├── pbc │ │ │ │ ├── addressbook.pb │ │ │ │ ├── addressbook.pb.meta │ │ │ │ ├── addressbook.proto │ │ │ │ ├── addressbook.proto.meta │ │ │ │ ├── parser.lua │ │ │ │ ├── parser.lua.meta │ │ │ │ ├── protobuf.lua │ │ │ │ ├── protobuf.lua.meta │ │ │ │ ├── test.lua │ │ │ │ ├── test.lua.meta │ │ │ │ ├── test2.lua │ │ │ │ ├── test2.lua.meta │ │ │ │ ├── testparser.lua │ │ │ │ └── testparser.lua.meta │ │ │ ├── pblua.meta │ │ │ ├── pblua │ │ │ │ ├── login.proto │ │ │ │ ├── login.proto.meta │ │ │ │ ├── login_pb.lua │ │ │ │ ├── login_pb.lua.meta │ │ │ │ ├── person_pb.lua │ │ │ │ └── person_pb.lua.meta │ │ │ ├── sproto.meta │ │ │ └── sproto │ │ │ │ ├── print_r.lua │ │ │ │ ├── print_r.lua.meta │ │ │ │ ├── sproto.lua │ │ │ │ ├── sproto.lua.meta │ │ │ │ ├── sprotoparser.lua │ │ │ │ ├── sprotoparser.lua.meta │ │ │ │ ├── test.lua │ │ │ │ ├── test.lua.meta │ │ │ │ ├── testall.lua │ │ │ │ ├── testall.lua.meta │ │ │ │ ├── testrpc.lua │ │ │ │ └── testrpc.lua.meta │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── define.lua │ │ │ ├── define.lua.meta │ │ │ ├── functions.lua │ │ │ ├── functions.lua.meta │ │ │ ├── protocal.lua │ │ │ └── protocal.lua.meta │ │ ├── Controller.meta │ │ ├── Controller │ │ │ ├── MessageCtrl.lua │ │ │ ├── MessageCtrl.lua.meta │ │ │ ├── PromptCtrl.lua │ │ │ └── PromptCtrl.lua.meta │ │ ├── Logic.meta │ │ ├── Logic │ │ │ ├── CtrlManager.lua │ │ │ ├── CtrlManager.lua.meta │ │ │ ├── Game.lua │ │ │ ├── Game.lua.meta │ │ │ ├── LuaClass.lua │ │ │ ├── LuaClass.lua.meta │ │ │ ├── Network.lua │ │ │ └── Network.lua.meta │ │ ├── Main.lua │ │ ├── Main.lua.meta │ │ ├── View.meta │ │ ├── View │ │ │ ├── MessagePanel.lua │ │ │ ├── MessagePanel.lua.meta │ │ │ ├── PromptPanel.lua │ │ │ └── PromptPanel.lua.meta │ │ ├── eventlib.lua │ │ ├── eventlib.lua.meta │ │ ├── events.lua │ │ └── events.lua.meta │ ├── Luajit.meta │ ├── Luajit │ │ ├── Build.bat │ │ ├── Build.bat.meta │ │ ├── jit.meta │ │ ├── jit │ │ │ ├── bc.lua │ │ │ ├── bc.lua.meta │ │ │ ├── bcsave.lua │ │ │ ├── bcsave.lua.meta │ │ │ ├── dis_arm.lua │ │ │ ├── dis_arm.lua.meta │ │ │ ├── dis_mips.lua │ │ │ ├── dis_mips.lua.meta │ │ │ ├── dis_mipsel.lua │ │ │ ├── dis_mipsel.lua.meta │ │ │ ├── dis_ppc.lua │ │ │ ├── dis_ppc.lua.meta │ │ │ ├── dis_x64.lua │ │ │ ├── dis_x64.lua.meta │ │ │ ├── dis_x86.lua │ │ │ ├── dis_x86.lua.meta │ │ │ ├── dump.lua │ │ │ ├── dump.lua.meta │ │ │ ├── v.lua │ │ │ ├── v.lua.meta │ │ │ ├── vmdef.lua │ │ │ └── vmdef.lua.meta │ │ ├── lua51.dll │ │ ├── lua51.dll.meta │ │ ├── luajit.exe │ │ └── luajit.exe.meta │ ├── Resources.meta │ ├── Resources │ │ ├── TestGameObjectPrefab.prefab │ │ └── TestGameObjectPrefab.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── main.unity │ │ └── main.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── LuaBehaviour.cs │ │ │ ├── LuaBehaviour.cs.meta │ │ │ ├── LuaLoader.cs │ │ │ └── LuaLoader.cs.meta │ │ ├── ConstDefine.meta │ │ ├── ConstDefine │ │ │ ├── AppConst.cs │ │ │ ├── AppConst.cs.meta │ │ │ ├── ManagerName.cs │ │ │ ├── ManagerName.cs.meta │ │ │ ├── NotiConst.cs │ │ │ └── NotiConst.cs.meta │ │ ├── Controller.meta │ │ ├── Controller │ │ │ ├── Command.meta │ │ │ └── Command │ │ │ │ ├── SocketCommand.cs │ │ │ │ ├── SocketCommand.cs.meta │ │ │ │ ├── StartUpCommand.cs │ │ │ │ └── StartUpCommand.cs.meta │ │ ├── Framework.meta │ │ ├── Framework │ │ │ ├── AppFacade.cs │ │ │ ├── AppFacade.cs.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── Base.cs │ │ │ │ ├── Base.cs.meta │ │ │ │ ├── Controller.cs │ │ │ │ ├── Controller.cs.meta │ │ │ │ ├── Facade.cs │ │ │ │ ├── Facade.cs.meta │ │ │ │ ├── Manager.cs │ │ │ │ ├── Manager.cs.meta │ │ │ │ ├── Message.cs │ │ │ │ ├── Message.cs.meta │ │ │ │ ├── View.cs │ │ │ │ └── View.cs.meta │ │ │ ├── Interfaces.meta │ │ │ └── Interfaces │ │ │ │ ├── ICommand.cs │ │ │ │ ├── ICommand.cs.meta │ │ │ │ ├── IController.cs │ │ │ │ ├── IController.cs.meta │ │ │ │ ├── IManager.cs │ │ │ │ ├── IManager.cs.meta │ │ │ │ ├── IMessage.cs │ │ │ │ ├── IMessage.cs.meta │ │ │ │ ├── IView.cs │ │ │ │ └── IView.cs.meta │ │ ├── Main.cs │ │ ├── Main.cs.meta │ │ ├── Manager.meta │ │ ├── Manager │ │ │ ├── GameManager.cs │ │ │ ├── GameManager.cs.meta │ │ │ ├── Interface.meta │ │ │ ├── Interface │ │ │ │ ├── ITimerBehaviour.cs │ │ │ │ └── ITimerBehaviour.cs.meta │ │ │ ├── LuaManager.cs │ │ │ ├── LuaManager.cs.meta │ │ │ ├── NetworkManager.cs │ │ │ ├── NetworkManager.cs.meta │ │ │ ├── ObjectPoolManager.cs │ │ │ ├── ObjectPoolManager.cs.meta │ │ │ ├── PanelManager.cs │ │ │ ├── PanelManager.cs.meta │ │ │ ├── ResourceManager.cs │ │ │ ├── ResourceManager.cs.meta │ │ │ ├── SoundManager.cs │ │ │ ├── SoundManager.cs.meta │ │ │ ├── ThreadManager.cs │ │ │ ├── ThreadManager.cs.meta │ │ │ ├── TimerManager.cs │ │ │ └── TimerManager.cs.meta │ │ ├── Network.meta │ │ ├── Network │ │ │ ├── ByteBuffer.cs │ │ │ ├── ByteBuffer.cs.meta │ │ │ ├── Converter.cs │ │ │ ├── Converter.cs.meta │ │ │ ├── Protocal.cs │ │ │ ├── Protocal.cs.meta │ │ │ ├── SocketClient.cs │ │ │ └── SocketClient.cs.meta │ │ ├── ObjectPool.meta │ │ ├── ObjectPool │ │ │ ├── GameObjectPool.cs │ │ │ ├── GameObjectPool.cs.meta │ │ │ ├── ObjectPool.cs │ │ │ ├── ObjectPool.cs.meta │ │ │ ├── TestObjectClass.cs │ │ │ └── TestObjectClass.cs.meta │ │ ├── Utility.meta │ │ ├── Utility │ │ │ ├── LuaHelper.cs │ │ │ ├── LuaHelper.cs.meta │ │ │ ├── Util.cs │ │ │ └── Util.cs.meta │ │ ├── View.meta │ │ └── View │ │ │ ├── AppView.cs │ │ │ └── AppView.cs.meta │ ├── ToLua.meta │ └── ToLua │ │ ├── BaseType.meta │ │ ├── BaseType │ │ ├── LuaInterface_EventObjectWrap.cs │ │ ├── LuaInterface_EventObjectWrap.cs.meta │ │ ├── LuaInterface_LuaConstructorWrap.cs │ │ ├── LuaInterface_LuaConstructorWrap.cs.meta │ │ ├── LuaInterface_LuaFieldWrap.cs │ │ ├── LuaInterface_LuaFieldWrap.cs.meta │ │ ├── LuaInterface_LuaMethodWrap.cs │ │ ├── LuaInterface_LuaMethodWrap.cs.meta │ │ ├── LuaInterface_LuaOutWrap.cs │ │ ├── LuaInterface_LuaOutWrap.cs.meta │ │ ├── LuaInterface_LuaPropertyWrap.cs │ │ ├── LuaInterface_LuaPropertyWrap.cs.meta │ │ ├── System_ArrayWrap.cs │ │ ├── System_ArrayWrap.cs.meta │ │ ├── System_Collections_Generic_DictionaryWrap.cs │ │ ├── System_Collections_Generic_DictionaryWrap.cs.meta │ │ ├── System_Collections_Generic_Dictionary_KeyCollectionWrap.cs │ │ ├── System_Collections_Generic_Dictionary_KeyCollectionWrap.cs.meta │ │ ├── System_Collections_Generic_Dictionary_ValueCollectionWrap.cs │ │ ├── System_Collections_Generic_Dictionary_ValueCollectionWrap.cs.meta │ │ ├── System_Collections_Generic_KeyValuePairWrap.cs │ │ ├── System_Collections_Generic_KeyValuePairWrap.cs.meta │ │ ├── System_Collections_Generic_ListWrap.cs │ │ ├── System_Collections_Generic_ListWrap.cs.meta │ │ ├── System_Collections_IEnumeratorWrap.cs │ │ ├── System_Collections_IEnumeratorWrap.cs.meta │ │ ├── System_Collections_ObjectModel_ReadOnlyCollectionWrap.cs │ │ ├── System_Collections_ObjectModel_ReadOnlyCollectionWrap.cs.meta │ │ ├── System_DelegateWrap.cs │ │ ├── System_DelegateWrap.cs.meta │ │ ├── System_EnumWrap.cs │ │ ├── System_EnumWrap.cs.meta │ │ ├── System_NullObjectWrap.cs │ │ ├── System_NullObjectWrap.cs.meta │ │ ├── System_ObjectWrap.cs │ │ ├── System_ObjectWrap.cs.meta │ │ ├── System_StringWrap.cs │ │ ├── System_StringWrap.cs.meta │ │ ├── System_TypeWrap.cs │ │ ├── System_TypeWrap.cs.meta │ │ ├── UnityEngine_CoroutineWrap.cs │ │ ├── UnityEngine_CoroutineWrap.cs.meta │ │ ├── UnityEngine_ObjectWrap.cs │ │ └── UnityEngine_ObjectWrap.cs.meta │ │ ├── Core.meta │ │ ├── Core │ │ ├── LuaAttributes.cs │ │ ├── LuaAttributes.cs.meta │ │ ├── LuaBaseRef.cs │ │ ├── LuaBaseRef.cs.meta │ │ ├── LuaBeatEvent.cs │ │ ├── LuaBeatEvent.cs.meta │ │ ├── LuaDLL.cs │ │ ├── LuaDLL.cs.meta │ │ ├── LuaEvent.cs │ │ ├── LuaEvent.cs.meta │ │ ├── LuaException.cs │ │ ├── LuaException.cs.meta │ │ ├── LuaFileUtils.cs │ │ ├── LuaFileUtils.cs.meta │ │ ├── LuaFunction.cs │ │ ├── LuaFunction.cs.meta │ │ ├── LuaMatchType.cs │ │ ├── LuaMatchType.cs.meta │ │ ├── LuaMethodCache.cs │ │ ├── LuaMethodCache.cs.meta │ │ ├── LuaMisc.cs │ │ ├── LuaMisc.cs.meta │ │ ├── LuaStackOp.cs │ │ ├── LuaStackOp.cs.meta │ │ ├── LuaState.cs │ │ ├── LuaState.cs.meta │ │ ├── LuaStatePtr.cs │ │ ├── LuaStatePtr.cs.meta │ │ ├── LuaStatic.cs │ │ ├── LuaStatic.cs.meta │ │ ├── LuaTable.cs │ │ ├── LuaTable.cs.meta │ │ ├── LuaThread.cs │ │ ├── LuaThread.cs.meta │ │ ├── LuaUnityLibs.cs │ │ ├── LuaUnityLibs.cs.meta │ │ ├── LuaValueType.cs │ │ ├── LuaValueType.cs.meta │ │ ├── ObjectPool.cs │ │ ├── ObjectPool.cs.meta │ │ ├── ObjectTranslator.cs │ │ ├── ObjectTranslator.cs.meta │ │ ├── ToLua.cs │ │ ├── ToLua.cs.meta │ │ ├── TypeChecker.cs │ │ ├── TypeChecker.cs.meta │ │ ├── TypeTraits.cs │ │ └── TypeTraits.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── Extend.meta │ │ ├── Extend │ │ │ ├── ToLua_LuaInterface_EventObject.cs │ │ │ ├── ToLua_LuaInterface_EventObject.cs.meta │ │ │ ├── ToLua_LuaInterface_LuaConstructor.cs │ │ │ ├── ToLua_LuaInterface_LuaConstructor.cs.meta │ │ │ ├── ToLua_LuaInterface_LuaField.cs │ │ │ ├── ToLua_LuaInterface_LuaField.cs.meta │ │ │ ├── ToLua_LuaInterface_LuaMethod.cs │ │ │ ├── ToLua_LuaInterface_LuaMethod.cs.meta │ │ │ ├── ToLua_LuaInterface_LuaProperty.cs │ │ │ ├── ToLua_LuaInterface_LuaProperty.cs.meta │ │ │ ├── ToLua_System_Delegate.cs │ │ │ ├── ToLua_System_Delegate.cs.meta │ │ │ ├── ToLua_System_Enum.cs │ │ │ ├── ToLua_System_Enum.cs.meta │ │ │ ├── ToLua_System_Object.cs │ │ │ ├── ToLua_System_Object.cs.meta │ │ │ ├── ToLua_System_String.cs │ │ │ ├── ToLua_System_String.cs.meta │ │ │ ├── ToLua_System_Type.cs │ │ │ ├── ToLua_System_Type.cs.meta │ │ │ ├── ToLua_UnityEngine_GameObject.cs │ │ │ ├── ToLua_UnityEngine_GameObject.cs.meta │ │ │ ├── ToLua_UnityEngine_Input.cs │ │ │ ├── ToLua_UnityEngine_Input.cs.meta │ │ │ ├── ToLua_UnityEngine_Object.cs │ │ │ ├── ToLua_UnityEngine_Object.cs.meta │ │ │ ├── ToLua_UnityEngine_RectTransform.cs │ │ │ └── ToLua_UnityEngine_RectTransform.cs.meta │ │ ├── ToLuaExport.cs │ │ ├── ToLuaExport.cs.meta │ │ ├── ToLuaMenu.cs │ │ ├── ToLuaMenu.cs.meta │ │ ├── ToLuaTree.cs │ │ └── ToLuaTree.cs.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ ├── 01_HelloWorld.meta │ │ ├── 01_HelloWorld │ │ │ ├── HelloWorld.cs │ │ │ ├── HelloWorld.cs.meta │ │ │ ├── HelloWorld.unity │ │ │ └── HelloWorld.unity.meta │ │ ├── 02_ScriptsFromFile.meta │ │ ├── 02_ScriptsFromFile │ │ │ ├── ScriptsFromFile.cs │ │ │ ├── ScriptsFromFile.cs.meta │ │ │ ├── ScriptsFromFile.lua │ │ │ ├── ScriptsFromFile.lua.meta │ │ │ ├── ScriptsFromFile.unity │ │ │ └── ScriptsFromFile.unity.meta │ │ ├── 03_CallLuaFunction.meta │ │ ├── 03_CallLuaFunction │ │ │ ├── CallLuaFunction.cs │ │ │ ├── CallLuaFunction.cs.meta │ │ │ ├── CallLuaFunction.unity │ │ │ └── CallLuaFunction.unity.meta │ │ ├── 04_AccessingLuaVariables.meta │ │ ├── 04_AccessingLuaVariables │ │ │ ├── AccessingLuaVariables.cs │ │ │ ├── AccessingLuaVariables.cs.meta │ │ │ ├── AccessingLuaVariables.unity │ │ │ └── AccessingLuaVariables.unity.meta │ │ ├── 05_LuaCoroutine.meta │ │ ├── 05_LuaCoroutine │ │ │ ├── LuaCoroutine.unity │ │ │ ├── LuaCoroutine.unity.meta │ │ │ ├── TestCoroutine.cs │ │ │ └── TestCoroutine.cs.meta │ │ ├── 06_LuaCoroutine2.meta │ │ ├── 06_LuaCoroutine2 │ │ │ ├── Coroutine.unity │ │ │ ├── Coroutine.unity.meta │ │ │ ├── TestCoroutine2.cs │ │ │ └── TestCoroutine2.cs.meta │ │ ├── 07_LuaThread.meta │ │ ├── 07_LuaThread │ │ │ ├── TestLuaThread.cs │ │ │ ├── TestLuaThread.cs.meta │ │ │ ├── TestThread.unity │ │ │ └── TestThread.unity.meta │ │ ├── 08_AccessingArray.meta │ │ ├── 08_AccessingArray │ │ │ ├── AccessingArray.cs │ │ │ ├── AccessingArray.cs.meta │ │ │ ├── AccessingArray.unity │ │ │ └── AccessingArray.unity.meta │ │ ├── 09_Dictionary.meta │ │ ├── 09_Dictionary │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccountWrap.cs │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccountWrap.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccount_KeyCollectionWrap.cs │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccount_KeyCollectionWrap.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccount_ValueCollectionWrap.cs │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccount_ValueCollectionWrap.cs.meta │ │ │ ├── System_Collections_Generic_KeyValuePair_int_TestAccountWrap.cs │ │ │ ├── System_Collections_Generic_KeyValuePair_int_TestAccountWrap.cs.meta │ │ │ ├── TestAccountWrap.cs │ │ │ ├── TestAccountWrap.cs.meta │ │ │ ├── UseDictionary.cs │ │ │ ├── UseDictionary.cs.meta │ │ │ ├── UseDictionary.unity │ │ │ └── UseDictionary.unity.meta │ │ ├── 10_Enum.meta │ │ ├── 10_Enum │ │ │ ├── AccessingEnum.cs │ │ │ ├── AccessingEnum.cs.meta │ │ │ ├── AccessingEnum.unity │ │ │ └── AccessingEnum.unity.meta │ │ ├── 11_Delegate.meta │ │ ├── 11_Delegate │ │ │ ├── TestDelegate.cs │ │ │ ├── TestDelegate.cs.meta │ │ │ ├── TestEventListener.cs │ │ │ ├── TestEventListener.cs.meta │ │ │ ├── TestEventListenerWrap.cs │ │ │ ├── TestEventListenerWrap.cs.meta │ │ │ ├── UseDelegate.unity │ │ │ └── UseDelegate.unity.meta │ │ ├── 12_GameObject.meta │ │ ├── 12_GameObject │ │ │ ├── TestGameObject.cs │ │ │ ├── TestGameObject.cs.meta │ │ │ ├── TestGameObject.unity │ │ │ └── TestGameObject.unity.meta │ │ ├── 13_CustomLoader.meta │ │ ├── 13_CustomLoader │ │ │ ├── CustomLoader.unity │ │ │ ├── CustomLoader.unity.meta │ │ │ ├── TestCustomLoader.cs │ │ │ └── TestCustomLoader.cs.meta │ │ ├── 14_Out.meta │ │ ├── 14_Out │ │ │ ├── TestOut.unity │ │ │ ├── TestOut.unity.meta │ │ │ ├── TestOutArg.cs │ │ │ └── TestOutArg.cs.meta │ │ ├── 15_ProtoBuffer.meta │ │ ├── 15_ProtoBuffer │ │ │ ├── ProtoBuffer.unity │ │ │ ├── ProtoBuffer.unity.meta │ │ │ ├── TestProtoBuffer.cs │ │ │ ├── TestProtoBuffer.cs.meta │ │ │ ├── TestProtol.cs │ │ │ ├── TestProtol.cs.meta │ │ │ ├── TestProtolWrap.cs │ │ │ ├── TestProtolWrap.cs.meta │ │ │ ├── common.proto │ │ │ ├── common.proto.meta │ │ │ ├── person.proto │ │ │ └── person.proto.meta │ │ ├── 16_Int64.meta │ │ ├── 16_Int64 │ │ │ ├── TestInt64.cs │ │ │ ├── TestInt64.cs.meta │ │ │ ├── TestInt64.unity │ │ │ └── TestInt64.unity.meta │ │ ├── 17_Inherit.meta │ │ ├── 17_Inherit │ │ │ ├── Inherit.unity │ │ │ ├── Inherit.unity.meta │ │ │ ├── TestInherit.cs │ │ │ └── TestInherit.cs.meta │ │ ├── 18_Bundle.meta │ │ ├── 18_Bundle │ │ │ ├── TesetAssetBundle.unity │ │ │ ├── TesetAssetBundle.unity.meta │ │ │ ├── TestABLoader.cs │ │ │ └── TestABLoader.cs.meta │ │ ├── 19_cjson.meta │ │ ├── 19_cjson │ │ │ ├── TestCJson.cs │ │ │ ├── TestCJson.cs.meta │ │ │ ├── testcjson.unity │ │ │ └── testcjson.unity.meta │ │ ├── 20_utf8.meta │ │ ├── 20_utf8 │ │ │ ├── TestUTF8.cs │ │ │ ├── TestUTF8.cs.meta │ │ │ ├── utf8.unity │ │ │ └── utf8.unity.meta │ │ ├── 21_String.meta │ │ ├── 21_String │ │ │ ├── TestString.cs │ │ │ ├── TestString.cs.meta │ │ │ ├── TestString.unity │ │ │ └── TestString.unity.meta │ │ ├── 22_Reflection.meta │ │ ├── 22_Reflection │ │ │ ├── TestReflection.cs │ │ │ ├── TestReflection.cs.meta │ │ │ ├── TestReflection.unity │ │ │ └── TestReflection.unity.meta │ │ ├── 23_List.meta │ │ ├── 23_List │ │ │ ├── UseList.cs │ │ │ ├── UseList.cs.meta │ │ │ ├── UseList.unity │ │ │ └── UseList.unity.meta │ │ ├── 24_Struct.meta │ │ ├── 24_Struct │ │ │ ├── PassStruct.cs │ │ │ ├── PassStruct.cs.meta │ │ │ ├── Struct.unity │ │ │ └── Struct.unity.meta │ │ ├── Performance.meta │ │ ├── Performance │ │ │ ├── Performance.unity │ │ │ ├── Performance.unity.meta │ │ │ ├── TestPerformance.cs │ │ │ └── TestPerformance.cs.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Lua.meta │ │ │ ├── Lua │ │ │ │ ├── Protol.meta │ │ │ │ ├── Protol │ │ │ │ │ ├── common_pb.lua.bytes │ │ │ │ │ ├── common_pb.lua.bytes.meta │ │ │ │ │ ├── person_pb.lua.bytes │ │ │ │ │ └── person_pb.lua.bytes.meta │ │ │ │ ├── TestErrorStack.lua.bytes │ │ │ │ ├── TestErrorStack.lua.bytes.meta │ │ │ │ ├── TestLoader.lua.bytes │ │ │ │ ├── TestLoader.lua.bytes.meta │ │ │ │ ├── TestLuaCoroutine.lua.bytes │ │ │ │ ├── TestLuaCoroutine.lua.bytes.meta │ │ │ │ ├── TestPerf.lua.bytes │ │ │ │ ├── TestPerf.lua.bytes.meta │ │ │ │ ├── ToLuaInjectionTestInjector.lua.bytes │ │ │ │ └── ToLuaInjectionTestInjector.lua.bytes.meta │ │ │ ├── jsonexample.json │ │ │ └── jsonexample.json.meta │ │ ├── TestErrorStack.meta │ │ ├── TestErrorStack │ │ │ ├── TestInstantiate.cs │ │ │ ├── TestInstantiate.cs.meta │ │ │ ├── TestInstantiate.prefab │ │ │ ├── TestInstantiate.prefab.meta │ │ │ ├── TestInstantiate2.cs │ │ │ ├── TestInstantiate2.cs.meta │ │ │ ├── TestInstantiate2.prefab │ │ │ ├── TestInstantiate2.prefab.meta │ │ │ ├── TestLuaStack.cs │ │ │ ├── TestLuaStack.cs.meta │ │ │ ├── TestLuaStack.unity │ │ │ └── TestLuaStack.unity.meta │ │ ├── TestInjection.meta │ │ ├── TestInjection │ │ │ ├── BaseTestWrap.cs │ │ │ ├── BaseTestWrap.cs.meta │ │ │ ├── TestInjection.cs │ │ │ ├── TestInjection.cs.meta │ │ │ ├── TestInjection.unity │ │ │ ├── TestInjection.unity.meta │ │ │ ├── ToLuaInjectionTest.cs │ │ │ ├── ToLuaInjectionTest.cs.meta │ │ │ ├── ToLuaInjectionTestWrap.cs │ │ │ └── ToLuaInjectionTestWrap.cs.meta │ │ ├── TestOverload.meta │ │ └── TestOverload │ │ │ ├── TestExportWrap.cs │ │ │ ├── TestExportWrap.cs.meta │ │ │ ├── TestExport_SpaceWrap.cs │ │ │ ├── TestExport_SpaceWrap.cs.meta │ │ │ ├── TestOverload.cs │ │ │ ├── TestOverload.cs.meta │ │ │ ├── TestOverload.unity │ │ │ └── TestOverload.unity.meta │ │ ├── Injection.meta │ │ ├── Injection │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── ToLuaInjection.cs │ │ │ ├── ToLuaInjection.cs.meta │ │ │ ├── ToLuaInjectionHelper.cs │ │ │ ├── ToLuaInjectionHelper.cs.meta │ │ │ ├── ToLuaText.cs │ │ │ ├── ToLuaText.cs.meta │ │ │ ├── ToluaInjectionBlackListPanel.cs │ │ │ └── ToluaInjectionBlackListPanel.cs.meta │ │ ├── InjectionBlackList.txt │ │ ├── InjectionBlackList.txt.meta │ │ ├── InjectionBridgeEditorInfo.xml │ │ ├── InjectionBridgeEditorInfo.xml.meta │ │ ├── LuaInjectionSkipPaths.txt │ │ ├── LuaInjectionSkipPaths.txt.meta │ │ ├── LuaInjectionStation.cs │ │ └── LuaInjectionStation.cs.meta │ │ ├── Lua.meta │ │ ├── Lua │ │ ├── Build.bat │ │ ├── Build.bat.meta │ │ ├── System │ │ │ ├── Injection.meta │ │ │ ├── Injection │ │ │ │ ├── InjectionBridgeInfo.lua │ │ │ │ ├── InjectionBridgeInfo.lua.meta │ │ │ │ ├── LuaInjectionBus.lua │ │ │ │ ├── LuaInjectionBus.lua.meta │ │ │ │ ├── LuaInjectionStation.lua │ │ │ │ └── LuaInjectionStation.lua.meta │ │ │ ├── Reflection.meta │ │ │ ├── Reflection │ │ │ │ ├── BindingFlags.lua │ │ │ │ └── BindingFlags.lua.meta │ │ │ ├── Timer.lua │ │ │ ├── Timer.lua.meta │ │ │ ├── ValueType.lua │ │ │ ├── ValueType.lua.meta │ │ │ ├── coroutine.lua │ │ │ └── coroutine.lua.meta │ │ ├── UnityEngine.meta │ │ ├── UnityEngine │ │ │ ├── Bounds.lua │ │ │ ├── Bounds.lua.meta │ │ │ ├── Color.lua │ │ │ ├── Color.lua.meta │ │ │ ├── LayerMask.lua │ │ │ ├── LayerMask.lua.meta │ │ │ ├── Mathf.lua │ │ │ ├── Mathf.lua.meta │ │ │ ├── Plane.lua │ │ │ ├── Plane.lua.meta │ │ │ ├── Profiler.lua │ │ │ ├── Profiler.lua.meta │ │ │ ├── Quaternion.lua │ │ │ ├── Quaternion.lua.meta │ │ │ ├── Ray.lua │ │ │ ├── Ray.lua.meta │ │ │ ├── RaycastHit.lua │ │ │ ├── RaycastHit.lua.meta │ │ │ ├── Time.lua │ │ │ ├── Time.lua.meta │ │ │ ├── Touch.lua │ │ │ ├── Touch.lua.meta │ │ │ ├── Vector2.lua │ │ │ ├── Vector2.lua.meta │ │ │ ├── Vector3.lua │ │ │ ├── Vector3.lua.meta │ │ │ ├── Vector4.lua │ │ │ └── Vector4.lua.meta │ │ ├── cjson.meta │ │ ├── cjson │ │ │ ├── util.lua │ │ │ └── util.lua.meta │ │ ├── event.lua │ │ ├── event.lua.meta │ │ ├── jit.meta │ │ ├── jit │ │ │ ├── bc.lua │ │ │ ├── bc.lua.meta │ │ │ ├── bcsave.lua │ │ │ ├── bcsave.lua.meta │ │ │ ├── dis_arm.lua │ │ │ ├── dis_arm.lua.meta │ │ │ ├── dis_arm64.lua │ │ │ ├── dis_arm64.lua.meta │ │ │ ├── dis_arm64be.lua │ │ │ ├── dis_arm64be.lua.meta │ │ │ ├── dis_mips.lua │ │ │ ├── dis_mips.lua.meta │ │ │ ├── dis_mips64.lua │ │ │ ├── dis_mips64.lua.meta │ │ │ ├── dis_mips64el.lua │ │ │ ├── dis_mips64el.lua.meta │ │ │ ├── dis_mipsel.lua │ │ │ ├── dis_mipsel.lua.meta │ │ │ ├── dis_ppc.lua │ │ │ ├── dis_ppc.lua.meta │ │ │ ├── dis_x64.lua │ │ │ ├── dis_x64.lua.meta │ │ │ ├── dis_x86.lua │ │ │ ├── dis_x86.lua.meta │ │ │ ├── dump.lua │ │ │ ├── dump.lua.meta │ │ │ ├── p.lua │ │ │ ├── p.lua.meta │ │ │ ├── v.lua │ │ │ ├── v.lua.meta │ │ │ ├── vmdef.lua │ │ │ ├── vmdef.lua.meta │ │ │ ├── zone.lua │ │ │ └── zone.lua.meta │ │ ├── list.lua │ │ ├── list.lua.meta │ │ ├── lpeg.meta │ │ ├── lpeg │ │ │ ├── re.lua │ │ │ └── re.lua.meta │ │ ├── ltn12.lua │ │ ├── ltn12.lua.meta │ │ ├── mime.lua │ │ ├── mime.lua.meta │ │ ├── misc.meta │ │ ├── misc │ │ │ ├── functions.lua │ │ │ ├── functions.lua.meta │ │ │ ├── misc.lua │ │ │ ├── misc.lua.meta │ │ │ ├── strict.lua │ │ │ ├── strict.lua.meta │ │ │ ├── utf8.lua │ │ │ └── utf8.lua.meta │ │ ├── protobuf.meta │ │ ├── protobuf │ │ │ ├── containers.lua │ │ │ ├── containers.lua.meta │ │ │ ├── decoder.lua │ │ │ ├── decoder.lua.meta │ │ │ ├── descriptor.lua │ │ │ ├── descriptor.lua.meta │ │ │ ├── encoder.lua │ │ │ ├── encoder.lua.meta │ │ │ ├── listener.lua │ │ │ ├── listener.lua.meta │ │ │ ├── protobuf.lua │ │ │ ├── protobuf.lua.meta │ │ │ ├── text_format.lua │ │ │ ├── text_format.lua.meta │ │ │ ├── type_checkers.lua │ │ │ ├── type_checkers.lua.meta │ │ │ ├── wire_format.lua │ │ │ └── wire_format.lua.meta │ │ ├── slot.lua │ │ ├── slot.lua.meta │ │ ├── socket.lua │ │ ├── socket.lua.meta │ │ ├── socket.meta │ │ ├── socket │ │ │ ├── ftp.lua │ │ │ ├── ftp.lua.meta │ │ │ ├── headers.lua │ │ │ ├── headers.lua.meta │ │ │ ├── http.lua │ │ │ ├── http.lua.meta │ │ │ ├── mbox.lua │ │ │ ├── mbox.lua.meta │ │ │ ├── smtp.lua │ │ │ ├── smtp.lua.meta │ │ │ ├── tp.lua │ │ │ ├── tp.lua.meta │ │ │ ├── url.lua │ │ │ └── url.lua.meta │ │ ├── system.meta │ │ ├── tolua.lua │ │ ├── tolua.lua.meta │ │ ├── typeof.lua │ │ └── typeof.lua.meta │ │ ├── Misc.meta │ │ ├── Misc │ │ ├── LuaClient.cs │ │ ├── LuaClient.cs.meta │ │ ├── LuaCoroutine.cs │ │ ├── LuaCoroutine.cs.meta │ │ ├── LuaLooper.cs │ │ ├── LuaLooper.cs.meta │ │ ├── LuaProfiler.cs │ │ ├── LuaProfiler.cs.meta │ │ ├── LuaResLoader.cs │ │ └── LuaResLoader.cs.meta │ │ ├── Reflection.meta │ │ ├── Reflection │ │ ├── LuaConstructor.cs │ │ ├── LuaConstructor.cs.meta │ │ ├── LuaField.cs │ │ ├── LuaField.cs.meta │ │ ├── LuaMethod.cs │ │ ├── LuaMethod.cs.meta │ │ ├── LuaProperty.cs │ │ ├── LuaProperty.cs.meta │ │ ├── LuaReflection.cs │ │ └── LuaReflection.cs.meta │ │ ├── Source.meta │ │ ├── Source │ │ ├── Generate.meta │ │ ├── Generate │ │ │ ├── DelegateFactory.cs │ │ │ ├── DelegateFactory.cs.meta │ │ │ ├── LuaBinder.cs │ │ │ └── LuaBinder.cs.meta │ │ ├── LuaConst.cs │ │ └── LuaConst.cs.meta │ │ ├── readme.txt │ │ └── readme.txt.meta ├── Plugins.meta ├── Plugins │ ├── .DS_Store │ ├── Android.meta │ ├── Android │ │ ├── libs.meta │ │ └── libs │ │ │ ├── arm64-v8a.meta │ │ │ ├── arm64-v8a │ │ │ ├── libtolua.so │ │ │ └── libtolua.so.meta │ │ │ ├── armeabi-v7a.meta │ │ │ ├── armeabi-v7a │ │ │ ├── libtolua.so │ │ │ └── libtolua.so.meta │ │ │ ├── x86.meta │ │ │ └── x86 │ │ │ ├── libtolua.so │ │ │ └── libtolua.so.meta │ ├── CString.dll │ ├── CString.dll.meta │ ├── Debugger.dll │ ├── Debugger.dll.meta │ ├── iOS.meta │ ├── iOS │ │ ├── .DS_Store │ │ ├── libtolua.a │ │ └── libtolua.a.meta │ ├── tolua.bundle.meta │ ├── tolua.bundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── tolua │ │ │ └── Resources │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── print_r.lua │ │ │ ├── sproto.lua │ │ │ ├── sproto.new │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── lsproto.c │ │ │ ├── msvcint.h │ │ │ ├── print_r.lua │ │ │ ├── sproto.c │ │ │ ├── sproto.h │ │ │ ├── sproto.lua │ │ │ ├── sproto.new.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── sprotoparser.lua │ │ │ ├── test.lua │ │ │ ├── testall.lua │ │ │ └── testrpc.lua │ │ │ ├── sprotoparser.lua │ │ │ ├── test.lua │ │ │ ├── testall.lua │ │ │ └── testrpc.lua │ ├── x86.meta │ ├── x86 │ │ ├── tolua.dll │ │ └── tolua.dll.meta │ ├── x86_64.meta │ └── x86_64 │ │ ├── tolua.dll │ │ └── tolua.dll.meta ├── Sproto.New.zip ├── Sproto.New.zip.meta ├── link.xml └── link.xml.meta ├── LuaEncoder ├── luajit.meta ├── luajit │ ├── Build.bat │ ├── jit.meta │ ├── jit │ │ ├── bc.lua │ │ ├── bc.lua.meta │ │ ├── bcsave.lua │ │ ├── bcsave.lua.meta │ │ ├── dis_arm.lua │ │ ├── dis_arm.lua.meta │ │ ├── dis_arm64.lua │ │ ├── dis_arm64be.lua │ │ ├── dis_mips.lua │ │ ├── dis_mips.lua.meta │ │ ├── dis_mips64.lua │ │ ├── dis_mips64el.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_mipsel.lua.meta │ │ ├── dis_ppc.lua │ │ ├── dis_ppc.lua.meta │ │ ├── dis_x64.lua │ │ ├── dis_x64.lua.meta │ │ ├── dis_x86.lua │ │ ├── dis_x86.lua.meta │ │ ├── dump.lua │ │ ├── dump.lua.meta │ │ ├── p.lua │ │ ├── v.lua │ │ ├── v.lua.meta │ │ ├── vmdef.lua │ │ ├── vmdef.lua.meta │ │ └── zone.lua │ ├── lua51.dll │ ├── lua51.dll.meta │ ├── luajit.exe │ └── luajit.exe.meta ├── luajit_mac │ ├── jit │ │ ├── bc.lua │ │ ├── bcsave.lua │ │ ├── dis_arm.lua │ │ ├── dis_arm64.lua │ │ ├── dis_arm64be.lua │ │ ├── dis_mips.lua │ │ ├── dis_mips64.lua │ │ ├── dis_mips64el.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_ppc.lua │ │ ├── dis_x64.lua │ │ ├── dis_x86.lua │ │ ├── dump.lua │ │ ├── p.lua │ │ ├── v.lua │ │ ├── vmdef.lua │ │ └── zone.lua │ ├── libluajit.a │ ├── libluajit.so │ └── luajit ├── luavm.meta ├── luavm │ ├── luac │ └── luac.meta └── readme.txt ├── ProjectSettings ├── AudioManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset └── TimeManager.asset ├── README.md └── ReadMe.txt /Assets/LuaFramework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e0bd67d664a3c7418742db812cb3644 3 | folderAsset: yes 4 | timeCreated: 1453125768 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a57bd8213452ba24ab5b93cc9d62fb15 3 | folderAsset: yes 4 | timeCreated: 1453127194 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Editor/CustomSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86bf33513bdd8324985f8712180692d9 3 | timeCreated: 1457265758 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Editor/Packager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c3dbbb718b713b4e97b1db6e31346d7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 969dded904a26b246bedc70074de0ae1 3 | folderAsset: yes 4 | timeCreated: 1437785110 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a2d59191e3bf4c48a34eebdd1152df3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Message.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8199ffaa92a5bad448ac527da9401217 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Message/MessagePanel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71bbe2cec41431a4c85d61f408a9931a 3 | timeCreated: 1425731815 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaa0f33a3d04fcf43ab93711ce170170 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/PromptItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6977364229261084aa212003c00fc930 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/PromptPanel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4acea4e0cbe4ce40b4c3da7763ae270 3 | timeCreated: 1425779122 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec2a7fd7880a9954ea728fc6105d1b4d 3 | folderAsset: yes 4 | timeCreated: 1434131050 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenContactIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenContactIcon.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenDocumentationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenDocumentationIcon.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenForumIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenForumIcon.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenHeader.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenSamplesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenSamplesIcon.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenVideosIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenVideosIcon.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c03207892b34e944ae8dade6fc3635d 3 | folderAsset: yes 4 | timeCreated: 1437785232 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor/WelcomeScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a2d4db984566e45b558222665c6b0d 3 | timeCreated: 1453127095 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef14071ccc8c1bd4cab4beea2e7c2a91 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Prompt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c58fec668dc05c41b02dab150c626ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Prompt/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Textures/Prompt/1.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Shared.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 668dedca2953aa04eaadbd91d0303e99 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Shared/ButtonClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Textures/Shared/ButtonClick.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Shared/ButtonDisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Textures/Shared/ButtonDisable.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Shared/ButtonNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Textures/Shared/ButtonNormal.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Shared/SmallBaseMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Examples/Textures/Shared/SmallBaseMap.png -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b82501d6f466227449ecb221555b6bf2 3 | folderAsset: yes 4 | timeCreated: 1558605921 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/INetEventListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17cec2084802ccc4ea5473447f884336 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NatPunchModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81ae00802c3d4fb4ebabd7d7e8f5fa33 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 202b128915cc62943bd3fb693f7eb7d2 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetDebug.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace LiteNetLib 4 | { 5 | public interface INetLogger 6 | { 7 | void WriteNet(ConsoleColor color, string str, params object[] args); 8 | } 9 | 10 | public static class NetDebug 11 | { 12 | public static INetLogger Logger = null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetDebug.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9c410585c1e6284fbcbac074d207750 3 | timeCreated: 1558601891 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetEndPoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ca843d3b3c21b24cb7d630523ca599a 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be44c4dfdcddd4640affcece5a6b28af 3 | timeCreated: 1558601891 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetPacket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60cc147d6a5e58542b45d2f882e7a676 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetPeer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3fd6ba8671e8de4e9bbc53ff284e57e 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetSocket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da05bfcbe5f95e843a53c3f94b537291 3 | timeCreated: 1558601891 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetThread.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d27a007db9eee5443bae4c3e9c16e748 3 | timeCreated: 1558601891 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NetUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94529f86904f635419f6315d2cab775d 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/NtpSyncModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a6d0fcf87e5ad64dbaa2164df69a057 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/Properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 429ae049b0d91de4594a0303175119c1 3 | folderAsset: yes 4 | timeCreated: 1558601890 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/Properties/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2adecbfd75aff4940a995c26918d55f0 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/ReliableChannel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60d53ad755e80ed40898d472593fec9f 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/SequencedChannel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 347295a4dbc74d14f855e34f3ffb4782 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/SimpleChannel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d41f0d27db11fd648be42e5c7187b3c6 3 | timeCreated: 1558601891 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 790d2e6f116f58043a805d1f5e45bcaf 3 | folderAsset: yes 4 | timeCreated: 1558601890 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/Utils/FastBitConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc079f6ba9bc2af43b4e25997828efc0 3 | timeCreated: 1558601897 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/Utils/NetDataReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c2396b0ff63df545b1999ed5c0ac48a 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/Utils/NetDataWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51e637e83fccdd14c8f07893442a9b2e 3 | timeCreated: 1558601890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/LiteNetLib/Utils/NetSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2bc1de7338b12140b979d60f65a8a96 3 | timeCreated: 1558601891 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ff240b0de4c2c4aa0bfa3805e7b880 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fef477624099d704ca56e26ccb995f63 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1119c4407810743de86d01fa652b2374 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example1.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6de770751412fd43a5fd1fe331dd761 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example2.json: -------------------------------------------------------------------------------- 1 | {"menu": { 2 | "id": "file", 3 | "value": "File", 4 | "popup": { 5 | "menuitem": [ 6 | {"value": "New", "onclick": "CreateNewDoc()"}, 7 | {"value": "Open", "onclick": "OpenDoc()"}, 8 | {"value": "Close", "onclick": "CloseDoc()"} 9 | ] 10 | } 11 | }} 12 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example2.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d487a1ee1528714a93defdc9f730dfe 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example3.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca313ab6bd2e8ab41bce696d1ee05a89 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example4.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c69a28c5662c2204787fdd352f5595c5 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example5.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9298ce1cff4eae34087e1cf24cdc89cb 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/json2lua.lua: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env lua 2 | 3 | -- usage: json2lua.lua [json_file] 4 | -- 5 | -- Eg: 6 | -- echo '[ "testing" ]' | ./json2lua.lua 7 | -- ./json2lua.lua test.json 8 | 9 | local json = require "cjson" 10 | local util = require "cjson.util" 11 | 12 | local json_text = util.file_load(arg[1]) 13 | local t = json.decode(json_text) 14 | print(util.serialise_value(t)) 15 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/json2lua.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f17254f6d6b970429bbb11bfa82b22c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/lua2json.lua: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env lua 2 | 3 | -- usage: lua2json.lua [lua_file] 4 | -- 5 | -- Eg: 6 | -- echo '{ "testing" }' | ./lua2json.lua 7 | -- ./lua2json.lua test.lua 8 | 9 | local json = require "cjson" 10 | local util = require "cjson.util" 11 | 12 | local env = { 13 | json = { null = json.null }, 14 | null = json.null 15 | } 16 | 17 | local t = util.run_script("data = " .. util.file_load(arg[1]), env) 18 | print(json.encode(t.data)) 19 | 20 | -- vi:ai et sw=4 ts=4: 21 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/lua2json.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eeb576afff9def43b0081f6d7b2125b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/test.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f35728f49db3fec4ea33001068e13c36 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/util.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce18eb063e6d6cb43a5db89f763dd13d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5717154c47289d9449d0cc51a3f78c4b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/Makefile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ef1f5e2c7f70334eb6018a524a41161 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/Makefile.mingw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31646aa6f0dd23c4bbb00c75c25256b8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/README: -------------------------------------------------------------------------------- 1 | README for Lua BitOp 1.0.2 2 | -------------------------- 3 | 4 | Lua BitOp is a C extension module for Lua 5.1/5.2 which adds 5 | bitwise operations on numbers. 6 | 7 | Homepage: http://bitop.luajit.org/ 8 | 9 | Lua BitOp is Copyright (C) 2008-2012 Mike Pall. 10 | Lua BitOp is free software, released under the MIT license. 11 | 12 | -------------------------- 13 | 14 | Full documentation for Lua BitOp is available in HTML format. 15 | Please point your favourite browser to: 16 | 17 | doc/index.html 18 | 19 | Detailed installation instructions are here: 20 | 21 | doc/install.html 22 | 23 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/README.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2848b492482529244bd0d3cae9d98889 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/bitbench.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a0b5a88625014c48a99057dda7923c5 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/bittest.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32f558c2109e12a41b2d1f1400e82a66 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5fc982400798c4408b1bdc7357335f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/api.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e176ba8ca8fc7645bfbc4d53009a5a9 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/bluequad-print.css.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac6cad9836ef2aa42be0d44fe67cce1d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/bluequad.css.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51d1ba26d50c47e44b78257d90398dee 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/changes.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0ff59da8ad6f44e99e685a3cb5c627 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/contact.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d072c05c6fff47c47914b40192195e70 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/img.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 213a8412fa244f242b54a3383902415e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Lua/3rd/luabitop/doc/img/contact.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/index.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5503712ff1277d54b93febdc6208b110 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/install.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d6a7ce26750bdb499ecd7b013361538 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/semantics.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2613d747ce41e8b4b90e5c45a2478367 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/installpath.lua: -------------------------------------------------------------------------------- 1 | -- Script to find the install path for a C module. Public domain. 2 | 3 | if not arg or not arg[1] then 4 | io.write("Usage: lua installpath.lua modulename\n") 5 | os.exit(1) 6 | end 7 | for p in string.gmatch(package.cpath, "[^;]+") do 8 | if string.sub(p, 1, 1) ~= "." then 9 | local p2 = string.gsub(arg[1], "%.", string.sub(package.config, 1, 1)) 10 | io.write(string.gsub(p, "%?", p2), "\n") 11 | return 12 | end 13 | end 14 | error("no suitable installation path found") 15 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/installpath.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4192b766affe82640a5aee438c3b964a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/md5test.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 322f8fe07585d624bb3277c8e432a707 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/msvcbuild.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c89dc24e84d1841a654d3273df5698 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/msvctest.bat: -------------------------------------------------------------------------------- 1 | @rem Script to test Lua BitOp. 2 | 3 | @setlocal 4 | @rem Path to the Lua executable: 5 | @set LUA=lua 6 | 7 | @echo off 8 | for %%t in (bittest.lua nsievebits.lua md5test.lua) do ( 9 | echo testing %%t 10 | %LUA% %%t 11 | if errorlevel 1^ 12 | goto :FAIL 13 | ) 14 | echo ****** ALL TESTS OK ****** 15 | goto :END 16 | 17 | :FAIL 18 | echo ****** TEST FAILED ****** 19 | :END 20 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/msvctest.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93f44eeeebf603843aaeca13c9510165 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/nsievebits.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27f415faeaf5a954ca75e5b632dda24c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c01725dffbd9b40b9b386e3d7c0ea700 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/addressbook.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Lua/3rd/pbc/addressbook.pb -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/addressbook.pb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b46453c983e6824cabb4f3d5d639ba3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/addressbook.proto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31723f391cfd51446b36f385ab093e6b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/parser.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ba7654d41605834bb8a232818a9ebf8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/protobuf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ba29465c7f40ae4aa388cefab41f5e0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/test.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c1211c0f06916048bef318d346d5f04 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/test2.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dc1b7c55df9f024689900af8eef3bb0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/testparser.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24b27e96507cabd4abcf9f24e6a0aaef 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a26a655c69d98443e898aff76fc87e75 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua/login.proto: -------------------------------------------------------------------------------- 1 | 2 | message LoginRequest { 3 | required int32 id = 1; 4 | required string name = 2; 5 | optional string email = 3; 6 | } 7 | 8 | message LoginResponse { 9 | required int32 id = 1; 10 | } -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua/login.proto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f5ef4fb87587040afd36aa5620d62c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua/login_pb.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9c9ec3a721a0684ba88195d462e2241 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua/person_pb.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8547a09e09800054285c19fb7a4f6c72 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fe0629549ff98e49b7f9eaffdcc247f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/print_r.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0cc54520d1d7eb498493479ceb15d95 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/sproto.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bec7f55cc120f241b5cab88bf230ac3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/sprotoparser.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5da2b55784b954744b87ba7434bbfc6b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/test.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 770c604ef5792ca4fb5fdb25616901ec 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/testall.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 938292c8d9e6fe546bedc5276526deec 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/testrpc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e5d4ccf4f7badd428fc6aed849504ff 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a9e9888a6a944b7595d96047083e405 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common/define.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 453aacf6267e73748b38e2d4d5df2e75 3 | timeCreated: 1426783365 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common/functions.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 945af47fecee10044989b172212a1256 3 | timeCreated: 1426783366 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common/protocal.lua: -------------------------------------------------------------------------------- 1 | --Buildin Table 2 | Protocal = { 3 | Connect = '101'; --连接服务器 4 | Exception = '102'; --异常掉线 5 | Disconnect = '103'; --正常断线 6 | Message = '104'; --接收消息 7 | } 8 | 9 | 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common/protocal.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41c0bebeedd51e84fb0130409341ef47 3 | timeCreated: 1426783365 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76b5eb5d41dda43b78d9d6c414213910 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Controller/MessageCtrl.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b073d8d7f9880c4482d9c9d40b6b558 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Controller/PromptCtrl.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 709a4f9ec40526b459abc2e25192f509 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bd4c8762df45ba4b922467e09297fb6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic/CtrlManager.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 105072a955763134d8fe07ccaca1dede 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic/Game.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a211e85690e156749ad8816bba582708 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic/LuaClass.lua: -------------------------------------------------------------------------------- 1 | --Author : Administrator 2 | --Date : 2014/11/25 3 | 4 | --声明,这里声明了类名还有属性,并且给出了属性的初始值。 5 | LuaClass = {x = 0, y = 0} 6 | 7 | --这句是重定义元表的索引,就是说有了这句,这个才是一个类。 8 | LuaClass.__index = LuaClass 9 | 10 | --构造体,构造体的名字是随便起的,习惯性改为New() 11 | function LuaClass:New(x, y) 12 | local self = {}; --初始化self,如果没有这句,那么类所建立的对象改变,其他对象都会改变 13 | setmetatable(self, LuaClass); --将self的元表设定为Class 14 | self.x = x; 15 | self.y = y; 16 | return self; --返回自身 17 | end 18 | 19 | --测试打印方法-- 20 | function LuaClass:test() 21 | logWarn("x:>" .. self.x .. " y:>" .. self.y); 22 | end 23 | 24 | --endregion 25 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic/LuaClass.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efb0d6648bfd84c36b2c88e122dc06c8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic/Network.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7ede560670584545bf0b6620250fd0a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Main.lua: -------------------------------------------------------------------------------- 1 | --主入口函数。从这里开始lua逻辑 2 | function Main() 3 | print("logic start") 4 | end 5 | 6 | --场景切换通知 7 | function OnLevelWasLoaded(level) 8 | collectgarbage("collect") 9 | Time.timeSinceLevelLoad = 0 10 | end 11 | 12 | function OnApplicationQuit() 13 | end -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Main.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 091b02c3490daac4f8ed8cd5b62090b1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/View.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ca4e7fdd1e1e7b4e8df29447d383ce8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/View/MessagePanel.lua: -------------------------------------------------------------------------------- 1 | local transform; 2 | local gameObject; 3 | 4 | MessagePanel = {}; 5 | local this = MessagePanel; 6 | 7 | --启动事件-- 8 | function MessagePanel.Awake(obj) 9 | gameObject = obj; 10 | transform = obj.transform; 11 | 12 | this.InitPanel(); 13 | logWarn("Awake lua--->>"..gameObject.name); 14 | end 15 | 16 | --初始化面板-- 17 | function MessagePanel.InitPanel() 18 | this.btnClose = transform:FindChild("Button").gameObject; 19 | end 20 | 21 | --单击事件-- 22 | function MessagePanel.OnDestroy() 23 | logWarn("OnDestroy---->>>"); 24 | end 25 | 26 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/View/MessagePanel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50610ae62f65c49e8baea87c791eb3a8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/View/PromptPanel.lua: -------------------------------------------------------------------------------- 1 | local transform; 2 | local gameObject; 3 | 4 | PromptPanel = {}; 5 | local this = PromptPanel; 6 | 7 | --启动事件-- 8 | function PromptPanel.Awake(obj) 9 | gameObject = obj; 10 | transform = obj.transform; 11 | 12 | this.InitPanel(); 13 | logWarn("Awake lua--->>"..gameObject.name); 14 | end 15 | 16 | --初始化面板-- 17 | function PromptPanel.InitPanel() 18 | this.btnOpen = transform:Find("Open").gameObject; 19 | this.gridParent = transform:Find('ScrollView/Grid'); 20 | end 21 | 22 | --单击事件-- 23 | function PromptPanel.OnDestroy() 24 | logWarn("OnDestroy---->>>"); 25 | end -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/View/PromptPanel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 047a4b7afac7a4ef8876268bda036a9d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/eventlib.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb355d54d4306354cb2dfc482136aabd 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/events.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c28c4dd769d9f694787a0b0fd64e8eea 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a1858bc94b3706489b84787e227e6a6 3 | folderAsset: yes 4 | timeCreated: 1498139739 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/Build.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3717a1ffedc585945a43193f52a32f26 3 | timeCreated: 1498139739 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91ba6b2190e00254aa340e1e35dadcb4 3 | folderAsset: yes 4 | timeCreated: 1498139739 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/bc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d18ce292c8e9a3446a5890f324daddc8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/bcsave.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cb37ebfedf93ae4b96e0da0d77065c4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_arm.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a5d0750f7c50434799a22a9fd01dd11 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_mips.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d6b0da48d262af4b902b41b630d7c55 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_mipsel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06a369592f16cc54b82ec90d905c271c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_ppc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16a81ab6de25d044280dbc5a24abfa3a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_x64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da9358785297a39428fd96e0e17ad8f7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_x86.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 676a7cf93973aa444ad7cf6d244083d8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dump.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 029c25a735609054d81dee95957d1fc8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/v.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 724b205f5019d9449807abad317fbb38 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/vmdef.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd5259d2e7ff79146978231b90c15d75 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Luajit/lua51.dll -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/lua51.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee6027814429a0a43822294a9a9047a2 3 | timeCreated: 1498139740 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/luajit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Luajit/luajit.exe -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/luajit.exe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cecf08c1bab22534d9355eecd48576be 3 | timeCreated: 1498139739 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a60d9cccbd70c474f9c67679bf24af07 3 | folderAsset: yes 4 | timeCreated: 1468686465 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Resources/TestGameObjectPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 064ce7f9fcc2fba4a885cc163c7354df 3 | timeCreated: 1468686469 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4dd41526542a5b47b77fbf85fbbc51e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scenes/main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75eee5e7009aba84192cfcdff8590f2a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 340bca7100420314d8cde6bde4e69bf6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0489f1f062fbaa428bd858ee3b0dfad 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Common/LuaBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e86ebbc782f0f64d809698999d8dcf6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Common/LuaLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 317fe630a9afeed49987f352e46b52af 3 | timeCreated: 1453126595 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ConstDefine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2e8945a11cc58147a755808392f6134 3 | folderAsset: yes 4 | timeCreated: 1436458259 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ConstDefine/AppConst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f38ff056ec61eb45b45be6237f94dfc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ConstDefine/ManagerName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 346265bf4db1f3d4fa1bef253c5e7d07 3 | timeCreated: 1436458376 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ConstDefine/NotiConst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c25f0bc8fa002704f89822240c642a30 3 | timeCreated: 1436458367 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e19e94e26010ef4b8a1b38bdc32036a 3 | folderAsset: yes 4 | timeCreated: 1436458507 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Controller/Command.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 630be41b40e25154caf419024c9da88c 3 | folderAsset: yes 4 | timeCreated: 1440243851 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Controller/Command/SocketCommand.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | using LuaFramework; 5 | 6 | public class SocketCommand : ControllerCommand { 7 | 8 | public override void Execute(IMessage message) { 9 | object data = message.Body; 10 | if (data == null) return; 11 | KeyValuePair buffer = (KeyValuePair)data; 12 | switch (buffer.Key) { 13 | default: Util.CallMethod("Network", "OnSocket", buffer.Key, buffer.Value); break; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Controller/Command/SocketCommand.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2384cc1ec84c1674793c84b948d36fe8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Controller/Command/StartUpCommand.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38eead90304f29a46aa58db16836d3db 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 000f913f7e6e2c843a8d39a9ec62d97d 3 | folderAsset: yes 4 | timeCreated: 1440243700 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/AppFacade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53fd5affad4061d4d9511214b25daeb8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd800a5c26e3e3142877a63571edbf0c 3 | folderAsset: yes 4 | timeCreated: 1435850375 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Core/Base.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 323d5ecb296d22b48979e529d041e70d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Core/Controller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01d871bede794c34784a5d6fddf1b208 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Core/Facade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08b887f792736bc47b499a0836c9d0b4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Core/Manager.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using LuaFramework; 4 | 5 | public class Manager : Base, IManager { 6 | 7 | // Use this for initialization 8 | void Start () { 9 | 10 | } 11 | 12 | // Update is called once per frame 13 | void Update () { 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Core/Manager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c71b17dd8e0c314fb7b2465e5717b5e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Core/Message.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c43b926e665fea43b8b5f49e21fecb8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Core/View.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using LuaInterface; 6 | using LuaFramework; 7 | 8 | public class View : Base, IView { 9 | public virtual void OnMessage(IMessage message) { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Core/View.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65cb27367c0951e4abc2cbfe1a5a6e08 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e48e7668a3d5a9640ac68b6e9efca1d6 3 | folderAsset: yes 4 | timeCreated: 1435850375 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/ICommand.cs: -------------------------------------------------------------------------------- 1 | /* 2 | LuaFramework Code By Jarjin lee 3 | */ 4 | using System; 5 | 6 | public interface ICommand { 7 | void Execute(IMessage message); 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/ICommand.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d75586fb8a8da2a448f5d672f6874890 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IController.cs: -------------------------------------------------------------------------------- 1 | /* 2 | LuaFramework Code By Jarjin leeibution 3.0 License 3 | */ 4 | using System; 5 | using System.Collections.Generic; 6 | 7 | public interface IController 8 | { 9 | void RegisterCommand(string messageName, Type commandType); 10 | void RegisterViewCommand(IView view, string[] commandNames); 11 | 12 | void ExecuteCommand(IMessage message); 13 | 14 | void RemoveCommand(string messageName); 15 | void RemoveViewCommand(IView view, string[] commandNames); 16 | 17 | bool HasCommand(string messageName); 18 | } 19 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f886f4c4b7344b8458ade2117e91bf4f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IManager.cs: -------------------------------------------------------------------------------- 1 | /* 2 | LuaFramework Code By Jarjin leeibution 3.0 License 3 | */ 4 | 5 | using UnityEngine; 6 | using System.Collections; 7 | 8 | public interface IManager { 9 | } 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d635b206a771bcf4ea52409f19424fb8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IMessage.cs: -------------------------------------------------------------------------------- 1 | /* 2 | LuaFramework Code By Jarjin lee 3 | */ 4 | using System; 5 | 6 | public interface IMessage 7 | { 8 | string Name { get; } 9 | 10 | object Body { get; set; } 11 | 12 | string Type { get; set; } 13 | 14 | string ToString(); 15 | } 16 | 17 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8a6705483eabb541bd34cb568a0abee 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IView.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public interface IView { 4 | void OnMessage(IMessage message); 5 | } 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fec82531236c5aa4bb957279a5a05fb6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Main.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | namespace LuaFramework { 5 | 6 | /// 7 | /// 8 | public class Main : MonoBehaviour { 9 | 10 | void Start() { 11 | AppFacade.Instance.StartUp(); //启动游戏 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Main.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c13baae76dc25164fbbeec8317b29af0 3 | timeCreated: 1436459273 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e037ccb531438b498940c40edb54326 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/GameManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1545d35cb5d31e469cff9e3dbc576e9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/Interface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4654f39cc1fc05b4ca5f272cc65b39a8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/Interface/ITimerBehaviour.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | 4 | namespace LuaFramework { 5 | public interface ITimerBehaviour { 6 | void TimerUpdate(); 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/Interface/ITimerBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbedf5a696e61a1408b87a90afcb33f1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/LuaManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f310fe963a737bd4c98a67be8a395ac3 3 | timeCreated: 1453126347 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/NetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Scripts/Manager/NetworkManager.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/NetworkManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a3394bbff8e75d4c8e1770951839b5e 3 | timeCreated: 1436458954 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/ObjectPoolManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 842c9c7292acd4f4cbd4575ec8aee2e4 3 | timeCreated: 1468659528 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/PanelManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Scripts/Manager/PanelManager.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/PanelManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a46a10ea15137e4f913ce5d441a9064 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/ResourceManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36c37a230df84d845b64d4d122782669 3 | timeCreated: 1428940065 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/SoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Scripts/Manager/SoundManager.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/SoundManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6fcdcde732ecdc4481e3d25d0b73c5c 3 | timeCreated: 1453126357 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/ThreadManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd069e17e0d598d4683e06c331689c06 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/TimerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Scripts/Manager/TimerManager.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/TimerManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3f1fe00f3c5b664fbc2229f3bff8f9b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b0e4504435d17a42a0a79938ed843e6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network/ByteBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2b21f02a43963a4baf3a5abd3c98ceb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network/Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ccd07face6ebb5469d1cbed8e8b4789 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network/Protocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/LuaFramework/Scripts/Network/Protocal.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network/Protocal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44d57d2c5dd4548479b3cd5d47520699 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network/SocketClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c8a96e463bf5d74ca866ab1a04f00d2 3 | timeCreated: 1440243780 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ObjectPool.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a65303a59ec1f4c4698174743dac0e53 3 | folderAsset: yes 4 | timeCreated: 1468659132 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ObjectPool/GameObjectPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7707a3f90b0df3458906855b9ef93ed 3 | timeCreated: 1468659140 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ObjectPool/ObjectPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db92184dc1857cc45b1ca78fc424a7b5 3 | timeCreated: 1468659171 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ObjectPool/TestObjectClass.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 555d607a23760d14e9bc08011fb58e7b 3 | timeCreated: 1468685016 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baa37d76ca33abd438e215438cd16438 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Utility/LuaHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab3c31e7a9bca8c4b9e87dfce78a2835 3 | timeCreated: 1453126638 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Utility/Util.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7166ffbcb4403784d9566a56c33b58b1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/View.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab2ae9946b07212448c6c13614e0b239 3 | folderAsset: yes 4 | timeCreated: 1436458509 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/View/AppView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 354aa74efb1b7424f9b142bc0073df53 3 | timeCreated: 1440243752 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ae0be170ef420e44922b1fe362ccf60 3 | folderAsset: yes 4 | timeCreated: 1453125963 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 337508ffab1cff64bbf7476789c95d59 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/LuaInterface_EventObjectWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9eec90316b4c2da499dee7c75f1f94ae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/LuaInterface_LuaConstructorWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be39bc8579dccd14bb20b24e64a68faf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/LuaInterface_LuaFieldWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58e0ce586689f58419f26062891e1fc1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/LuaInterface_LuaMethodWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd62b7af99a9c284cb3b8c9c8a177e8c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/LuaInterface_LuaOutWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ba873a052f57bc45890275ec67bb4dc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/LuaInterface_LuaPropertyWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b401947a631ece4487e44f4b8ef9418 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_ArrayWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 270e5e13dbb276c47a14c00ec09f9254 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_Collections_Generic_DictionaryWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 973a63c864c67f34b852be1021aa8445 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_Collections_Generic_Dictionary_KeyCollectionWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5a969e41ba260d4197ec05de2e0b107 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_Collections_Generic_Dictionary_ValueCollectionWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b073f28ab535d6478ab1e2f76f44547 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_Collections_Generic_KeyValuePairWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bfe26e81faf9a1498eaae521869ecea 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_Collections_Generic_ListWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9806172156647e244b2fb905a4d02611 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_Collections_IEnumeratorWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7eaa472c4f36f9d419d9bf704795f0d6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_Collections_ObjectModel_ReadOnlyCollectionWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa5b181e2942520408fb4d6bac615d4f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_DelegateWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86ed9798a2c5dc74e9018394dfc827ea 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_EnumWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fd9d683a50920540914bdd15aa75290 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_NullObjectWrap.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using LuaInterface; 3 | 4 | public class System_NullObjectWrap 5 | { 6 | public static void Register(LuaState L) 7 | { 8 | L.BeginClass(typeof(NullObject), null, "null"); 9 | L.EndClass(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_NullObjectWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdcd3994912f4e145b1f12f3d76376b6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_ObjectWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcf1094389eec494d9d80c46f54f2a7e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_StringWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6380cf60ae81034418e4fe4dabc06bc2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/System_TypeWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a713f1fe057cf7248b09e045a105933b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/UnityEngine_CoroutineWrap.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using LuaInterface; 3 | 4 | public class UnityEngine_CoroutineWrap 5 | { 6 | public static void Register(LuaState L) 7 | { 8 | L.BeginClass(typeof(UnityEngine.Coroutine), null); 9 | L.RegFunction("__tostring", ToLua.op_ToString); 10 | L.EndClass(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/UnityEngine_CoroutineWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0142bbe402aab764582bb960d6966d34 3 | timeCreated: 1471422858 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType/UnityEngine_ObjectWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66f068299d0233f409ae0011b24ae1ba 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7714c4ebcd6e6474da6ec5df53bca350 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 036fab5eb22f19e4bba933e194fb4756 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaBaseRef.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39292548101f65b41be91c5d20f20812 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaBeatEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7332596f22ac5446852c531d7148318 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaDLL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d60cef534e986e849a829838fbeb74b5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce5b2d0ac4f71564c84ecc85556409a4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b37c8a2d4e86364c85c26a407d79af7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaFileUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1dfae6a246cdf418b607701b2dfc7c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f2e7f7664506cc45b1e1d375c066432 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaMatchType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23fa92cf1685f2d4da97d54967a224ad 3 | timeCreated: 1494397554 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaMethodCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d0c295670bdae343be5791ad4a0e9ae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaMisc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49b0c76b911a9d34bac07d4b3aa7f6de 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaStackOp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57935fe3acd7c654599f70b62465e1d0 3 | timeCreated: 1495076837 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 358b86bdf79858e46b17d8700238c397 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaStatePtr.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e68c435592e3d3b47a315497b6150aae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaStatic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7f8fdc4e97256748b422edf401c641d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaTable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b68fd1e3004ea4a4a879bf6fbda73510 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaThread.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c80e713269311db4689148e01949206a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaUnityLibs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f293d0bd6470a044a8688cd9a61b433 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaValueType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caa2d85e8d1314547a78624e7fec25a3 3 | timeCreated: 1494919728 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/ObjectPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 375ac727a60642f4e9db9303e4025911 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/ObjectTranslator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 607902915586ecd43b863b154c1337ad 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/ToLua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8558028e53ff5d946b0ef857634815da 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/TypeChecker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2c5d493c1805784994fefe7b22da126 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/TypeTraits.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82858b365ef4145429c2f3227be8c845 3 | timeCreated: 1494572166 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d9fa950d6c449e42893b939877b4ec7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdd2718c24fc3014d96c208f87886fe3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_LuaInterface_EventObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a98ce054e1b9e848a9ed23974b72436 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_LuaInterface_LuaConstructor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24ae6f8094d27814db58bed92723e5eb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_LuaInterface_LuaField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6b190ca703de424fafa500033a782a3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_LuaInterface_LuaMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6eac87eec04d6e547ac028d69e0eeb71 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_LuaInterface_LuaProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e00a567610c97754bbae9672db75a1f2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_System_Delegate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f0591686bc09e74e9a4fe2ad4e9fdb2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_System_Enum.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff4fa54c22d6f7c428ef9aa02f6c10d4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_System_Object.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using LuaInterface; 3 | 4 | public class ToLua_System_Object 5 | { 6 | public static string DestroyDefined = "\t\treturn ToLua.Destroy(L);"; 7 | 8 | [UseDefinedAttribute] 9 | public static void Destroy(object obj) 10 | { 11 | } 12 | 13 | public static bool op_Equality(Object x, Object y) 14 | { 15 | return false; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_System_Object.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afb4e6913f506df4c9eb98f70781a578 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_System_String.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cc775dacb56ec34587e28d9e3f68417 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_System_Type.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a67e5f490d5d4cd4f8754c921a414d9a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_UnityEngine_GameObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ed77ac31b521ad4bae3fe7e8b84cab4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_UnityEngine_Input.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cee476932ca9a04da9cff77f92e1894 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_UnityEngine_Object.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed2a77b78fd7258438b2b5a9e881d7c2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend/ToLua_UnityEngine_RectTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2479ef1b120013c478a5f7148251be9e 3 | timeCreated: 1501832587 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/ToLuaExport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73e814f0ef0ab914181c1f1e0a989935 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/ToLuaMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97fb7996cd1338442af03841f30cddaf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/ToLuaTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99b4e579c20c91f4d84ce5aa9add4672 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 940a49ebae9b91b4fb0682c92d968933 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/01_HelloWorld.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79324a58d1dd94843a6e15fb4d77da66 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/01_HelloWorld/HelloWorld.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using LuaInterface; 3 | using System; 4 | 5 | public class HelloWorld : MonoBehaviour 6 | { 7 | void Awake() 8 | { 9 | LuaState lua = new LuaState(); 10 | lua.Start(); 11 | string hello = 12 | @" 13 | print('hello tolua#') 14 | "; 15 | 16 | lua.DoString(hello, "HelloWorld.cs"); 17 | lua.CheckTop(); 18 | lua.Dispose(); 19 | lua = null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/01_HelloWorld/HelloWorld.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1db6056d0e0ccb049ae392139c512608 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/01_HelloWorld/HelloWorld.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ce3f2dc80a0205428a5372f74800258 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71ca7fe863de8dd4d8a6057d043df5e4 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17346dbce1e39bd4b8cb9cdf6b9249e7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.lua: -------------------------------------------------------------------------------- 1 | print("This is a script from a utf8 file") 2 | print("tolua: 你好! こんにちは! 안녕하세요!") 3 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbc95a40dca6ccf448ff2a7f1905e751 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e011b54a109dd1c43b5ed71ca3590a32 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/03_CallLuaFunction.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b90da095ffcaa34891335989ba05ddf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/03_CallLuaFunction/CallLuaFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11338f45069e3e041b7c42b60897ce0a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/03_CallLuaFunction/CallLuaFunction.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b95d9c7995843244812901527540c78 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/04_AccessingLuaVariables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b3a357bb0337ee438db20f82382e246 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/04_AccessingLuaVariables/AccessingLuaVariables.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3121aadbc8cdbeb488fdc0cfd1032ead 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/04_AccessingLuaVariables/AccessingLuaVariables.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b440f9ea3ca78884cbc8bd834a84ee54 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/05_LuaCoroutine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aab46dd051561242b5f1dd79f189a42 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/05_LuaCoroutine/LuaCoroutine.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 811fd4e3aec57234ea72e1ed44701a9c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/05_LuaCoroutine/TestCoroutine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fdb28fb1b0a1eb4391deef05b03405d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/06_LuaCoroutine2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bf03102ccd94cb45afe01e02bf19184 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/06_LuaCoroutine2/Coroutine.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4db2739d8c3e5af4ca5647e7ded00f68 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/06_LuaCoroutine2/TestCoroutine2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 252cf94b5db18424a94f00ddbd580ee0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/07_LuaThread.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34683a8c5207cb3438b3b06aa2ef38c8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/07_LuaThread/TestLuaThread.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd0d38a2cd6c8794ebb1150cc3678db6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/07_LuaThread/TestThread.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bc55bdc0d2bff34a9abc55c4eeebdc0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/08_AccessingArray.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d74fee3fd9c8cb64e8d8083fb944a9c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/08_AccessingArray/AccessingArray.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82a287200877e9344a7e6b2d58dfe019 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/08_AccessingArray/AccessingArray.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f3cdbddf148392458f85eed2085860c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d308146ac25b5a74d99ced6f74495105 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary/System_Collections_Generic_Dictionary_int_TestAccountWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7eaa1793aebc03847bbeff73e29e711a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary/System_Collections_Generic_Dictionary_int_TestAccount_KeyCollectionWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae6d6c27412c9fa4e815ef0f87e01cc2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary/System_Collections_Generic_Dictionary_int_TestAccount_ValueCollectionWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c353ebccdf1714241a37253dd58c9309 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary/System_Collections_Generic_KeyValuePair_int_TestAccountWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6f1375290fa13745bc07de7193ecc3e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary/TestAccountWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b763e457bd5365e46bf64d146d0d5a3b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary/UseDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23454681bd34d36498eafe3bb988240d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary/UseDictionary.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dc40f31458a9544aa74bcdad6d15d06 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/10_Enum.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbe9c6c5abd052b488c851260cc2cb92 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/10_Enum/AccessingEnum.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acd101a7d0a84e64198674b06dba633d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/10_Enum/AccessingEnum.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a217aecbea099fd4cbb21c9795f57884 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/11_Delegate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bafe37b805a5b274aaee648a0b64bcb2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/11_Delegate/TestDelegate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aebc047d4185a4942b0220c97c91154e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/11_Delegate/TestEventListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b909bbc52f2fc814ab97a3b1038ec9ee 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/11_Delegate/TestEventListenerWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e84ecc8101f77e45bab712de82fed53 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/11_Delegate/UseDelegate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c371c24024790e4fafc6efd6656ffa8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/12_GameObject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c05e0dc08239c724bba79944e7ccbcaa 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/12_GameObject/TestGameObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a206b7d4dbb78541b0e1be49fa5d338 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/12_GameObject/TestGameObject.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd44e2bbf67026a4eb7a12cc132f5515 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc9a6d7d2170ce43bfdcb7197628a9d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader/CustomLoader.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a15f71c3e8ada48bbf2dec47d8eb0d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader/TestCustomLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc2267b374446b24faf55d67673d8e63 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/14_Out.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9762f66a6f78d843b27a77925f63e3f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/14_Out/TestOut.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1cff06827ae69d45ba691b5714e066d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/14_Out/TestOutArg.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb859a8f0bf518243b6fc7c57eeef886 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cac1317b8ab1d3a438e2fa736a69d7fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/ProtoBuffer.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a4304ba0253d9241b8bf736a8607df6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/TestProtoBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07805e704145c3b47b7c511a16d66d99 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/TestProtol.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using LuaInterface; 3 | 4 | public static class TestProtol 5 | { 6 | [LuaByteBufferAttribute] 7 | public static byte[] data; 8 | } 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/TestProtol.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 486ec4f4b6496a94c85974a2e0c1bd78 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/TestProtolWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25408b0022185f34c9744c405ad5da65 3 | timeCreated: 1515038394 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/common.proto: -------------------------------------------------------------------------------- 1 | 2 | message Header 3 | { 4 | required int64 cmd = 1; 5 | required int32 seq = 2; 6 | } -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/common.proto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 760d09f03acd6ed4e94516e3b7439c54 3 | timeCreated: 1498133645 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/person.proto: -------------------------------------------------------------------------------- 1 | import "common.proto"; 2 | 3 | message Person 4 | { 5 | required Header header = 1; 6 | required int64 id = 2; 7 | required string name = 3; 8 | optional int32 age = 4 [default = 18]; 9 | optional string email = 5 [default = "topameng@qq.com"]; 10 | repeated int32 array = 6; 11 | 12 | extensions 10 to max; 13 | } 14 | 15 | message Phone 16 | { 17 | extend Person { repeated Phone phones = 10;} 18 | 19 | enum PHONE_TYPE 20 | { 21 | MOBILE = 1; 22 | HOME = 2; 23 | } 24 | optional string num = 1; 25 | optional PHONE_TYPE type = 2; 26 | } 27 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/person.proto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f84fe6c5b2078174bb56bed15abd687b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/16_Int64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56454d123fe4d2a47a2a1bf5e9a7399b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/16_Int64/TestInt64.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2eb3e2c0caea144e8cbbb8de6ed33f8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/16_Int64/TestInt64.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f5fdf9606a2d854590fcbd3926005e4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/17_Inherit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49da3d0eb205def459dc639d92b7cc77 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/17_Inherit/Inherit.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3cf1516f0a320b49a263c1fed026319 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/17_Inherit/TestInherit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9cb964bd30f70946ab3ba186316e134 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/18_Bundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07aecff784dcab84393e4fad04c7b35d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/18_Bundle/TesetAssetBundle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 207ce505e47eb8542963d4972b45b05d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/18_Bundle/TestABLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d357c949a4510b146a6e82777d131d20 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/19_cjson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c1a9e6cb95cdea4cbc97a336446abe8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/19_cjson/TestCJson.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3dab0c9b55ca0f44a0d3b8a50edf396 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/19_cjson/testcjson.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dbc965b474b6824db5cb79d380403e4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/20_utf8.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48896cd2daf4f4542ba776681732210a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/20_utf8/TestUTF8.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c58b879bbb37ee4891c46ef87989f91 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/20_utf8/utf8.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74b6932cd0642734eb36e554528a9825 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/21_String.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7bfd51b922b87a4ba399b7f73540493 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/21_String/TestString.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73dc7ee420beffa4b9db2334045dabba 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/21_String/TestString.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e6bca3bb283b3247a8692ac6e03d4ff 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/22_Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1160a89e211090a4ea787fb5145cc984 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/22_Reflection/TestReflection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab693360b2865f4a9121b9959993d29 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/22_Reflection/TestReflection.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c297fdd08a27a54a96505801547f7b2 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/23_List.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 665099d7241e1a54fb217e3b172e21a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/23_List/UseList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a4f97c41d925314c853a72d43fb5166 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/23_List/UseList.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4f35714ff91744489f71618b0ae9fd8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/24_Struct.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a817b98d5c7d23e4c9c6afb6ac646cbe 3 | folderAsset: yes 4 | timeCreated: 1495007845 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/24_Struct/PassStruct.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51af02ba87a948543b788453b5bb790c 3 | timeCreated: 1495007962 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/24_Struct/Struct.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bab0d380ec96e4846bcd28c1d626d89f 3 | timeCreated: 1495007901 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Performance.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f240c18ff8d4eb44390f8d949e2f6fbd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Performance/Performance.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0693d19658479a642a7faaa61feb2c09 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Performance/TestPerformance.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3be970387cfeea42a1944adffc6fffc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9efe91d34eaff5a4ab3530e47ea50385 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd85633be4068ee4b8d8f4744a4a9386 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d26bf1a8a6d42954eb332fd9957140d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/Protol.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0882b1dfb9d5f9e408ec017206a4946a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/Protol/common_pb.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dae780f9dbb4a634bbc8605c0cd7bd13 3 | timeCreated: 1498123941 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/Protol/person_pb.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a5684e0e56583c43b809876b457c953 3 | timeCreated: 1498113766 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestErrorStack.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a540e20118516b1449b2bb6293d1030a 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestLoader.lua.bytes: -------------------------------------------------------------------------------- 1 | print("This is a script from a utf8 file") 2 | print("tolua: 你好! こんにちは! 안녕하세요!") 3 | 4 | function Test() 5 | print("this is lua file load by Resource.Load") 6 | end -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestLoader.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d249a195df84a8e448b95867fdc844df 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestLuaCoroutine.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e90f8f033d17114297577d8cde2677e 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestPerf.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07657567fb0a4fe439b7e52f48d787e1 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/ToLuaInjectionTestInjector.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d4ade31977a9ce4f92428e0889cee1d 3 | timeCreated: 1515036182 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/jsonexample.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d7edaf98b78bd84297bb888bf41ed02 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00b15eee8aab8d64e844fc53ee7395de 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3f31488b17b6394f8cc6e000f1001ab 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec8a2f7e4eaf1c64e8393014e602047c 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate2.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System; 3 | using LuaInterface; 4 | 5 | public class TestInstantiate2 : MonoBehaviour 6 | { 7 | void Awake() 8 | { 9 | try 10 | { 11 | throw new Exception("Instantiate exception 2"); 12 | } 13 | catch (Exception e) 14 | { 15 | LuaState state = LuaState.Get(IntPtr.Zero); 16 | state.ThrowLuaException(e); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 901668bc322ed714d9c7c74febc9bd8b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e472cc047eb20841bbb7c64dfeb0d78 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestLuaStack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b40a6eeee975862489a712e1a3d79ed1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestLuaStack.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 706020e5c3f37944995bfe00955fdd39 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestInjection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38c5ccf43aa1bef4ab5def4faf0a5aba 3 | folderAsset: yes 4 | timeCreated: 1515035158 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestInjection/BaseTestWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 823570c1e66fe6e45b87a838ec075e76 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestInjection/TestInjection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f95133dba6f6a1a40936257b1a8b3dae 3 | timeCreated: 1515035194 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestInjection/TestInjection.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05dc1e98babb44f47ad2a28a88b76380 3 | timeCreated: 1515035207 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestInjection/ToLuaInjectionTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80e29c43f1cea9d4988c36fd2f6c26c1 3 | timeCreated: 1514883665 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestInjection/ToLuaInjectionTestWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14459b5f9debe5f47b5a300b6f1acfe8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestOverload.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c47782a99562c02499fb1602381bfe8d 3 | folderAsset: yes 4 | timeCreated: 1486461631 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestOverload/TestExportWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93a993f96184f9043b307249752cde32 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestOverload/TestExport_SpaceWrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e8176bbf31cef9418a3a1aa76f1f018 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestOverload/TestOverload.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccb167912a52c2f4e9f88a1bc02d5083 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestOverload/TestOverload.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45830782541ee7a49b44eb5a02d7ecef 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4621b1a494fd57b498ced8aae8d69afa 3 | folderAsset: yes 4 | timeCreated: 1526805314 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 408aa6da49448a544942370044596d77 3 | folderAsset: yes 4 | timeCreated: 1515031012 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/Editor/ToLuaInjection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 576ad269863310b4aba201ae8896a3ef 3 | timeCreated: 1512461674 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/Editor/ToLuaInjectionHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dce8c9cb062a97740b01381922e799a1 3 | timeCreated: 1513238253 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/Editor/ToLuaText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5de9ab9717d9977429063071523fae1a 3 | timeCreated: 1513060947 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/Editor/ToluaInjectionBlackListPanel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55ebe04f71192174990387365881eac4 3 | timeCreated: 1512567263 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/InjectionBlackList.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 449a10dea407bc04ea1bbb6f9d42bbd8 3 | timeCreated: 1515037624 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/InjectionBridgeEditorInfo.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a03414dd6167d14db5ffeec44c8ebf9 3 | timeCreated: 1515037626 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/LuaInjectionSkipPaths.txt: -------------------------------------------------------------------------------- 1 | Assets/ToLua/Core/ 2 | Assets/ToLua/Injection/ 3 | Assets/ToLua/Misc/ 4 | Assets/ToLua/Injection/ 5 | Assets/ToLua/Misc/ 6 | H:/OpenSource/toluaSelf/Assets/Plugins/ 7 | H:/OpenSource/toluaSelf/Assets/ToLua/BaseType/ 8 | Assets/Source/Generate/ 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/LuaInjectionSkipPaths.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b40d8aec6722dd489e0cf5180707926 3 | timeCreated: 1515038066 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Injection/LuaInjectionStation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50962a9cc65f2be42af0d2419c4bc074 3 | timeCreated: 1512461673 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b3be0814bb45e640973aea4f6303a33 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/Build.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df27f3565c885a1419249346792d53b7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Injection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd35ae0a721aca5469a1dc038b2b6158 3 | folderAsset: yes 4 | timeCreated: 1515034041 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Injection/InjectionBridgeInfo.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddd0929c7e5e87a43ac765a3d62c90a7 3 | timeCreated: 1514865200 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Injection/LuaInjectionBus.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f358679c92622642a844c157ce4fece 3 | timeCreated: 1514865200 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Injection/LuaInjectionStation.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78b8ba284d726bf48803904bd5ada5c4 3 | timeCreated: 1514865423 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b31921aad5a29bf48b69fbad423de1be 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Reflection/BindingFlags.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 447334b96205b8040b534702d8d806c6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Timer.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e891968e6d367cf4da81d8c24a52c358 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/ValueType.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab9e4d6fcf702740a4c66965903ed1f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/coroutine.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69692ffc56243fb4a8d655a208364fec 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec9654611f40bd64cb988c5f45494721 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Bounds.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8643f0e46fe222e48919766d7b0c7c5f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Color.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54770d2645593c347ac25713a6d332e3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/LayerMask.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08700fd491ce4cf4ba55fd9832b9f9cf 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Mathf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cfbc4fb807d4e444bd41df7de6c249e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Plane.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3971497c90061f4d9c0e9a99b5bbcbe 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Profiler.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37c51fa1e5d7c094f8620b364c731293 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Quaternion.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc8181e6244125146a87c5b83c380a92 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Ray.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 436d981c3546acd44a03048767c0d85a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/RaycastHit.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 707a4e1a225007d45923200abf2c9c13 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Time.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f2e1d9dee4ecaf4b8734c59f1c9f3b5 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Touch.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48ee0c1b8478eba4f9338e5ec4a14d40 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Vector2.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebac0a3bf4e463249a78081c5cc3abcf 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Vector3.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3697c841f98720444b380cc2756c17ea 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Vector4.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e294d4af7e55084dadac8ee7a76099d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/cjson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51fabff50886aea4ca5100ee3396939b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/cjson/util.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6b21c50e0c10c840bb4965a6b03fdc1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/event.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cb3ad8be0f474f4c997acf1b791b133 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b8761c25aba4304482c7fd87688285a 3 | folderAsset: yes 4 | timeCreated: 1492692752 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/bc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f0b5eb903971c641845b50fec99cc42 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/bcsave.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c57519f5e4f846c459de1f2eaa13da69 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_arm.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ca08f899c4b9e9468fe93edcef60270 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_arm64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4d4c9abbcac24849b38a339a3bf4529 3 | timeCreated: 1494052836 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_arm64be.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9743f232842733e4c9e3b478b8adbffd 3 | timeCreated: 1494052836 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_mips.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24d7d1c35dd3f7b4e8b37409571d4a8d 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_mips64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45cd531eacd4e694585cb017ffc7df14 3 | timeCreated: 1494052836 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_mips64el.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c933838018073f44d8b9cb738c3ef6f8 3 | timeCreated: 1494052836 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_mipsel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b8e829ec84bb8e4f8b56474c9812d02 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_ppc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1231975d3fb5f1b4995c9112ea3537f4 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_x64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9997149317d8a6458002e31b320c212 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_x86.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3244c54564aeae24daa6a81b810b9d3f 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dump.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d03e3137c36cc2468b3fbc7d489f17e 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/p.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 413d3a4d59c39ea48b62dbb8f1b361c3 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/v.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e83d256a881de8f4ab20afb40ff611f7 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/vmdef.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5d8aeae2f0a20e4396eefb2f2dc4268 3 | timeCreated: 1492693197 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/zone.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af44e752354375746813d50c6d26b867 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/list.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0d0ca55b7df3414aafaf11a39c13378 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/lpeg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58143f62c40fa4143903b5b1abc707fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/lpeg/re.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7e8b1ba4c06a4d4db879ad831cb62f1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/ltn12.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f6ae256ba8bd244692e687b1b0ece95 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/mime.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78de065ed4e50984eba196a41070d017 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08e54c61aaaa7c545b03c37c12e41df1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc/functions.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ad071edc48d0d8469028957a2df9c67 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc/misc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65f0fec8c62c56a499fb800e5e7b5048 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc/strict.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4df6e3671aafc8e4d82fee6a2cf5948e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc/utf8.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7ac60fc5e653564588e60deb91863ee 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 588f81265fa730e41a5371957a46eb61 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/containers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b091e6d28e2ea5b469fa0ef87c372f3a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/decoder.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99e0d332d92e1c44ca56267a2b3bdcf9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/descriptor.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec5270fc0e79e1140be77c303c4874c4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/encoder.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59c27d5459f0dfc4ab1077ce6f391ea9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/listener.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7778f4f6aeddbee43984c5da8cc06953 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/protobuf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afc64cedbe4a843499e187d95d272f06 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/text_format.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11ebbcbb210e532448bcc1440a557d8f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/type_checkers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d553dac9a25c84c9c7d74608783a1b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/wire_format.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ba9c90e50e89e4da2ee869851300a0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/slot.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5040eeedfb5e1bf4b8a5294bba19ca0b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63c3bb6af007b6344af9a86ef0b7e225 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d809aad390df7d54a95d719367731993 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/ftp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d703a862f37cfb42a2937b6f2cc9df6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/headers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62876db61c32bf6499db08ea59ccff1f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/http.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 209e83764932d974287e82cda5febaf7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/mbox.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b179323d673f3f04996fc0b22c0817bb 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/smtp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fb16f8ece254ef4d9c196242b49a8ae 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/tp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f81b525c8aa6ab6408db2989c91556cc 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/url.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f52d8d21085d51c42b5e27aca557bcd9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/system.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c23205cbb914d9943ba97091e50d9d34 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/tolua.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dab8762e884a1c469dd11f6d2044a0f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/typeof.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7edd4f2975d3f54f8396b61d8b34944 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ec2002202db97649bcdffe1705c0bdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d41d4486c02e3e4ca1c1f12f7a48a95 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaCoroutine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61c0f3aff91dfbd4097181bfb8c99d7f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaLooper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d56dbfed903b80e498bb872845c17e7e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -10 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaProfiler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29c635f2321c2dc48aea28e8e6accb7e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaResLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61b6ccc77a2cfc341963b08eb6cb4dfc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 674faa7cf920bda4d9b25ac74cdeb979 3 | folderAsset: yes 4 | timeCreated: 1462550855 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Reflection/LuaConstructor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f277531b56c0944fb5d9af67defed02 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Reflection/LuaField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac0dd1f9fec2afa4e96fc2f583688c5a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Reflection/LuaMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e50f0b4cc54866649975adb5d9801a3d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Reflection/LuaProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26952c90fb22bda4dbe945f2fa2224ff 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Reflection/LuaReflection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3faee4f867484814bb3f76d4a798219d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db55e48f816fba1409469da1390fc320 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Source/Generate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0a78131d3329a6429aef18c841165dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Source/Generate/DelegateFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b601554b6e73074a99764aab89026c9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Source/Generate/LuaBinder.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using LuaInterface; 3 | 4 | public static class LuaBinder 5 | { 6 | public static void Bind(LuaState L) 7 | { 8 | throw new LuaException("Please generate LuaBinder files first!"); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Source/Generate/LuaBinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9621a0179b692cd46b020b1de545ebed 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Source/LuaConst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35b0c8bef181f2d4dacd3c860eb546a7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/readme.txt: -------------------------------------------------------------------------------- 1 | tolua# 1.01 2 | - FIX: 5.x AssetBundle.Load函数废弃问题. 3 | - FIX: 修正模版类导出命名空间问题 4 | - FIX: pblua protobuf协议tostring卡死问题 5 | - FIX: Array index 不再检测null参数 6 | - FIX: LuaInteger64 重载函数匹配检测问题 7 | - NEW: 指定RenderSettings为静态类 8 | - NEW: LuaFunction转委托函数支持可变参数列表 9 | - NEW: Wrap函数出错同时附加c#异常堆栈 10 | tolua# 1.02 11 | - New: c# event +=和-=操作支持 12 | - New: 添加 mac 和 ios 运行库 13 | - Opt: 优化list双向链表 -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c85b2c9de573bc54881ca0c2427016cd 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 644aec5d63676df4193b416f5dd1e179 3 | folderAsset: yes 4 | timeCreated: 1453125833 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/.DS_Store -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 729c01aec7bba814d88608249c8a170b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72b436146481b3f40b05eb161ca7f39c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/arm64-v8a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aad78b86e3fe134db823a509dd8971e 3 | folderAsset: yes 4 | timeCreated: 1557889915 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/arm64-v8a/libtolua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/Android/libs/arm64-v8a/libtolua.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 034154e518117d842b99fd1f19efa3a3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libtolua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/Android/libs/armeabi-v7a/libtolua.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libtolua.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fb9a29f65e536b4293f7f9affd19158 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d76e3311efeac224996b0cb7a06a7a3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libtolua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/Android/libs/x86/libtolua.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libtolua.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bf04aa9e8715d047898e94157e2decd 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/CString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/CString.dll -------------------------------------------------------------------------------- /Assets/Plugins/CString.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f630c0f54674a246a65918d24eeab8a 3 | timeCreated: 1499179411 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | Editor: 15 | enabled: 0 16 | settings: 17 | DefaultValueInitialized: true 18 | userData: 19 | assetBundleName: 20 | assetBundleVariant: 21 | -------------------------------------------------------------------------------- /Assets/Plugins/Debugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/Debugger.dll -------------------------------------------------------------------------------- /Assets/Plugins/Debugger.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c33668af923d0aa4ebd48ebe80ef943a 3 | PluginImporter: 4 | serializedVersion: 1 5 | iconMap: {} 6 | executionOrder: {} 7 | isPreloaded: 0 8 | platformData: 9 | Any: 10 | enabled: 1 11 | settings: {} 12 | Editor: 13 | enabled: 0 14 | settings: 15 | DefaultValueInitialized: true 16 | userData: 17 | assetBundleName: 18 | assetBundleVariant: 19 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48e42b60abfb25b488c56d81b63e4646 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/iOS/.DS_Store -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libtolua.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/iOS/libtolua.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libtolua.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8492849dccfbfce4485d383c0ce84651 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d67965ea35e33fa4f8179bc8f4f3ce74 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/MacOS/tolua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/tolua.bundle/Contents/MacOS/tolua -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/Resources/sproto.new/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY : all win clean 2 | 3 | all : linux 4 | win : sproto.dll 5 | 6 | # For Linux 7 | linux: 8 | make sproto.so "DLLFLAGS = -shared -fPIC" 9 | # For Mac OS 10 | macosx: 11 | make sproto.so "DLLFLAGS = -bundle -undefined dynamic_lookup" 12 | 13 | sproto.so : sproto.c lsproto.c 14 | env gcc -O2 -Wall $(DLLFLAGS) -o $@ $^ 15 | 16 | sproto.dll : sproto.c lsproto.c 17 | gcc -O2 -Wall --shared -o $@ $^ -I/usr/local/include -L/usr/local/bin -llua53 18 | 19 | clean : 20 | rm -f sproto.so sproto.dll 21 | -------------------------------------------------------------------------------- /Assets/Plugins/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b0b0c4ffe67d2f4292c5211de91e55f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/x86/tolua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/x86/tolua.dll -------------------------------------------------------------------------------- /Assets/Plugins/x86/tolua.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3b9938f609831e41b7ffc0f4108166b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ea0a8e1f899b1148badb9e92b431566 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/x86_64/tolua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Plugins/x86_64/tolua.dll -------------------------------------------------------------------------------- /Assets/Plugins/x86_64/tolua.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82bce848ef6ade348a8220c2ada7da08 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Sproto.New.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/Assets/Sproto.New.zip -------------------------------------------------------------------------------- /Assets/Sproto.New.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e69673830762b5849b02078f4d42e715 3 | timeCreated: 1502373744 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d0eb461ac328347a86a1727144872e 3 | timeCreated: 1498812386 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /LuaEncoder/luajit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 275aa2b63c7625046b31a302e2c71967 3 | folderAsset: yes 4 | timeCreated: 1427153877 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c6dce3c1e9409c49a82b4c844b8b1e8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/bc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d18ce292c8e9a3446a5890f324daddc8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/bcsave.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cb37ebfedf93ae4b96e0da0d77065c4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_arm.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a5d0750f7c50434799a22a9fd01dd11 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_mips.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d6b0da48d262af4b902b41b630d7c55 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_mipsel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06a369592f16cc54b82ec90d905c271c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_ppc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16a81ab6de25d044280dbc5a24abfa3a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_x64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da9358785297a39428fd96e0e17ad8f7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_x86.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 676a7cf93973aa444ad7cf6d244083d8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dump.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 029c25a735609054d81dee95957d1fc8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/v.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 724b205f5019d9449807abad317fbb38 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/vmdef.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd5259d2e7ff79146978231b90c15d75 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/LuaEncoder/luajit/lua51.dll -------------------------------------------------------------------------------- /LuaEncoder/luajit/lua51.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2286c80999565b743a81e88748af9687 3 | timeCreated: 1427153877 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/luajit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/LuaEncoder/luajit/luajit.exe -------------------------------------------------------------------------------- /LuaEncoder/luajit/luajit.exe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd87a0d5c3e11194094c1d320c512068 3 | timeCreated: 1427153877 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /LuaEncoder/luajit_mac/libluajit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/LuaEncoder/luajit_mac/libluajit.a -------------------------------------------------------------------------------- /LuaEncoder/luajit_mac/libluajit.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/LuaEncoder/luajit_mac/libluajit.so -------------------------------------------------------------------------------- /LuaEncoder/luajit_mac/luajit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/LuaEncoder/luajit_mac/luajit -------------------------------------------------------------------------------- /LuaEncoder/luavm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c052792286bb34e31ae62709d3413dfb 3 | folderAsset: yes 4 | timeCreated: 1437067855 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /LuaEncoder/luavm/luac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_UGUI_V2/d4b1a73aa11697f371448332ff93501270c5c5ce/LuaEncoder/luavm/luac -------------------------------------------------------------------------------- /LuaEncoder/luavm/luac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db51ecd932e1b4a2ebea41eec713f58e 3 | timeCreated: 1437067855 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /LuaEncoder/readme.txt: -------------------------------------------------------------------------------- 1 | 不同平台使用的编码器不同 2 | ============================== 3 | luajit: win, android using luajit2.0.4. 4 | luavm: macos using luac(for u5.x). 5 | luajit_ios: ios using luajit2.1beta 6 | 7 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_DisableAudio: 0 15 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/LuaFramework/Scenes/main.unity 10 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_ExternalVersionControlSupport: Hidden Meta Files 8 | m_SerializationMode: 2 9 | m_WebSecurityEmulationEnabled: 0 10 | m_WebSecurityEmulationHostUrl: http://www.mydomain.com/mygame.unity3d 11 | m_DefaultBehaviorMode: 1 12 | m_SpritePackerMode: 2 13 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.0.0f4 2 | m_StandardAssetsVersion: 0 3 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: 7 | - GuiCamera 8 | - GameManager 9 | layers: 10 | - Default 11 | - TransparentFX 12 | - Ignore Raycast 13 | - 14 | - Water 15 | - UI 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | - 41 | - 42 | m_SortingLayers: 43 | - name: Default 44 | uniqueID: 0 45 | locked: 0 46 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: .0199999996 7 | Maximum Allowed Timestep: .333333343 8 | m_TimeScale: 1 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LuaFramework_UGUI_V2 2 | 基于tolua的热更新框架集成lockstep的实例 3 | 4 | 更新内容:
5 | (1)更新LuaFramework_UGUI最新tolua版本,以支持安卓arm64平台。
6 | (2)集成RUDP库https://github.com/RevenantX/LiteNetLib
7 | (3)增加基于LiteNetLib的lockstep的例子demo。
8 | 9 | 【关于Unity3D的版本问题】 10 | 目前打算用Unity5.0.0的版本,因为很多人依然在用较低版本,我们之后也会抽空去征求多数人的建议, 11 | 如果有必要,我们也会支持较高版本的Unity. 12 | 13 | 2019/07/15更新日志 14 | 将LuaFrameworkd_UGUI_V2升级到2018/2019的高版本,打算弃用5.3以下的版本, 而且以后走GooglePlay的话, 64位最低版本要2017.4. 15 | 16 | 【关于LiteNetLib网络库】 17 | 目前的LiteNetLib网络库尚未使用最新的master版本,因为兼容性问题尚在修复,等LockStep的demo之后 18 | push后,会将LiteNetLib升级. 敬请关注! 19 | 20 | 目前在开发新版框架,如果有技术问题,加微信jarjin,拉微信群,帮你们解决 21 | --------------------------------------------------------------------------------