├── .gitignore ├── .idea └── .idea.U3dFrameworkTolua │ ├── .idea │ ├── contentModel.xml │ ├── indexLayout.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml │ └── riderModule.iml ├── 1539426281699.png ├── 1539427520536.png ├── Assets ├── AB.meta ├── AB │ ├── ThreeEliminate.meta │ ├── ThreeEliminate │ │ ├── MainPack.meta │ │ ├── MainPack │ │ │ ├── ThreeEliminateFGUIPack.meta │ │ │ └── ThreeEliminateFGUIPack │ │ │ │ ├── Main_fui.bytes │ │ │ │ └── Main_fui.bytes.meta │ │ ├── loadingGroup.meta │ │ └── loadingGroup │ │ │ ├── LoadScenePack.meta │ │ │ └── LoadScenePack │ │ │ ├── Loading_fui.bytes │ │ │ └── Loading_fui.bytes.meta │ ├── gamecfg.meta │ └── gamecfg │ │ ├── defaultres.json │ │ └── defaultres.json.meta ├── Demigiant.meta ├── Demigiant │ ├── DOTween.meta │ ├── DOTween │ │ ├── DOTween.XML │ │ ├── DOTween.XML.meta │ │ ├── DOTween.dll │ │ ├── DOTween.dll.mdb │ │ ├── DOTween.dll.mdb.meta │ │ ├── DOTween.dll.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── DOTweenEditor.XML │ │ │ ├── DOTweenEditor.XML.meta │ │ │ ├── DOTweenEditor.dll │ │ │ ├── DOTweenEditor.dll.mdb │ │ │ ├── DOTweenEditor.dll.mdb.meta │ │ │ ├── DOTweenEditor.dll.meta │ │ │ ├── Imgs.meta │ │ │ └── Imgs │ │ │ │ ├── DOTweenIcon.png │ │ │ │ ├── DOTweenIcon.png.meta │ │ │ │ ├── Footer.png │ │ │ │ ├── Footer.png.meta │ │ │ │ ├── Footer_dark.png │ │ │ │ ├── Footer_dark.png.meta │ │ │ │ ├── Header.jpg │ │ │ │ └── Header.jpg.meta │ │ ├── Modules.meta │ │ ├── Modules │ │ │ ├── DOTweenModuleAudio.cs │ │ │ ├── DOTweenModuleAudio.cs.meta │ │ │ ├── DOTweenModulePhysics.cs │ │ │ ├── DOTweenModulePhysics.cs.meta │ │ │ ├── DOTweenModulePhysics2D.cs │ │ │ ├── DOTweenModulePhysics2D.cs.meta │ │ │ ├── DOTweenModuleSprite.cs │ │ │ ├── DOTweenModuleSprite.cs.meta │ │ │ ├── DOTweenModuleUI.cs │ │ │ ├── DOTweenModuleUI.cs.meta │ │ │ ├── DOTweenModuleUnityVersion.cs │ │ │ ├── DOTweenModuleUnityVersion.cs.meta │ │ │ ├── DOTweenModuleUtils.cs │ │ │ └── DOTweenModuleUtils.cs.meta │ │ ├── readme.txt │ │ └── readme.txt.meta │ ├── DOTweenPro Examples.meta │ ├── DOTweenPro Examples │ │ ├── DOTweenAnimation_Advanced.unity │ │ ├── DOTweenAnimation_Advanced.unity.meta │ │ ├── DOTweenAnimation_Basics.unity │ │ ├── DOTweenAnimation_Basics.unity.meta │ │ ├── DOTweenPath.unity │ │ ├── DOTweenPath.unity.meta │ │ ├── Examples Assets.meta │ │ └── Examples Assets │ │ │ ├── dotweenpro_logo.png │ │ │ └── dotweenpro_logo.png.meta │ ├── DOTweenPro.meta │ ├── DOTweenPro │ │ ├── DOTweenAnimation.cs │ │ ├── DOTweenAnimation.cs.meta │ │ ├── DOTweenPro.XML │ │ ├── DOTweenPro.XML.meta │ │ ├── DOTweenPro.dll │ │ ├── DOTweenPro.dll.mdb │ │ ├── DOTweenPro.dll.mdb.meta │ │ ├── DOTweenPro.dll.meta │ │ ├── DOTweenProShortcuts.cs │ │ ├── DOTweenProShortcuts.cs.meta │ │ ├── DOTweenTextMeshPro.cs │ │ ├── DOTweenTextMeshPro.cs.meta │ │ ├── DOTweenTk2d.cs │ │ ├── DOTweenTk2d.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── DOTweenAnimationInspector.cs │ │ │ ├── DOTweenAnimationInspector.cs.meta │ │ │ ├── DOTweenPreviewManager.cs │ │ │ ├── DOTweenPreviewManager.cs.meta │ │ │ ├── DOTweenProEditor.XML │ │ │ ├── DOTweenProEditor.XML.meta │ │ │ ├── DOTweenProEditor.dll │ │ │ ├── DOTweenProEditor.dll.mdb │ │ │ ├── DOTweenProEditor.dll.mdb.meta │ │ │ └── DOTweenProEditor.dll.meta │ │ ├── readme.txt │ │ └── readme.txt.meta │ ├── DemiLib.meta │ ├── DemiLib │ │ ├── Core.meta │ │ └── Core │ │ │ ├── DemiLib.dll │ │ │ ├── DemiLib.dll.mdb │ │ │ ├── DemiLib.dll.mdb.meta │ │ │ ├── DemiLib.dll.meta │ │ │ ├── DemiLib.xml │ │ │ ├── DemiLib.xml.meta │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ ├── DemiEditor.dll │ │ │ ├── DemiEditor.dll.mdb │ │ │ ├── DemiEditor.dll.mdb.meta │ │ │ ├── DemiEditor.dll.meta │ │ │ ├── DemiEditor.xml │ │ │ ├── DemiEditor.xml.meta │ │ │ ├── Imgs.meta │ │ │ └── Imgs │ │ │ ├── blackSquare.png │ │ │ ├── blackSquare.png.meta │ │ │ ├── blackSquareAlpha10.png │ │ │ ├── blackSquareAlpha10.png.meta │ │ │ ├── blackSquareAlpha15.png │ │ │ ├── blackSquareAlpha15.png.meta │ │ │ ├── blackSquareAlpha25.png │ │ │ ├── blackSquareAlpha25.png.meta │ │ │ ├── blackSquareAlpha50.png │ │ │ ├── blackSquareAlpha50.png.meta │ │ │ ├── blackSquareAlpha80.png │ │ │ ├── blackSquareAlpha80.png.meta │ │ │ ├── blueSquare.png │ │ │ ├── blueSquare.png.meta │ │ │ ├── circle.png │ │ │ ├── circle.png.meta │ │ │ ├── greenSquare.png │ │ │ ├── greenSquare.png.meta │ │ │ ├── grid_bright.png │ │ │ ├── grid_bright.png.meta │ │ │ ├── grid_dark.png │ │ │ ├── grid_dark.png.meta │ │ │ ├── ico_alert.png │ │ │ ├── ico_alert.png.meta │ │ │ ├── ico_alignB.png │ │ │ ├── ico_alignB.png.meta │ │ │ ├── ico_alignBC.png │ │ │ ├── ico_alignBC.png.meta │ │ │ ├── ico_alignBL.png │ │ │ ├── ico_alignBL.png.meta │ │ │ ├── ico_alignBR.png │ │ │ ├── ico_alignBR.png.meta │ │ │ ├── ico_alignCC.png │ │ │ ├── ico_alignCC.png.meta │ │ │ ├── ico_alignCL.png │ │ │ ├── ico_alignCL.png.meta │ │ │ ├── ico_alignCR.png │ │ │ ├── ico_alignCR.png.meta │ │ │ ├── ico_alignHC.png │ │ │ ├── ico_alignHC.png.meta │ │ │ ├── ico_alignL.png │ │ │ ├── ico_alignL.png.meta │ │ │ ├── ico_alignR.png │ │ │ ├── ico_alignR.png.meta │ │ │ ├── ico_alignT.png │ │ │ ├── ico_alignT.png.meta │ │ │ ├── ico_alignTC.png │ │ │ ├── ico_alignTC.png.meta │ │ │ ├── ico_alignTL.png │ │ │ ├── ico_alignTL.png.meta │ │ │ ├── ico_alignTR.png │ │ │ ├── ico_alignTR.png.meta │ │ │ ├── ico_alignVC.png │ │ │ ├── ico_alignVC.png.meta │ │ │ ├── ico_camera.png │ │ │ ├── ico_camera.png.meta │ │ │ ├── ico_camera_border.png │ │ │ ├── ico_camera_border.png.meta │ │ │ ├── ico_cog.png │ │ │ ├── ico_cog.png.meta │ │ │ ├── ico_cog_border.png │ │ │ ├── ico_cog_border.png.meta │ │ │ ├── ico_comment.png │ │ │ ├── ico_comment.png.meta │ │ │ ├── ico_comment_border.png │ │ │ ├── ico_comment_border.png.meta │ │ │ ├── ico_delete.png │ │ │ ├── ico_delete.png.meta │ │ │ ├── ico_demigiant.png │ │ │ ├── ico_demigiant.png.meta │ │ │ ├── ico_end.png │ │ │ ├── ico_end.png.meta │ │ │ ├── ico_heart.png │ │ │ ├── ico_heart.png.meta │ │ │ ├── ico_heart_border.png │ │ │ ├── ico_heart_border.png.meta │ │ │ ├── ico_nodeArrow.png │ │ │ ├── ico_nodeArrow.png.meta │ │ │ ├── ico_play.png │ │ │ ├── ico_play.png.meta │ │ │ ├── ico_play_border.png │ │ │ ├── ico_play_border.png.meta │ │ │ ├── ico_skull.png │ │ │ ├── ico_skull.png.meta │ │ │ ├── ico_skull_border.png │ │ │ ├── ico_skull_border.png.meta │ │ │ ├── ico_star.png │ │ │ ├── ico_star.png.meta │ │ │ ├── ico_star_border.png │ │ │ ├── ico_star_border.png.meta │ │ │ ├── ico_ui.png │ │ │ ├── ico_ui.png.meta │ │ │ ├── ico_ui_border.png │ │ │ ├── ico_ui_border.png.meta │ │ │ ├── orangeSquare.png │ │ │ ├── orangeSquare.png.meta │ │ │ ├── project.meta │ │ │ ├── project │ │ │ ├── ico_atlas.png │ │ │ ├── ico_atlas.png.meta │ │ │ ├── ico_audio.png │ │ │ ├── ico_audio.png.meta │ │ │ ├── ico_bundle.png │ │ │ ├── ico_bundle.png.meta │ │ │ ├── ico_cog.png │ │ │ ├── ico_cog.png.meta │ │ │ ├── ico_cross.png │ │ │ ├── ico_cross.png.meta │ │ │ ├── ico_demigiant.png │ │ │ ├── ico_demigiant.png.meta │ │ │ ├── ico_folder.png │ │ │ ├── ico_folder.png.meta │ │ │ ├── ico_fonts.png │ │ │ ├── ico_fonts.png.meta │ │ │ ├── ico_heart.png │ │ │ ├── ico_heart.png.meta │ │ │ ├── ico_play.png │ │ │ ├── ico_play.png.meta │ │ │ ├── ico_prefab.png │ │ │ ├── ico_prefab.png.meta │ │ │ ├── ico_scripts.png │ │ │ ├── ico_scripts.png.meta │ │ │ ├── ico_skull.png │ │ │ ├── ico_skull.png.meta │ │ │ ├── ico_star.png │ │ │ ├── ico_star.png.meta │ │ │ ├── ico_textures.png │ │ │ └── ico_textures.png.meta │ │ │ ├── purpleSquare.png │ │ │ ├── purpleSquare.png.meta │ │ │ ├── redSquare.png │ │ │ ├── redSquare.png.meta │ │ │ ├── squareBorder.png │ │ │ ├── squareBorder.png.meta │ │ │ ├── squareBorderAlpha15.png │ │ │ ├── squareBorderAlpha15.png.meta │ │ │ ├── squareBorderCurved.png │ │ │ ├── squareBorderCurved.png.meta │ │ │ ├── squareBorderCurved02.png │ │ │ ├── squareBorderCurved02.png.meta │ │ │ ├── squareBorderCurved02_darkBorders.png │ │ │ ├── squareBorderCurved02_darkBorders.png.meta │ │ │ ├── squareBorderCurvedAlpha.png │ │ │ ├── squareBorderCurvedAlpha.png.meta │ │ │ ├── squareBorderCurvedEmpty.png │ │ │ ├── squareBorderCurvedEmpty.png.meta │ │ │ ├── squareBorderCurvedEmpty02.png │ │ │ ├── squareBorderCurvedEmpty02.png.meta │ │ │ ├── squareBorderCurvedEmptyThick.png │ │ │ ├── squareBorderCurvedEmptyThick.png.meta │ │ │ ├── squareBorderCurved_darkBorders.png │ │ │ ├── squareBorderCurved_darkBorders.png.meta │ │ │ ├── squareBorderCurved_darkBordersAlpha.png │ │ │ ├── squareBorderCurved_darkBordersAlpha.png.meta │ │ │ ├── squareBorderEmpty.png │ │ │ ├── squareBorderEmpty.png.meta │ │ │ ├── squareBorderEmpty01.png │ │ │ ├── squareBorderEmpty01.png.meta │ │ │ ├── squareBorderEmpty02.png │ │ │ ├── squareBorderEmpty02.png.meta │ │ │ ├── squareBorderEmpty03.png │ │ │ ├── squareBorderEmpty03.png.meta │ │ │ ├── squareBorderThickEmpty.png │ │ │ ├── squareBorderThickEmpty.png.meta │ │ │ ├── squareBorderThickerEmpty.png │ │ │ ├── squareBorderThickerEmpty.png.meta │ │ │ ├── squareCorners03.png │ │ │ ├── squareCorners03.png.meta │ │ │ ├── squareCornersEmpty02.png │ │ │ ├── squareCornersEmpty02.png.meta │ │ │ ├── tileBars_empty.png │ │ │ ├── tileBars_empty.png.meta │ │ │ ├── tileBars_slanted.png │ │ │ ├── tileBars_slanted.png.meta │ │ │ ├── tileBars_slanted_alpha.png │ │ │ ├── tileBars_slanted_alpha.png.meta │ │ │ ├── whiteDot.png │ │ │ ├── whiteDot.png.meta │ │ │ ├── whiteDot_darkBorder.png │ │ │ ├── whiteDot_darkBorder.png.meta │ │ │ ├── whiteDot_whiteBorderAlpha.png │ │ │ ├── whiteDot_whiteBorderAlpha.png.meta │ │ │ ├── whiteSquare.png │ │ │ ├── whiteSquare.png.meta │ │ │ ├── whiteSquareAlpha10.png │ │ │ ├── whiteSquareAlpha10.png.meta │ │ │ ├── whiteSquareAlpha15.png │ │ │ ├── whiteSquareAlpha15.png.meta │ │ │ ├── whiteSquareAlpha25.png │ │ │ ├── whiteSquareAlpha25.png.meta │ │ │ ├── whiteSquareAlpha50.png │ │ │ ├── whiteSquareAlpha50.png.meta │ │ │ ├── whiteSquareAlpha80.png │ │ │ ├── whiteSquareAlpha80.png.meta │ │ │ ├── whiteSquare_fadeOut_bt.png │ │ │ ├── whiteSquare_fadeOut_bt.png.meta │ │ │ ├── yellowSquare.png │ │ │ └── yellowSquare.png.meta │ ├── readme_DOTweenPro.txt │ └── readme_DOTweenPro.txt.meta ├── Plugins.meta ├── Plugins │ ├── Android.meta │ ├── Android │ │ ├── libs.meta │ │ └── libs │ │ │ ├── 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 │ │ ├── BundleId.h │ │ ├── BundleId.h.meta │ │ ├── BundleId.m │ │ ├── BundleId.m.meta │ │ ├── libtolua.a │ │ └── libtolua.a.meta │ ├── tolua.bundle.meta │ ├── tolua.bundle │ │ ├── Contents.meta │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── Info.plist.meta │ │ │ ├── MacOS.meta │ │ │ └── MacOS │ │ │ ├── tolua │ │ │ └── tolua.meta │ ├── x86.meta │ ├── x86 │ │ ├── tolua.dll │ │ └── tolua.dll.meta │ ├── x86_64.meta │ ├── x86_64 │ │ ├── tolua.dll │ │ └── tolua.dll.meta │ ├── zlib.net.dll │ └── zlib.net.dll.meta ├── Resources.meta ├── Resources │ ├── AssetCorrespondPath.txt │ ├── AssetCorrespondPath.txt.meta │ ├── DOTweenSettings.asset │ ├── DOTweenSettings.asset.meta │ ├── Main.bytes │ ├── Main.bytes.meta │ ├── Main@atlas0.png │ ├── Main@atlas0.png.meta │ ├── Main@atlas_lqnx13.png │ ├── Main@atlas_lqnx13.png.meta │ ├── Main@sprites.bytes │ └── Main@sprites.bytes.meta ├── Scenes.meta ├── Scenes │ ├── main.meta │ ├── main.unity │ ├── main.unity.meta │ └── main │ │ ├── ReflectionProbe-0.exr │ │ └── ReflectionProbe-0.exr.meta ├── Source.meta ├── Source │ ├── BaseGenerate.meta │ ├── BaseGenerate │ │ ├── DelegateFactory.cs │ │ ├── DelegateFactory.cs.meta │ │ ├── LuaBinder.cs │ │ └── LuaBinder.cs.meta │ ├── Generate.meta │ ├── LuaConst.cs │ └── LuaConst.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 │ │ ├── Custom.meta │ │ ├── Custom │ │ │ ├── CustomSettings.cs │ │ │ └── CustomSettings.cs.meta │ │ ├── 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.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 │ │ │ ├── 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 │ │ ├── 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 │ ├── readme.txt │ └── readme.txt.meta ├── YKFramwork.meta ├── YKFramwork │ ├── Editor.meta │ ├── Editor │ │ ├── AllStyles.cs │ │ ├── AllStyles.cs.meta │ │ ├── AutoBuild.meta │ │ ├── AutoBuild │ │ │ ├── AndroidCfg.meta │ │ │ ├── AndroidCfg │ │ │ │ ├── BuildAndroidBase.cs │ │ │ │ ├── BuildAndroidBase.cs.meta │ │ │ │ ├── BuildAndroidCfg.cs │ │ │ │ └── BuildAndroidCfg.cs.meta │ │ │ ├── Install.plist │ │ │ ├── Install.plist.meta │ │ │ ├── Xcode.meta │ │ │ ├── Xcode.zip │ │ │ ├── Xcode.zip.meta │ │ │ ├── Xcode │ │ │ │ ├── AssetCatalog.cs │ │ │ │ ├── AssetCatalog.cs.meta │ │ │ │ ├── JsonParser.cs │ │ │ │ ├── JsonParser.cs.meta │ │ │ │ ├── PBX.meta │ │ │ │ ├── PBX │ │ │ │ │ ├── Elements.cs │ │ │ │ │ ├── Elements.cs.meta │ │ │ │ │ ├── Lexer.cs │ │ │ │ │ ├── Lexer.cs.meta │ │ │ │ │ ├── Objects.cs │ │ │ │ │ ├── Objects.cs.meta │ │ │ │ │ ├── Parser.cs │ │ │ │ │ ├── Parser.cs.meta │ │ │ │ │ ├── Sections.cs │ │ │ │ │ ├── Sections.cs.meta │ │ │ │ │ ├── Serializer.cs │ │ │ │ │ ├── Serializer.cs.meta │ │ │ │ │ ├── Utils.cs │ │ │ │ │ └── Utils.cs.meta │ │ │ │ ├── PBXCapabilityType.cs │ │ │ │ ├── PBXCapabilityType.cs.meta │ │ │ │ ├── PBXPath.cs │ │ │ │ ├── PBXPath.cs.meta │ │ │ │ ├── PBXProject.cs │ │ │ │ ├── PBXProject.cs.meta │ │ │ │ ├── PBXProjectData.cs │ │ │ │ ├── PBXProjectData.cs.meta │ │ │ │ ├── PBXProjectExtensions.cs │ │ │ │ ├── PBXProjectExtensions.cs.meta │ │ │ │ ├── PlistParser.cs │ │ │ │ ├── PlistParser.cs.meta │ │ │ │ ├── ProjectCapabilityManager.cs │ │ │ │ ├── ProjectCapabilityManager.cs.meta │ │ │ │ ├── Properties.meta │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── AssemblyInfo.cs.meta │ │ │ │ ├── XcScheme.cs │ │ │ │ └── XcScheme.cs.meta │ │ │ ├── XcodeProjectUpdater.meta │ │ │ └── XcodeProjectUpdater │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ ├── DirectoryProcessor.cs │ │ │ │ ├── DirectoryProcessor.cs.meta │ │ │ │ ├── ExtensionName.cs │ │ │ │ ├── ExtensionName.cs.meta │ │ │ │ ├── InfoPlistProcessor.cs │ │ │ │ ├── InfoPlistProcessor.cs.meta │ │ │ │ ├── XcodeProjectSetting.cs │ │ │ │ ├── XcodeProjectSetting.cs.meta │ │ │ │ ├── XcodeProjectSettingCreator.cs │ │ │ │ ├── XcodeProjectSettingCreator.cs.meta │ │ │ │ ├── XcodeProjectSettingEditor.cs │ │ │ │ ├── XcodeProjectSettingEditor.cs.meta │ │ │ │ ├── XcodeProjectUpdater.cs │ │ │ │ └── XcodeProjectUpdater.cs.meta │ │ ├── BuildAB.cs │ │ ├── BuildAB.cs.meta │ │ ├── BuildGameCfg.meta │ │ ├── BuildGameCfg │ │ │ ├── ABCfg.meta │ │ │ ├── ABCfg │ │ │ │ ├── GameCfg.asset │ │ │ │ ├── GameCfg.asset.meta │ │ │ │ ├── GameRes.asset │ │ │ │ ├── GameRes.asset.meta │ │ │ │ ├── Tolua.asset │ │ │ │ ├── Tolua.asset.meta │ │ │ │ ├── YKFramworkLua.asset │ │ │ │ └── YKFramworkLua.asset.meta │ │ │ ├── Collections.meta │ │ │ └── Collections │ │ │ │ ├── Test.asset │ │ │ │ └── Test.asset.meta │ │ ├── BuildGameRes.meta │ │ ├── BuildGameRes │ │ │ ├── BuildCollectionResInfo.cs │ │ │ ├── BuildCollectionResInfo.cs.meta │ │ │ ├── BuildResInfo.cs │ │ │ └── BuildResInfo.cs.meta │ │ ├── CreateLua.cs │ │ ├── CreateLua.cs.meta │ │ ├── Custom.meta │ │ ├── Custom │ │ │ ├── YKFramworkCustomSettings.cs │ │ │ └── YKFramworkCustomSettings.cs.meta │ │ ├── DllToLuaLib.cs │ │ ├── DllToLuaLib.cs.meta │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── ICSharpCode.SharpZipLib.dll.meta │ │ ├── LuaTemplate.meta │ │ ├── LuaTemplate │ │ │ ├── Lua.lua │ │ │ └── Lua.lua.meta │ │ ├── OpenSubLime.cs │ │ ├── OpenSubLime.cs.meta │ │ ├── ProjectBuild.cs │ │ ├── ProjectBuild.cs.meta │ │ ├── Proto.meta │ │ ├── Proto │ │ │ ├── SProtoToLuaTools.cs │ │ │ └── SProtoToLuaTools.cs.meta │ │ ├── ResMgr.meta │ │ ├── ResMgr │ │ │ ├── AaaetBundleEditor.cs │ │ │ ├── AaaetBundleEditor.cs.meta │ │ │ ├── AssetGroupMgr.cs │ │ │ ├── AssetGroupMgr.cs.meta │ │ │ ├── AssetInfoEditor.cs │ │ │ ├── AssetInfoEditor.cs.meta │ │ │ ├── AssetMode.cs │ │ │ ├── AssetMode.cs.meta │ │ │ ├── ResAssetsTreeEitor.cs │ │ │ ├── ResAssetsTreeEitor.cs.meta │ │ │ ├── ResFileEditor.cs │ │ │ ├── ResFileEditor.cs.meta │ │ │ ├── ResGroupTreeEditor.cs │ │ │ └── ResGroupTreeEditor.cs.meta │ │ ├── SVN.meta │ │ └── SVN │ │ │ ├── SVNUtils.cs │ │ │ └── SVNUtils.cs.meta │ ├── Resources.meta │ ├── Resources │ │ ├── gamecfg.asset │ │ └── gamecfg.asset.meta │ ├── Script.meta │ └── Script │ │ ├── Core.meta │ │ ├── Core │ │ ├── Event.meta │ │ ├── Event │ │ │ ├── EventData.cs │ │ │ ├── EventData.cs.meta │ │ │ ├── EventNode.cs │ │ │ └── EventNode.cs.meta │ │ ├── GameMode.cs │ │ ├── GameMode.cs.meta │ │ ├── LogicCore.cs │ │ ├── LogicCore.cs.meta │ │ ├── LogicNode.cs │ │ ├── LogicNode.cs.meta │ │ ├── ResMgr.meta │ │ ├── ResMgr │ │ │ ├── ABInfo.cs │ │ │ ├── ABInfo.cs.meta │ │ │ ├── ABMgr.cs │ │ │ ├── ABMgr.cs.meta │ │ │ ├── AutoLoadAsset.cs │ │ │ ├── AutoLoadAsset.cs.meta │ │ │ ├── GameCfgMgr.cs │ │ │ ├── GameCfgMgr.cs.meta │ │ │ ├── ISceneLoad.cs │ │ │ ├── ISceneLoad.cs.meta │ │ │ ├── LoadDataCfg.cs │ │ │ ├── LoadDataCfg.cs.meta │ │ │ ├── LoadGroup.cs │ │ │ ├── LoadGroup.cs.meta │ │ │ ├── ResMgr.cs │ │ │ └── ResMgr.cs.meta │ │ ├── SceneMgr.meta │ │ ├── SceneMgr │ │ │ ├── SceneBase.cs │ │ │ ├── SceneBase.cs.meta │ │ │ ├── SceneMgr.cs │ │ │ └── SceneMgr.cs.meta │ │ ├── SimplePool.cs │ │ ├── SimplePool.cs.meta │ │ ├── SounMgr.meta │ │ ├── SounMgr │ │ │ ├── BGMMgr.cs │ │ │ ├── BGMMgr.cs.meta │ │ │ ├── SoundMgr.cs │ │ │ └── SoundMgr.cs.meta │ │ ├── UIMgr.meta │ │ └── UIMgr │ │ │ ├── BaseUI.cs │ │ │ ├── BaseUI.cs.meta │ │ │ ├── UIMgr.cs │ │ │ └── UIMgr.cs.meta │ │ ├── Def.meta │ │ ├── Def │ │ ├── AppConst.cs │ │ ├── AppConst.cs.meta │ │ ├── EventDef.cs │ │ ├── EventDef.cs.meta │ │ ├── FramworkEventDef.cs │ │ ├── FramworkEventDef.cs.meta │ │ ├── WXConstant.cs │ │ └── WXConstant.cs.meta │ │ ├── EntranceScene.cs │ │ ├── EntranceScene.cs.meta │ │ ├── GameCfg.meta │ │ ├── GameCfg │ │ ├── LocalGameCfgData.cs │ │ └── LocalGameCfgData.cs.meta │ │ ├── HotUpdataRes.meta │ │ ├── HotUpdataRes │ │ ├── ComparisonFileInfoList.cs │ │ ├── ComparisonFileInfoList.cs.meta │ │ ├── HotUpdateRessMgr.cs │ │ └── HotUpdateRessMgr.cs.meta │ │ ├── Initialization.cs │ │ ├── Initialization.cs.meta │ │ ├── Libs.meta │ │ ├── Libs │ │ ├── 7zip.meta │ │ ├── 7zip │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ │ ├── CRC.cs │ │ │ │ ├── CRC.cs.meta │ │ │ │ ├── CommandLineParser.cs │ │ │ │ ├── CommandLineParser.cs.meta │ │ │ │ ├── InBuffer.cs │ │ │ │ ├── InBuffer.cs.meta │ │ │ │ ├── OutBuffer.cs │ │ │ │ └── OutBuffer.cs.meta │ │ │ ├── Compress.meta │ │ │ ├── Compress │ │ │ │ ├── LZ.meta │ │ │ │ ├── LZ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ ├── IMatchFinder.cs.meta │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ ├── LzBinTree.cs.meta │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ ├── LzInWindow.cs.meta │ │ │ │ │ ├── LzOutWindow.cs │ │ │ │ │ └── LzOutWindow.cs.meta │ │ │ │ ├── LZMA.meta │ │ │ │ ├── LZMA │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ ├── LzmaBase.cs.meta │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ ├── LzmaDecoder.cs.meta │ │ │ │ │ ├── LzmaEncoder.cs │ │ │ │ │ └── LzmaEncoder.cs.meta │ │ │ │ ├── LzmaAlone.meta │ │ │ │ ├── LzmaAlone │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ ├── LzmaAlone.cs.meta │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ ├── LzmaBench.cs.meta │ │ │ │ │ ├── Properties.meta │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ ├── Resources.cs.meta │ │ │ │ │ │ ├── Settings.cs │ │ │ │ │ │ └── Settings.cs.meta │ │ │ │ ├── RangeCoder.meta │ │ │ │ └── RangeCoder │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ ├── RangeCoder.cs.meta │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ ├── RangeCoderBit.cs.meta │ │ │ │ │ ├── RangeCoderBitTree.cs │ │ │ │ │ └── RangeCoderBitTree.cs.meta │ │ │ ├── CompressHelper.cs │ │ │ ├── CompressHelper.cs.meta │ │ │ ├── ICoder.cs │ │ │ └── ICoder.cs.meta │ │ ├── ConsolePro.meta │ │ ├── ConsolePro │ │ │ ├── ConsoleProRemoteServer.cs │ │ │ ├── ConsoleProRemoteServer.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── ConsolePro.Editor.dll │ │ │ │ └── ConsolePro.Editor.dll.meta │ │ │ ├── Readme.txt │ │ │ └── Readme.txt.meta │ │ ├── FairyGUI.meta │ │ └── FairyGUI │ │ │ ├── LuaUIHelper.cs │ │ │ ├── LuaUIHelper.cs.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ ├── Shaders.meta │ │ │ └── Shaders │ │ │ │ ├── AddOn.meta │ │ │ │ ├── AddOn │ │ │ │ ├── FairyGUI-BlurFilter.shader │ │ │ │ └── FairyGUI-BlurFilter.shader.meta │ │ │ │ ├── FairyGUI-BMFont.shader │ │ │ │ ├── FairyGUI-BMFont.shader.meta │ │ │ │ ├── FairyGUI-Image.shader │ │ │ │ ├── FairyGUI-Image.shader.meta │ │ │ │ ├── FairyGUI-Text-Brighter.shader │ │ │ │ ├── FairyGUI-Text-Brighter.shader.meta │ │ │ │ ├── FairyGUI-Text.shader │ │ │ │ └── FairyGUI-Text.shader.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── BlendMode.cs │ │ │ │ ├── BlendMode.cs.meta │ │ │ │ ├── CaptureCamera.cs │ │ │ │ ├── CaptureCamera.cs.meta │ │ │ │ ├── Container.cs │ │ │ │ ├── Container.cs.meta │ │ │ │ ├── DisplayObject.cs │ │ │ │ ├── DisplayObject.cs.meta │ │ │ │ ├── DisplayOptions.cs │ │ │ │ ├── DisplayOptions.cs.meta │ │ │ │ ├── FillUtils.cs │ │ │ │ ├── FillUtils.cs.meta │ │ │ │ ├── GoWrapper.cs │ │ │ │ ├── GoWrapper.cs.meta │ │ │ │ ├── HitTest.meta │ │ │ │ ├── HitTest │ │ │ │ │ ├── BoxColliderHitTest.cs │ │ │ │ │ ├── BoxColliderHitTest.cs.meta │ │ │ │ │ ├── ColliderHitTest.cs │ │ │ │ │ ├── ColliderHitTest.cs.meta │ │ │ │ │ ├── HitTestContext.cs │ │ │ │ │ ├── HitTestContext.cs.meta │ │ │ │ │ ├── IHitTest.cs │ │ │ │ │ ├── IHitTest.cs.meta │ │ │ │ │ ├── MeshColliderHitTest.cs │ │ │ │ │ ├── MeshColliderHitTest.cs.meta │ │ │ │ │ ├── PixelHitTest.cs │ │ │ │ │ ├── PixelHitTest.cs.meta │ │ │ │ │ ├── RectHitTest.cs │ │ │ │ │ └── RectHitTest.cs.meta │ │ │ │ ├── Image.cs │ │ │ │ ├── Image.cs.meta │ │ │ │ ├── MaterialManager.cs │ │ │ │ ├── MaterialManager.cs.meta │ │ │ │ ├── MovieClip.cs │ │ │ │ ├── MovieClip.cs.meta │ │ │ │ ├── NAudioClip.cs │ │ │ │ ├── NAudioClip.cs.meta │ │ │ │ ├── NGraphics.cs │ │ │ │ ├── NGraphics.cs.meta │ │ │ │ ├── NMaterial.cs │ │ │ │ ├── NMaterial.cs.meta │ │ │ │ ├── NTexture.cs │ │ │ │ ├── NTexture.cs.meta │ │ │ │ ├── ShaderConfig.cs │ │ │ │ ├── ShaderConfig.cs.meta │ │ │ │ ├── Shape.cs │ │ │ │ ├── Shape.cs.meta │ │ │ │ ├── Stage.cs │ │ │ │ ├── Stage.cs.meta │ │ │ │ ├── StageCamera.cs │ │ │ │ ├── StageCamera.cs.meta │ │ │ │ ├── StageEngine.cs │ │ │ │ ├── StageEngine.cs.meta │ │ │ │ ├── Stats.cs │ │ │ │ ├── Stats.cs.meta │ │ │ │ ├── Text.meta │ │ │ │ ├── Text │ │ │ │ │ ├── BaseFont.cs │ │ │ │ │ ├── BaseFont.cs.meta │ │ │ │ │ ├── BitmapFont.cs │ │ │ │ │ ├── BitmapFont.cs.meta │ │ │ │ │ ├── CopyPastePatch.cs │ │ │ │ │ ├── CopyPastePatch.cs.meta │ │ │ │ │ ├── DynamicFont.cs │ │ │ │ │ ├── DynamicFont.cs.meta │ │ │ │ │ ├── Emoji.cs │ │ │ │ │ ├── Emoji.cs.meta │ │ │ │ │ ├── FontManager.cs │ │ │ │ │ ├── FontManager.cs.meta │ │ │ │ │ ├── IKeyboard.cs │ │ │ │ │ ├── IKeyboard.cs.meta │ │ │ │ │ ├── InputTextField.cs │ │ │ │ │ ├── InputTextField.cs.meta │ │ │ │ │ ├── RTLSupport.cs │ │ │ │ │ ├── RTLSupport.cs.meta │ │ │ │ │ ├── RichTextField.cs │ │ │ │ │ ├── RichTextField.cs.meta │ │ │ │ │ ├── SelectionShape.cs │ │ │ │ │ ├── SelectionShape.cs.meta │ │ │ │ │ ├── TextField.cs │ │ │ │ │ ├── TextField.cs.meta │ │ │ │ │ ├── TextFormat.cs │ │ │ │ │ ├── TextFormat.cs.meta │ │ │ │ │ ├── TouchScreenKeyboard.cs │ │ │ │ │ ├── TouchScreenKeyboard.cs.meta │ │ │ │ │ ├── TypingEffect.cs │ │ │ │ │ └── TypingEffect.cs.meta │ │ │ │ ├── UpdateContext.cs │ │ │ │ └── UpdateContext.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── EditorToolSet.cs │ │ │ │ ├── EditorToolSet.cs.meta │ │ │ │ ├── PackagesWindow.cs │ │ │ │ ├── PackagesWindow.cs.meta │ │ │ │ ├── StageCameraEditor.cs │ │ │ │ ├── StageCameraEditor.cs.meta │ │ │ │ ├── UIConfigEditor.cs │ │ │ │ ├── UIConfigEditor.cs.meta │ │ │ │ ├── UIContentScalerEditor.cs │ │ │ │ ├── UIContentScalerEditor.cs.meta │ │ │ │ ├── UIPainterEditor.cs │ │ │ │ ├── UIPainterEditor.cs.meta │ │ │ │ ├── UIPanelEditor.cs │ │ │ │ └── UIPanelEditor.cs.meta │ │ │ ├── Event.meta │ │ │ ├── Event │ │ │ │ ├── EventBridge.cs │ │ │ │ ├── EventBridge.cs.meta │ │ │ │ ├── EventContext.cs │ │ │ │ ├── EventContext.cs.meta │ │ │ │ ├── EventDispatcher.cs │ │ │ │ ├── EventDispatcher.cs.meta │ │ │ │ ├── EventListener.cs │ │ │ │ ├── EventListener.cs.meta │ │ │ │ ├── IEventDispatcher.cs │ │ │ │ ├── IEventDispatcher.cs.meta │ │ │ │ ├── InputEvent.cs │ │ │ │ └── InputEvent.cs.meta │ │ │ ├── Filter.meta │ │ │ ├── Filter │ │ │ │ ├── BlurFilter.cs │ │ │ │ ├── BlurFilter.cs.meta │ │ │ │ ├── ColorFilter.cs │ │ │ │ ├── ColorFilter.cs.meta │ │ │ │ ├── IFilter.cs │ │ │ │ └── IFilter.cs.meta │ │ │ ├── Gesture.meta │ │ │ ├── Gesture │ │ │ │ ├── LongPressGesture.cs │ │ │ │ ├── LongPressGesture.cs.meta │ │ │ │ ├── PinchGesture.cs │ │ │ │ ├── PinchGesture.cs.meta │ │ │ │ ├── RotationGesture.cs │ │ │ │ ├── RotationGesture.cs.meta │ │ │ │ ├── SwipeGesture.cs │ │ │ │ └── SwipeGesture.cs.meta │ │ │ ├── Tween.meta │ │ │ ├── Tween │ │ │ │ ├── EaseManager.cs │ │ │ │ ├── EaseManager.cs.meta │ │ │ │ ├── EaseType.cs │ │ │ │ ├── EaseType.cs.meta │ │ │ │ ├── GTween.cs │ │ │ │ ├── GTween.cs.meta │ │ │ │ ├── GTweener.cs │ │ │ │ ├── GTweener.cs.meta │ │ │ │ ├── TweenManager.cs │ │ │ │ ├── TweenManager.cs.meta │ │ │ │ ├── TweenPropType.cs │ │ │ │ ├── TweenPropType.cs.meta │ │ │ │ ├── TweenValue.cs │ │ │ │ └── TweenValue.cs.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ │ ├── Action.meta │ │ │ │ ├── Action │ │ │ │ │ ├── ChangePageAction.cs │ │ │ │ │ ├── ChangePageAction.cs.meta │ │ │ │ │ ├── ControllerAction.cs │ │ │ │ │ ├── ControllerAction.cs.meta │ │ │ │ │ ├── PlayTransitionAction.cs │ │ │ │ │ └── PlayTransitionAction.cs.meta │ │ │ │ ├── AsyncCreationHelper.cs │ │ │ │ ├── AsyncCreationHelper.cs.meta │ │ │ │ ├── Controller.cs │ │ │ │ ├── Controller.cs.meta │ │ │ │ ├── DragDropManager.cs │ │ │ │ ├── DragDropManager.cs.meta │ │ │ │ ├── EMRenderSupport.cs │ │ │ │ ├── EMRenderSupport.cs.meta │ │ │ │ ├── FieldTypes.cs │ │ │ │ ├── FieldTypes.cs.meta │ │ │ │ ├── GButton.cs │ │ │ │ ├── GButton.cs.meta │ │ │ │ ├── GComboBox.cs │ │ │ │ ├── GComboBox.cs.meta │ │ │ │ ├── GComponent.cs │ │ │ │ ├── GComponent.cs.meta │ │ │ │ ├── GGraph.cs │ │ │ │ ├── GGraph.cs.meta │ │ │ │ ├── GGroup.cs │ │ │ │ ├── GGroup.cs.meta │ │ │ │ ├── GImage.cs │ │ │ │ ├── GImage.cs.meta │ │ │ │ ├── GLabel.cs │ │ │ │ ├── GLabel.cs.meta │ │ │ │ ├── GList.cs │ │ │ │ ├── GList.cs.meta │ │ │ │ ├── GLoader.cs │ │ │ │ ├── GLoader.cs.meta │ │ │ │ ├── GMovieClip.cs │ │ │ │ ├── GMovieClip.cs.meta │ │ │ │ ├── GObject.cs │ │ │ │ ├── GObject.cs.meta │ │ │ │ ├── GObjectPool.cs │ │ │ │ ├── GObjectPool.cs.meta │ │ │ │ ├── GProgressBar.cs │ │ │ │ ├── GProgressBar.cs.meta │ │ │ │ ├── GRichTextField.cs │ │ │ │ ├── GRichTextField.cs.meta │ │ │ │ ├── GRoot.cs │ │ │ │ ├── GRoot.cs.meta │ │ │ │ ├── GScrollBar.cs │ │ │ │ ├── GScrollBar.cs.meta │ │ │ │ ├── GSlider.cs │ │ │ │ ├── GSlider.cs.meta │ │ │ │ ├── GTextField.cs │ │ │ │ ├── GTextField.cs.meta │ │ │ │ ├── GTextInput.cs │ │ │ │ ├── GTextInput.cs.meta │ │ │ │ ├── Gears.meta │ │ │ │ ├── Gears │ │ │ │ │ ├── GearAnimation.cs │ │ │ │ │ ├── GearAnimation.cs.meta │ │ │ │ │ ├── GearBase.cs │ │ │ │ │ ├── GearBase.cs.meta │ │ │ │ │ ├── GearColor.cs │ │ │ │ │ ├── GearColor.cs.meta │ │ │ │ │ ├── GearDisplay.cs │ │ │ │ │ ├── GearDisplay.cs.meta │ │ │ │ │ ├── GearIcon.cs │ │ │ │ │ ├── GearIcon.cs.meta │ │ │ │ │ ├── GearLook.cs │ │ │ │ │ ├── GearLook.cs.meta │ │ │ │ │ ├── GearSize.cs │ │ │ │ │ ├── GearSize.cs.meta │ │ │ │ │ ├── GearText.cs │ │ │ │ │ ├── GearText.cs.meta │ │ │ │ │ ├── GearXY.cs │ │ │ │ │ ├── GearXY.cs.meta │ │ │ │ │ ├── IAnimationGear.cs │ │ │ │ │ ├── IAnimationGear.cs.meta │ │ │ │ │ ├── IColorGear.cs │ │ │ │ │ └── IColorGear.cs.meta │ │ │ │ ├── IUISource.cs │ │ │ │ ├── IUISource.cs.meta │ │ │ │ ├── Margin.cs │ │ │ │ ├── Margin.cs.meta │ │ │ │ ├── PackageItem.cs │ │ │ │ ├── PackageItem.cs.meta │ │ │ │ ├── PageOption.cs │ │ │ │ ├── PageOption.cs.meta │ │ │ │ ├── PopupMenu.cs │ │ │ │ ├── PopupMenu.cs.meta │ │ │ │ ├── RelationItem.cs │ │ │ │ ├── RelationItem.cs.meta │ │ │ │ ├── Relations.cs │ │ │ │ ├── Relations.cs.meta │ │ │ │ ├── ScrollPane.cs │ │ │ │ ├── ScrollPane.cs.meta │ │ │ │ ├── Transition.cs │ │ │ │ ├── Transition.cs.meta │ │ │ │ ├── TranslationHelper.cs │ │ │ │ ├── TranslationHelper.cs.meta │ │ │ │ ├── Tree.meta │ │ │ │ ├── Tree │ │ │ │ │ ├── TreeNode.cs │ │ │ │ │ ├── TreeNode.cs.meta │ │ │ │ │ ├── TreeView.cs │ │ │ │ │ └── TreeView.cs.meta │ │ │ │ ├── UIConfig.cs │ │ │ │ ├── UIConfig.cs.meta │ │ │ │ ├── UIContentScaler.cs │ │ │ │ ├── UIContentScaler.cs.meta │ │ │ │ ├── UIObjectFactory.cs │ │ │ │ ├── UIObjectFactory.cs.meta │ │ │ │ ├── UIPackage.cs │ │ │ │ ├── UIPackage.cs.meta │ │ │ │ ├── UIPainter.cs │ │ │ │ ├── UIPainter.cs.meta │ │ │ │ ├── UIPanel.cs │ │ │ │ ├── UIPanel.cs.meta │ │ │ │ ├── Window.cs │ │ │ │ └── Window.cs.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ │ ├── ByteBuffer.cs │ │ │ │ ├── ByteBuffer.cs.meta │ │ │ │ ├── Html.meta │ │ │ │ ├── Html │ │ │ │ ├── HtmlButton.cs │ │ │ │ ├── HtmlButton.cs.meta │ │ │ │ ├── HtmlElement.cs │ │ │ │ ├── HtmlElement.cs.meta │ │ │ │ ├── HtmlImage.cs │ │ │ │ ├── HtmlImage.cs.meta │ │ │ │ ├── HtmlInput.cs │ │ │ │ ├── HtmlInput.cs.meta │ │ │ │ ├── HtmlLink.cs │ │ │ │ ├── HtmlLink.cs.meta │ │ │ │ ├── HtmlPageContext.cs │ │ │ │ ├── HtmlPageContext.cs.meta │ │ │ │ ├── HtmlParseOptions.cs │ │ │ │ ├── HtmlParseOptions.cs.meta │ │ │ │ ├── HtmlParser.cs │ │ │ │ ├── HtmlParser.cs.meta │ │ │ │ ├── HtmlSelect.cs │ │ │ │ ├── HtmlSelect.cs.meta │ │ │ │ ├── IHtmlObject.cs │ │ │ │ ├── IHtmlObject.cs.meta │ │ │ │ ├── IHtmlPageContext.cs │ │ │ │ └── IHtmlPageContext.cs.meta │ │ │ │ ├── Timers.cs │ │ │ │ ├── Timers.cs.meta │ │ │ │ ├── ToolSet.cs │ │ │ │ ├── ToolSet.cs.meta │ │ │ │ ├── UBBParser.cs │ │ │ │ ├── UBBParser.cs.meta │ │ │ │ ├── XML.cs │ │ │ │ ├── XML.cs.meta │ │ │ │ ├── XMLIterator.cs │ │ │ │ ├── XMLIterator.cs.meta │ │ │ │ ├── XMLList.cs │ │ │ │ ├── XMLList.cs.meta │ │ │ │ ├── XMLUtils.cs │ │ │ │ ├── XMLUtils.cs.meta │ │ │ │ ├── ZipReader.cs │ │ │ │ └── ZipReader.cs.meta │ │ │ ├── TweenUtils.cs │ │ │ └── TweenUtils.cs.meta │ │ ├── LoadingUI.cs │ │ ├── LoadingUI.cs.meta │ │ ├── LuaMgr.meta │ │ ├── LuaMgr │ │ ├── LuaMgr.cs │ │ └── LuaMgr.cs.meta │ │ ├── Net.meta │ │ ├── Net │ │ ├── Game.meta │ │ ├── Game │ │ │ ├── Action.meta │ │ │ ├── Action │ │ │ │ ├── BaseAction.cs │ │ │ │ └── BaseAction.cs.meta │ │ │ ├── ActionFactory.cs │ │ │ ├── ActionFactory.cs.meta │ │ │ ├── ActionParam.cs │ │ │ ├── ActionParam.cs.meta │ │ │ ├── ActionResult.cs │ │ │ ├── ActionResult.cs.meta │ │ │ ├── Behaviour.meta │ │ │ ├── Behaviour │ │ │ │ ├── ServerTest.cs │ │ │ │ └── ServerTest.cs.meta │ │ │ ├── CustomHeadFormater.cs │ │ │ ├── CustomHeadFormater.cs.meta │ │ │ ├── GameAction.cs │ │ │ ├── GameAction.cs.meta │ │ │ ├── GameServerMsg.cs │ │ │ ├── GameServerMsg.cs.meta │ │ │ ├── Net.cs │ │ │ └── Net.cs.meta │ │ ├── Pack.meta │ │ ├── Pack │ │ │ ├── ByteBuffer.cs │ │ │ ├── ByteBuffer.cs.meta │ │ │ ├── Converter.cs │ │ │ ├── Converter.cs.meta │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.dll.meta │ │ │ ├── sproto-cs.meta │ │ │ └── sproto-cs │ │ │ │ ├── package.cs │ │ │ │ ├── package.cs.meta │ │ │ │ ├── src.meta │ │ │ │ └── src │ │ │ │ ├── Package.cs │ │ │ │ ├── Package.cs.meta │ │ │ │ ├── ProtocolBase.cs │ │ │ │ ├── ProtocolBase.cs.meta │ │ │ │ ├── ProtocolFunctionDictionary.cs │ │ │ │ ├── ProtocolFunctionDictionary.cs.meta │ │ │ │ ├── SprotoPack.cs │ │ │ │ ├── SprotoPack.cs.meta │ │ │ │ ├── SprotoRpc.cs │ │ │ │ ├── SprotoRpc.cs.meta │ │ │ │ ├── SprotoStream.cs │ │ │ │ ├── SprotoStream.cs.meta │ │ │ │ ├── SprotoTypeBase.cs │ │ │ │ ├── SprotoTypeBase.cs.meta │ │ │ │ ├── SprotoTypeDeserialize.cs │ │ │ │ ├── SprotoTypeDeserialize.cs.meta │ │ │ │ ├── SprotoTypeFieldOP.cs │ │ │ │ ├── SprotoTypeFieldOP.cs.meta │ │ │ │ ├── SprotoTypeReader.cs │ │ │ │ ├── SprotoTypeReader.cs.meta │ │ │ │ ├── SprotoTypeSerialize.cs │ │ │ │ ├── SprotoTypeSerialize.cs.meta │ │ │ │ ├── SprotoTypeSize.cs │ │ │ │ └── SprotoTypeSize.cs.meta │ │ ├── Sockect.meta │ │ └── Sockect │ │ │ ├── DefaultHeadFormater.cs │ │ │ ├── DefaultHeadFormater.cs.meta │ │ │ ├── IHeadFormater.cs │ │ │ ├── IHeadFormater.cs.meta │ │ │ ├── IPv6SupportMidleware.cs │ │ │ ├── IPv6SupportMidleware.cs.meta │ │ │ ├── NetPackage.cs │ │ │ ├── NetPackage.cs.meta │ │ │ ├── NetReader.cs │ │ │ ├── NetReader.cs.meta │ │ │ ├── NetWriter.cs │ │ │ ├── NetWriter.cs.meta │ │ │ ├── NetworkType.cs │ │ │ ├── NetworkType.cs.meta │ │ │ ├── PackageHead.cs │ │ │ ├── PackageHead.cs.meta │ │ │ ├── SocketConnect.cs │ │ │ ├── SocketConnect.cs.meta │ │ │ ├── SocketPackage.cs │ │ │ └── SocketPackage.cs.meta │ │ ├── StateMachine.meta │ │ ├── StateMachine │ │ ├── IState.cs │ │ ├── IState.cs.meta │ │ ├── StateMachine.cs │ │ └── StateMachine.cs.meta │ │ ├── SupportLua.meta │ │ ├── SupportLua │ │ ├── YKSupportLua.cs │ │ └── YKSupportLua.cs.meta │ │ ├── Task.meta │ │ ├── Task │ │ ├── AsynTask.cs │ │ ├── AsynTask.cs.meta │ │ ├── DecompressionTask.cs │ │ ├── DecompressionTask.cs.meta │ │ ├── DownAPKTask.cs │ │ ├── DownAPKTask.cs.meta │ │ ├── DownLoadTask.cs │ │ ├── DownLoadTask.cs.meta │ │ ├── ParallelTask.cs │ │ ├── ParallelTask.cs.meta │ │ ├── Task.cs │ │ ├── Task.cs.meta │ │ ├── TaskBase.cs │ │ └── TaskBase.cs.meta │ │ ├── Util.meta │ │ ├── Util │ │ ├── ComUtil.cs │ │ ├── ComUtil.cs.meta │ │ ├── DragDropComManger.cs │ │ ├── DragDropComManger.cs.meta │ │ ├── FairyGUIGLoaderExtension.cs │ │ ├── FairyGUIGLoaderExtension.cs.meta │ │ ├── GameFlag.cs │ │ ├── GameFlag.cs.meta │ │ ├── Log.cs │ │ ├── Log.cs.meta │ │ ├── MD5Utils.cs │ │ ├── MD5Utils.cs.meta │ │ ├── MathUtilLite.cs │ │ ├── MathUtilLite.cs.meta │ │ ├── TimeDelay.cs │ │ └── TimeDelay.cs.meta │ │ ├── VerInfo.cs │ │ └── VerInfo.cs.meta ├── gmcs.rsp ├── gmcs.rsp.meta ├── smcs.rsp └── smcs.rsp.meta ├── FGUIProject ├── .objs │ ├── cache │ │ ├── f8f4e1n6 │ │ │ ├── 11aw60 │ │ │ ├── 11aw60.info │ │ │ ├── 11aw61 │ │ │ └── 11aw61.info │ │ └── ftu8dcw7 │ │ │ ├── 11aw60 │ │ │ ├── 11aw60.info │ │ │ ├── 11aw61 │ │ │ ├── 11aw61.info │ │ │ ├── 11aw62 │ │ │ └── 11aw62.info │ └── workspace.json ├── assets │ ├── Loading │ │ ├── Button1.xml │ │ ├── Start.xml │ │ └── package.xml │ └── Main │ │ ├── Extcom.xml │ │ ├── Main.xml │ │ └── package.xml ├── settings │ └── Publish.json └── test.fairy ├── LICENSE.TXT ├── Lua ├── .idea │ ├── Lua.iml │ ├── libraries │ │ ├── Assembly_CSharp.xml │ │ ├── UnityEngine.xml │ │ └── mscorlib.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── ToLua │ ├── Build.bat │ ├── Build.bat.meta │ ├── System.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 │ │ ├── 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 │ ├── tolua.lua │ ├── tolua.lua.meta │ ├── typeof.lua │ └── typeof.lua.meta └── YKFramwork │ ├── Core │ ├── LuaModeBase.lua │ ├── NetMgr.lua │ ├── SceneBaseLua.lua │ ├── WindowBase.lua │ ├── YK.lua │ └── class.lua │ ├── FGUI │ └── FairyGUI.lua │ ├── Game │ ├── Def │ │ ├── SceneName.lua │ │ └── WindNames.lua │ ├── SceneMgr │ │ └── TestLua.lua │ ├── ThreeEliminate │ │ ├── ThreeEliminateScene.lua │ │ └── ThreeEliminateWind.lua │ ├── Windows │ │ ├── TestWind.lua │ │ └── testwinddd.lua │ └── ext │ │ └── Test.lua │ └── Main.lua ├── LuaLib ├── Assembly-CSharp.zip ├── UnityEngine.zip └── mscorlib.zip ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── obj └── Debug │ ├── Assembly-CSharp-Editor.csproj.CoreCompileInputs.cache │ ├── Assembly-CSharp-Editor.csprojAssemblyReference.cache │ ├── Assembly-CSharp.csproj.CoreCompileInputs.cache │ ├── Assembly-CSharp.csprojAssemblyReference.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ └── build.force └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | /Library/ 2 | /Temp/ 3 | /Release/ 4 | /AB/ 5 | /.vs/ 6 | *.csproj 7 | *.sln -------------------------------------------------------------------------------- /.idea/.idea.U3dFrameworkTolua/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/.idea.U3dFrameworkTolua/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /1539426281699.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/1539426281699.png -------------------------------------------------------------------------------- /1539427520536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/1539427520536.png -------------------------------------------------------------------------------- /Assets/AB.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cebff98e869b8a1478afa8cf4672b4ee 3 | folderAsset: yes 4 | timeCreated: 1525493848 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AB/ThreeEliminate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa5525bd70d5edb42ad407faad43510f 3 | folderAsset: yes 4 | timeCreated: 1530192111 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AB/ThreeEliminate/MainPack.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7eaed90482f08e940894fca888a41f77 3 | folderAsset: yes 4 | timeCreated: 1536242109 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AB/ThreeEliminate/MainPack/ThreeEliminateFGUIPack/Main_fui.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/AB/ThreeEliminate/MainPack/ThreeEliminateFGUIPack/Main_fui.bytes -------------------------------------------------------------------------------- /Assets/AB/ThreeEliminate/MainPack/ThreeEliminateFGUIPack/Main_fui.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5419aa0430b0c484382192d2fd5cf443 3 | timeCreated: 1539369320 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AB/ThreeEliminate/loadingGroup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37add5e3f0315474c91b933562ce7ac1 3 | folderAsset: yes 4 | timeCreated: 1536242200 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AB/ThreeEliminate/loadingGroup/LoadScenePack/Loading_fui.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/AB/ThreeEliminate/loadingGroup/LoadScenePack/Loading_fui.bytes -------------------------------------------------------------------------------- /Assets/AB/ThreeEliminate/loadingGroup/LoadScenePack/Loading_fui.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1223ad7937006494781d54e1884fd9de 3 | timeCreated: 1539369196 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/AB/gamecfg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb012f400109d244e9be6f030f0880cd 3 | folderAsset: yes 4 | timeCreated: 1525493848 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/AB/gamecfg/defaultres.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bc859e784d154a4b962a1a961c53a66 3 | timeCreated: 1525493848 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Demigiant.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc405e5cda155c04eb2337bae5b51de0 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a8edc7b421059a4cbbed0e2701d5aef 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/DOTween.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34192c5e0d14aee43a0e86cc4823268a 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/DOTween.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTween/DOTween.dll -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/DOTween.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTween/DOTween.dll.mdb -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/DOTween.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f007001a22b3d24dae350342c4d19c8 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20edf55dff5423b4eaf0b00dcfeafec0 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor/DOTweenEditor.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e2c6224d345d9249acfa6e8ef40bb2d 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor/DOTweenEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTween/Editor/DOTweenEditor.dll -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f46310a8b0a8f04a92993c37c713243 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor/Imgs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ca9e85e313bda04c88f59ab1ee1eca3 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor/Imgs/Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTween/Editor/Imgs/Footer.png -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor/Imgs/Footer_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTween/Editor/Imgs/Footer_dark.png -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Editor/Imgs/Header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTween/Editor/Imgs/Header.jpg -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f6c59bc34a71c04fb78d5d600ca0fa1 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTween/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fccfc62abf2eb0a4db614853430894fd 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2120bd55e34179b43b0cd43302a38390 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro Examples/DOTweenAnimation_Advanced.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5f7a56d339da84449899ecf95fbe33d 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro Examples/DOTweenAnimation_Basics.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a2ad353325ffe64983c28d69a8738f5 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro Examples/DOTweenPath.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a351b59ca54a0bc4083c35844da13a61 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro Examples/Examples Assets/dotweenpro_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTweenPro Examples/Examples Assets/dotweenpro_logo.png -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b065599778f9b848b66d02ce6c2eabc 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/DOTweenPro.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db7d7ef84c388bc4fbc3835d31a15306 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/DOTweenPro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTweenPro/DOTweenPro.dll -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/DOTweenPro.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTweenPro/DOTweenPro.dll.mdb -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/DOTweenPro.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d719ed2e2c87eae4e8dd520e2df659c1 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 152b362405959f943865916b4069282a 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/Editor/DOTweenProEditor.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 753a4f4ed73b17143923101226957756 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll.mdb -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee3a420017f129443896310d9fab256b 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DOTweenPro/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa8f07903bf128e44a7d0b91a63dedab 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6faf9e955b77e4c49b544f17a9381aeb 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d1b41b8d6afd974c854953c783c0ccf 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/DemiLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/DemiLib.dll -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/DemiLib.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/DemiLib.dll.mdb -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/DemiLib.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 995cf2d9b4a41f840b3a41712e9b3bc0 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/DemiLib.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bf2564c9817bb34988453ae948954d2 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd9d81b78f7528f4f8b6aebdf5b754b4 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/DemiEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/DemiEditor.dll -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/DemiEditor.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/DemiEditor.dll.mdb -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/DemiEditor.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c20a7b4db3cd0a4a99bcf6218f92860 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/DemiEditor.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4a42b2e4e6f64d4ba01d35c5a3dafed 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef4445e4a2fb5254c99cda2b768f1f49 3 | folderAsset: yes 4 | timeCreated: 1535974846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/circle.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02_darkBorders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02_darkBorders.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty02.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmptyThick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmptyThick.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBorders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBorders.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBordersAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved_darkBordersAlpha.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_whiteBorderAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_whiteBorderAlpha.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png -------------------------------------------------------------------------------- /Assets/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db860dc7d36443b4b8168405de92dcac 3 | folderAsset: yes 4 | timeCreated: 1529992032 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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/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/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Plugins/Android/libs/armeabi-v7a/libtolua.so -------------------------------------------------------------------------------- /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/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Plugins/Android/libs/x86/libtolua.so -------------------------------------------------------------------------------- /Assets/Plugins/CString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Plugins/CString.dll -------------------------------------------------------------------------------- /Assets/Plugins/Debugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Plugins/Debugger.dll -------------------------------------------------------------------------------- /Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3f3ab55ec6f8fe4a8ad1581c66be646 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/BundleId.h: -------------------------------------------------------------------------------- 1 | @interface BundleId : NSObject 2 | 3 | +(NSString *)getIPv6 : (const char *)mHost :(const char *)mPort; 4 | 5 | @end -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libtolua.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Plugins/iOS/libtolua.a -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22990b789b0594c8785404a854b20a60 3 | folderAsset: yes 4 | timeCreated: 1497605579 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c70484778b37241228e041d528df2f81 3 | timeCreated: 1497605580 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bd8f6fa32a614c10b4789e20b57ff8f 3 | folderAsset: yes 4 | timeCreated: 1497605580 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/MacOS/tolua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Plugins/tolua.bundle/Contents/MacOS/tolua -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/MacOS/tolua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad2d3f39b17a4505951dcdc9ef15320 3 | timeCreated: 1497605580 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /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/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Plugins/x86/tolua.dll -------------------------------------------------------------------------------- /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/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Plugins/x86_64/tolua.dll -------------------------------------------------------------------------------- /Assets/Plugins/zlib.net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Plugins/zlib.net.dll -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd8e1d5eb9e1b304084f7c2f3f405509 3 | folderAsset: yes 4 | timeCreated: 1528980907 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/AssetCorrespondPath.txt: -------------------------------------------------------------------------------- 1 | AssetCorrespondPath| 2 | DOTweenSettings| 3 | -------------------------------------------------------------------------------- /Assets/Resources/AssetCorrespondPath.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c9c1d4af371d4a4685c5a44041bd7dd 3 | timeCreated: 1530106230 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Main.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Resources/Main.bytes -------------------------------------------------------------------------------- /Assets/Resources/Main.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b5b5fc44cdea1e49ba8b873a5f9f5e0 3 | timeCreated: 1535562763 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Main@atlas0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Resources/Main@atlas0.png -------------------------------------------------------------------------------- /Assets/Resources/Main@atlas_lqnx13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Resources/Main@atlas_lqnx13.png -------------------------------------------------------------------------------- /Assets/Resources/Main@sprites.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2311f1d3faea0ba49815924a2a957d76 3 | timeCreated: 1530192111 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae6c6ecb9d0fe354899a9bd67afcad80 3 | folderAsset: yes 4 | timeCreated: 1539424193 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scenes/main.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 116b6d13d169e3f419c8f979087546e1 3 | folderAsset: yes 4 | timeCreated: 1540393591 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scenes/main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d7c5485ca0e80c47949c8015da9e560 3 | timeCreated: 1525492644 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/main/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/Scenes/main/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aacbd1a4000de024f8b5667d948762db 3 | folderAsset: yes 4 | timeCreated: 1529992043 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Source/BaseGenerate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dc3fb71da485d941a6358f0ade26d09 3 | folderAsset: yes 4 | timeCreated: 1530009228 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Source/BaseGenerate/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/Source/Generate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d11ff354b27d7c4d9ef1bbd9b66b1f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/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/ToLua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb36e98be18ef584cb81d28938abdcb0 3 | folderAsset: yes 4 | timeCreated: 1529992076 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ToLua/BaseType.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 337508ffab1cff64bbf7476789c95d59 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/ToLua/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7714c4ebcd6e6474da6ec5df53bca350 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/ToLua/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d9fa950d6c449e42893b939877b4ec7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Editor/Custom.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4578c4927dc2d0d4c98531078d03c81c 3 | folderAsset: yes 4 | timeCreated: 1530006389 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ToLua/Editor/Extend.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdd2718c24fc3014d96c208f87886fe3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/ToLua/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 940a49ebae9b91b4fb0682c92d968933 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/01_HelloWorld.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79324a58d1dd94843a6e15fb4d77da66 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/01_HelloWorld/HelloWorld.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ce3f2dc80a0205428a5372f74800258 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/02_ScriptsFromFile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71ca7fe863de8dd4d8a6057d043df5e4 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.lua: -------------------------------------------------------------------------------- 1 | print("This is a script from a utf8 file") 2 | print("tolua: 你好! こんにちは! 안녕하세요!") 3 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbc95a40dca6ccf448ff2a7f1905e751 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e011b54a109dd1c43b5ed71ca3590a32 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/03_CallLuaFunction.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b90da095ffcaa34891335989ba05ddf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/03_CallLuaFunction/CallLuaFunction.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b95d9c7995843244812901527540c78 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/04_AccessingLuaVariables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b3a357bb0337ee438db20f82382e246 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/04_AccessingLuaVariables/AccessingLuaVariables.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b440f9ea3ca78884cbc8bd834a84ee54 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/05_LuaCoroutine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aab46dd051561242b5f1dd79f189a42 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/05_LuaCoroutine/LuaCoroutine.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 811fd4e3aec57234ea72e1ed44701a9c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/06_LuaCoroutine2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bf03102ccd94cb45afe01e02bf19184 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/06_LuaCoroutine2/Coroutine.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4db2739d8c3e5af4ca5647e7ded00f68 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/07_LuaThread.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34683a8c5207cb3438b3b06aa2ef38c8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/07_LuaThread/TestThread.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bc55bdc0d2bff34a9abc55c4eeebdc0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/08_AccessingArray.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d74fee3fd9c8cb64e8d8083fb944a9c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/08_AccessingArray/AccessingArray.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f3cdbddf148392458f85eed2085860c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/09_Dictionary.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d308146ac25b5a74d99ced6f74495105 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/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/ToLua/Examples/09_Dictionary/UseDictionary.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dc40f31458a9544aa74bcdad6d15d06 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/10_Enum.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbe9c6c5abd052b488c851260cc2cb92 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/10_Enum/AccessingEnum.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a217aecbea099fd4cbb21c9795f57884 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/11_Delegate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bafe37b805a5b274aaee648a0b64bcb2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/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/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/ToLua/Examples/11_Delegate/UseDelegate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c371c24024790e4fafc6efd6656ffa8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/12_GameObject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c05e0dc08239c724bba79944e7ccbcaa 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/12_GameObject/TestGameObject.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd44e2bbf67026a4eb7a12cc132f5515 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/13_CustomLoader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc9a6d7d2170ce43bfdcb7197628a9d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/13_CustomLoader/CustomLoader.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a15f71c3e8ada48bbf2dec47d8eb0d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/14_Out.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9762f66a6f78d843b27a77925f63e3f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/14_Out/TestOut.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1cff06827ae69d45ba691b5714e066d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/15_ProtoBuffer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cac1317b8ab1d3a438e2fa736a69d7fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/15_ProtoBuffer/ProtoBuffer.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a4304ba0253d9241b8bf736a8607df6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/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/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/ToLua/Examples/15_ProtoBuffer/common.proto: -------------------------------------------------------------------------------- 1 | 2 | message Header 3 | { 4 | required int64 cmd = 1; 5 | required int32 seq = 2; 6 | } -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/15_ProtoBuffer/person.proto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f84fe6c5b2078174bb56bed15abd687b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/16_Int64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56454d123fe4d2a47a2a1bf5e9a7399b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/16_Int64/TestInt64.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f5fdf9606a2d854590fcbd3926005e4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/17_Inherit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49da3d0eb205def459dc639d92b7cc77 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/17_Inherit/Inherit.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3cf1516f0a320b49a263c1fed026319 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/18_Bundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07aecff784dcab84393e4fad04c7b35d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/18_Bundle/TesetAssetBundle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 207ce505e47eb8542963d4972b45b05d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/19_cjson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c1a9e6cb95cdea4cbc97a336446abe8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/19_cjson/testcjson.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dbc965b474b6824db5cb79d380403e4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/20_utf8.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48896cd2daf4f4542ba776681732210a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/20_utf8/utf8.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74b6932cd0642734eb36e554528a9825 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/21_String.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7bfd51b922b87a4ba399b7f73540493 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/21_String/TestString.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e6bca3bb283b3247a8692ac6e03d4ff 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/22_Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1160a89e211090a4ea787fb5145cc984 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/22_Reflection/TestReflection.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c297fdd08a27a54a96505801547f7b2 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/23_List.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 665099d7241e1a54fb217e3b172e21a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/23_List/UseList.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4f35714ff91744489f71618b0ae9fd8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/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/ToLua/Examples/Performance.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f240c18ff8d4eb44390f8d949e2f6fbd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/Performance/Performance.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0693d19658479a642a7faaa61feb2c09 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9efe91d34eaff5a4ab3530e47ea50385 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd85633be4068ee4b8d8f4744a4a9386 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/Resources/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d26bf1a8a6d42954eb332fd9957140d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/Resources/Lua/Protol.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0882b1dfb9d5f9e408ec017206a4946a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/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/ToLua/Examples/Resources/Lua/TestErrorStack.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a540e20118516b1449b2bb6293d1030a 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/Resources/Lua/TestLoader.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d249a195df84a8e448b95867fdc844df 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/Resources/Lua/TestLuaCoroutine.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e90f8f033d17114297577d8cde2677e 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/Resources/Lua/TestPerf.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07657567fb0a4fe439b7e52f48d787e1 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/Resources/jsonexample.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d7edaf98b78bd84297bb888bf41ed02 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Examples/TestErrorStack.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00b15eee8aab8d64e844fc53ee7395de 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/TestErrorStack/TestInstantiate.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec8a2f7e4eaf1c64e8393014e602047c 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/TestErrorStack/TestInstantiate2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e472cc047eb20841bbb7c64dfeb0d78 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/ToLua/Examples/TestErrorStack/TestLuaStack.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 706020e5c3f37944995bfe00955fdd39 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/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/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/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/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/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/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/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/ToLua/Examples/TestOverload/TestOverload.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45830782541ee7a49b44eb5a02d7ecef 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Injection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb513010fb16d5d4199be09f3c2f60c4 3 | folderAsset: yes 4 | timeCreated: 1515031211 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/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/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/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/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/ToLua/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b3be0814bb45e640973aea4f6303a33 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/Build.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df27f3565c885a1419249346792d53b7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c23205cbb914d9943ba97091e50d9d34 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/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/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/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/ToLua/Lua/System/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b31921aad5a29bf48b69fbad423de1be 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/System/Reflection/BindingFlags.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 447334b96205b8040b534702d8d806c6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/System/Timer.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e891968e6d367cf4da81d8c24a52c358 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/System/ValueType.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab9e4d6fcf702740a4c66965903ed1f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/System/coroutine.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69692ffc56243fb4a8d655a208364fec 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec9654611f40bd64cb988c5f45494721 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Bounds.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8643f0e46fe222e48919766d7b0c7c5f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Color.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54770d2645593c347ac25713a6d332e3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/LayerMask.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08700fd491ce4cf4ba55fd9832b9f9cf 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Mathf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cfbc4fb807d4e444bd41df7de6c249e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Plane.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3971497c90061f4d9c0e9a99b5bbcbe 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Profiler.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37c51fa1e5d7c094f8620b364c731293 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Quaternion.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc8181e6244125146a87c5b83c380a92 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Ray.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 436d981c3546acd44a03048767c0d85a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/RaycastHit.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 707a4e1a225007d45923200abf2c9c13 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Time.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f2e1d9dee4ecaf4b8734c59f1c9f3b5 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Touch.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48ee0c1b8478eba4f9338e5ec4a14d40 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Vector2.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebac0a3bf4e463249a78081c5cc3abcf 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Vector3.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3697c841f98720444b380cc2756c17ea 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/UnityEngine/Vector4.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e294d4af7e55084dadac8ee7a76099d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/cjson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51fabff50886aea4ca5100ee3396939b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/cjson/util.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6b21c50e0c10c840bb4965a6b03fdc1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/event.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cb3ad8be0f474f4c997acf1b791b133 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/ToLua/Lua/list.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0d0ca55b7df3414aafaf11a39c13378 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/lpeg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58143f62c40fa4143903b5b1abc707fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/lpeg/re.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7e8b1ba4c06a4d4db879ad831cb62f1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/ltn12.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f6ae256ba8bd244692e687b1b0ece95 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/mime.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78de065ed4e50984eba196a41070d017 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08e54c61aaaa7c545b03c37c12e41df1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/misc/functions.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ad071edc48d0d8469028957a2df9c67 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/misc/strict.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4df6e3671aafc8e4d82fee6a2cf5948e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/misc/utf8.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7ac60fc5e653564588e60deb91863ee 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 588f81265fa730e41a5371957a46eb61 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf/containers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b091e6d28e2ea5b469fa0ef87c372f3a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf/decoder.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99e0d332d92e1c44ca56267a2b3bdcf9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf/descriptor.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec5270fc0e79e1140be77c303c4874c4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf/encoder.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59c27d5459f0dfc4ab1077ce6f391ea9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf/listener.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7778f4f6aeddbee43984c5da8cc06953 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf/protobuf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afc64cedbe4a843499e187d95d272f06 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf/text_format.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11ebbcbb210e532448bcc1440a557d8f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf/type_checkers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d553dac9a25c84c9c7d74608783a1b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/protobuf/wire_format.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ba9c90e50e89e4da2ee869851300a0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/slot.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5040eeedfb5e1bf4b8a5294bba19ca0b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/socket.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63c3bb6af007b6344af9a86ef0b7e225 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/socket.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d809aad390df7d54a95d719367731993 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/socket/ftp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d703a862f37cfb42a2937b6f2cc9df6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/socket/headers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62876db61c32bf6499db08ea59ccff1f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/socket/http.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 209e83764932d974287e82cda5febaf7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/socket/mbox.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b179323d673f3f04996fc0b22c0817bb 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/socket/smtp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fb16f8ece254ef4d9c196242b49a8ae 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/socket/tp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f81b525c8aa6ab6408db2989c91556cc 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/socket/url.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f52d8d21085d51c42b5e27aca557bcd9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/tolua.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dab8762e884a1c469dd11f6d2044a0f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Lua/typeof.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7edd4f2975d3f54f8396b61d8b34944 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/ToLua/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ec2002202db97649bcdffe1705c0bdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/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/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/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/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/ToLua/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcd2662a23826114e86e7828b55342b7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/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/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/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/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/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/ToLua/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c85b2c9de573bc54881ca0c2427016cd 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/YKFramwork.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3413cbdaa19ba642b4e9eea70486bae 3 | folderAsset: yes 4 | timeCreated: 1525492498 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5003f5aa5199b14393dd1d3f076439d 3 | folderAsset: yes 4 | timeCreated: 1525492664 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/AutoBuild.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 158b866692d418b4c85c32c39114c0cb 3 | folderAsset: yes 4 | timeCreated: 1479295140 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/AutoBuild/AndroidCfg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf6c7554e5726704e9a294c09ac0e843 3 | folderAsset: yes 4 | timeCreated: 1530090190 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/AutoBuild/Install.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37a241f5eba991049b3bb6a8dec2c646 3 | timeCreated: 1513225286 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/AutoBuild/Xcode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dd1b133483c70f45b90fb92ec29063b 3 | folderAsset: yes 4 | timeCreated: 1521079836 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/AutoBuild/Xcode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/YKFramwork/Editor/AutoBuild/Xcode.zip -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/AutoBuild/Xcode.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f97a94a81e2b9e43800ed16e889493d 3 | timeCreated: 1530194593 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/AutoBuild/XcodeProjectUpdater/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c04a3f3de8a840f8a30bd11d5871ea3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/BuildGameCfg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d91a1b0e3f5d6fd43aa977160e578d5e 3 | folderAsset: yes 4 | timeCreated: 1509960976 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/BuildGameRes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 169637fcfe8769e429c7dba5d336275c 3 | folderAsset: yes 4 | timeCreated: 1509955980 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/Custom.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5faa92ecda7d5454283ffb199d1bc960 3 | folderAsset: yes 4 | timeCreated: 1500382488 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/Custom/YKFramworkCustomSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d68e81cfa02de7e44a2ff558bdc3ac89 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/YKFramwork/Editor/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/LuaTemplate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad1170f70d3197444ab12347a2aaddd8 3 | folderAsset: yes 4 | timeCreated: 1500273029 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/LuaTemplate/Lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/YKFramwork/Editor/LuaTemplate/Lua.lua -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/LuaTemplate/Lua.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a18f2cb753bd444da60d65c4ad28175 3 | timeCreated: 1500273062 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/Proto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5236237568b39942a057c3b9a4a7d60 3 | folderAsset: yes 4 | timeCreated: 1528981645 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/ResMgr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b89f3bd057b9a04ebd80d1ad244f55a 3 | folderAsset: yes 4 | timeCreated: 1499774785 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Editor/SVN.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3dc92e20e44483449b3137b4fa352e5b 3 | folderAsset: yes 4 | timeCreated: 1528981408 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fe5a61344c897f409775f83939b6597 3 | folderAsset: yes 4 | timeCreated: 1528871749 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3aca3cdec408414da598de0e8baf038 3 | folderAsset: yes 4 | timeCreated: 1525492801 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5f9ac5a3ed6a6043bf5372ad19dcf37 3 | folderAsset: yes 4 | timeCreated: 1526627811 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Core/Event.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01465fccee268a449aea73b830a7522d 3 | folderAsset: yes 4 | timeCreated: 1526627748 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Core/ResMgr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34be11eca4189334597b69b86c2fdd28 3 | folderAsset: yes 4 | timeCreated: 1525493034 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Core/SceneMgr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fffec3de61848740b629c1a609cf3f7 3 | folderAsset: yes 4 | timeCreated: 1528885233 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Core/SounMgr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79770219acc968f439828796ec7b232a 3 | folderAsset: yes 4 | timeCreated: 1528980792 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Core/UIMgr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a412f1ef39057b74292d063a8b6f01e6 3 | folderAsset: yes 4 | timeCreated: 1528888608 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Def.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9007e3832b59574f8293715041977d9 3 | folderAsset: yes 4 | timeCreated: 1525492908 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/GameCfg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3985c7a377027e4c9d9e24dd9c899a0 3 | folderAsset: yes 4 | timeCreated: 1528863876 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/HotUpdataRes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dabd7e0fb4a23e4ba5937cf86791995 3 | folderAsset: yes 4 | timeCreated: 1527676666 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b238e59d07e2d174687f910e364c7674 3 | folderAsset: yes 4 | timeCreated: 1525493091 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f30ef948cf3fc947bb5b5ccb478bcf3 3 | folderAsset: yes 4 | timeCreated: 1525493117 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 624baec4d995ca445a76a9a7eef0e382 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Common/CRC.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f43e729a7c7dd7f4a81d55478d414a6f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Common/CommandLineParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6436a7661619e0348986c08a84d97d65 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Common/InBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64212b051e6e1584f8daf59c28fb7b8d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Common/OutBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31f50d9bc2b200c49a7236c9f5079416 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3defdbb20e367c14da4278ad4b54280f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LZ.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e412134fa031b96408bea4333814968f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LZ/IMatchFinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a3da9e830fd15b48bce521e58c91d49 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LZ/LzBinTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07da59435144f2d4d965d058e52c15bf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LZ/LzInWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1806dfd5bcd4dc498aeac32d1d5fac1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LZ/LzOutWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bafd6a46ad54ee4b822c94f15f575a1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LZMA.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c2030bd2d9117e43964ef14c311bcb1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LZMA/LzmaBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9bcf398966ef42408bd07d9a5007984 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LZMA/LzmaDecoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa538a1e99831e140a4c0677606a6a3b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LZMA/LzmaEncoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1173a4803d9e2334bb3f6333b4a0731b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LzmaAlone.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fe415b92c090304898e768cea248577 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LzmaAlone/LzmaAlone.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcbac28e64fd0c34dabbb294768d5c61 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LzmaAlone/LzmaBench.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd2f917548ebe6141b336d37eb03308a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/LzmaAlone/Properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8f313a08c9232640b570dd9c2feceb3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/RangeCoder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1151857a947f424f9bb53f045c91157 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/Compress/RangeCoder/RangeCoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f5ed32dd4cd3b443afe526b4c968b43 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/7zip/ICoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b6b97c6fcfc6734daec43276deb2828 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/ConsolePro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9b64b3757ad5cd498d8017463c3a387 3 | folderAsset: yes 4 | timeCreated: 1528888492 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/ConsolePro/Editor/ConsolePro.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/YKFramwork/Script/Libs/ConsolePro/Editor/ConsolePro.Editor.dll -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/ConsolePro/Readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ddabb1ad13bd4bdcbc3767854e046d3 3 | timeCreated: 1437114996 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Libs/FairyGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 929ccd07b8e17124ca8ad046fa605c2c 3 | folderAsset: yes 4 | timeCreated: 1526628094 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/LuaMgr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 364def8d147b4a34bab4afdcf3528f8b 3 | folderAsset: yes 4 | timeCreated: 1528979990 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Net.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aba486a3eaa69d946b71b44ffb0103d9 3 | folderAsset: yes 4 | timeCreated: 1528981805 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Net/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6598d8f5abe5e75488c713046a2eb72f 3 | folderAsset: yes 4 | timeCreated: 1500115914 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Net/Game/Action.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bff7840b1cc2d14e9412e8686e09216 3 | folderAsset: yes 4 | timeCreated: 1472307805 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Net/Pack.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7651f4ed6859d842b7107ae68b8682a 3 | folderAsset: yes 4 | timeCreated: 1528981927 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Net/Pack/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/Assets/YKFramwork/Script/Net/Pack/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Net/Sockect.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e18a3676649afc741b9f23c071e9db4a 3 | folderAsset: yes 4 | timeCreated: 1528981910 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Net/Sockect/NetworkType.cs: -------------------------------------------------------------------------------- 1 | public enum NetworkType 2 | { 3 | Http = 0, 4 | Socket = 1, 5 | } -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Net/Sockect/SocketPackage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public class SocketPackage : NetPackage 4 | { 5 | 6 | public int MsgId{set;get;} 7 | 8 | public bool HasLoading{set;get;} 9 | 10 | public DateTime SendTime{set;get;} 11 | } 12 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/StateMachine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d78cd5fff8a2704e9bb147d9f3214d2 3 | folderAsset: yes 4 | timeCreated: 1527676550 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/SupportLua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 437c7be947afd8a418e40660858a0630 3 | folderAsset: yes 4 | timeCreated: 1528984684 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Task.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a60c1687665138429abe73d577104ba 3 | folderAsset: yes 4 | timeCreated: 1527676556 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/YKFramwork/Script/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3235d20b03895cc40a0f381d421891d4 3 | folderAsset: yes 4 | timeCreated: 1526628165 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/gmcs.rsp: -------------------------------------------------------------------------------- 1 | -unsafe -------------------------------------------------------------------------------- /Assets/gmcs.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c41284c64f4d57479466d1352f4d5c5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/smcs.rsp: -------------------------------------------------------------------------------- 1 | -unsafe -------------------------------------------------------------------------------- /Assets/smcs.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f53920a454462f24dab4763732f037ae 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/f8f4e1n6/11aw60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/FGUIProject/.objs/cache/f8f4e1n6/11aw60 -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/f8f4e1n6/11aw60.info: -------------------------------------------------------------------------------- 1 | { 2 | "fileSize": 619, 3 | "timestamp": 1539367991909, 4 | "modificationDate": 1539369172185 5 | } -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/f8f4e1n6/11aw61: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/FGUIProject/.objs/cache/f8f4e1n6/11aw61 -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/f8f4e1n6/11aw61.info: -------------------------------------------------------------------------------- 1 | { 2 | "fileSize": 1198, 3 | "timestamp": 1539367991942, 4 | "modificationDate": 1539368508480 5 | } -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/ftu8dcw7/11aw60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/FGUIProject/.objs/cache/ftu8dcw7/11aw60 -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/ftu8dcw7/11aw60.info: -------------------------------------------------------------------------------- 1 | { 2 | "fileSize": 392, 3 | "timestamp": 1539367991914, 4 | "modificationDate": 1539369072009 5 | } -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/ftu8dcw7/11aw61: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/FGUIProject/.objs/cache/ftu8dcw7/11aw61 -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/ftu8dcw7/11aw61.info: -------------------------------------------------------------------------------- 1 | { 2 | "fileSize": 335, 3 | "timestamp": 1539367991904, 4 | "modificationDate": 1539368688239 5 | } -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/ftu8dcw7/11aw62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/FGUIProject/.objs/cache/ftu8dcw7/11aw62 -------------------------------------------------------------------------------- /FGUIProject/.objs/cache/ftu8dcw7/11aw62.info: -------------------------------------------------------------------------------- 1 | { 2 | "fileSize": 717, 3 | "timestamp": 1539367991904, 4 | "modificationDate": 1539369418049 5 | } -------------------------------------------------------------------------------- /FGUIProject/test.fairy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Lua/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /Lua/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Lua/ToLua/Build.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df27f3565c885a1419249346792d53b7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c23205cbb914d9943ba97091e50d9d34 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/System/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b31921aad5a29bf48b69fbad423de1be 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lua/ToLua/System/Reflection/BindingFlags.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 447334b96205b8040b534702d8d806c6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/System/Timer.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e891968e6d367cf4da81d8c24a52c358 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/System/ValueType.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab9e4d6fcf702740a4c66965903ed1f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/System/coroutine.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69692ffc56243fb4a8d655a208364fec 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec9654611f40bd64cb988c5f45494721 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Bounds.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8643f0e46fe222e48919766d7b0c7c5f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Color.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54770d2645593c347ac25713a6d332e3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/LayerMask.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08700fd491ce4cf4ba55fd9832b9f9cf 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Mathf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cfbc4fb807d4e444bd41df7de6c249e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Plane.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3971497c90061f4d9c0e9a99b5bbcbe 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Profiler.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37c51fa1e5d7c094f8620b364c731293 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Quaternion.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc8181e6244125146a87c5b83c380a92 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Ray.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 436d981c3546acd44a03048767c0d85a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/RaycastHit.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 707a4e1a225007d45923200abf2c9c13 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Time.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f2e1d9dee4ecaf4b8734c59f1c9f3b5 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Touch.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48ee0c1b8478eba4f9338e5ec4a14d40 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Vector2.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebac0a3bf4e463249a78081c5cc3abcf 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Vector3.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3697c841f98720444b380cc2756c17ea 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/UnityEngine/Vector4.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e294d4af7e55084dadac8ee7a76099d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/cjson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51fabff50886aea4ca5100ee3396939b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lua/ToLua/cjson/util.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6b21c50e0c10c840bb4965a6b03fdc1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/event.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cb3ad8be0f474f4c997acf1b791b133 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/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 | -------------------------------------------------------------------------------- /Lua/ToLua/list.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0d0ca55b7df3414aafaf11a39c13378 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/lpeg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58143f62c40fa4143903b5b1abc707fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lua/ToLua/lpeg/re.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7e8b1ba4c06a4d4db879ad831cb62f1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/ltn12.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f6ae256ba8bd244692e687b1b0ece95 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/mime.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78de065ed4e50984eba196a41070d017 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08e54c61aaaa7c545b03c37c12e41df1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lua/ToLua/misc/functions.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ad071edc48d0d8469028957a2df9c67 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/misc/strict.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4df6e3671aafc8e4d82fee6a2cf5948e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/misc/utf8.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7ac60fc5e653564588e60deb91863ee 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 588f81265fa730e41a5371957a46eb61 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf/containers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b091e6d28e2ea5b469fa0ef87c372f3a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf/decoder.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99e0d332d92e1c44ca56267a2b3bdcf9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf/descriptor.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec5270fc0e79e1140be77c303c4874c4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf/encoder.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59c27d5459f0dfc4ab1077ce6f391ea9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf/listener.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7778f4f6aeddbee43984c5da8cc06953 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf/protobuf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afc64cedbe4a843499e187d95d272f06 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf/text_format.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11ebbcbb210e532448bcc1440a557d8f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf/type_checkers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d553dac9a25c84c9c7d74608783a1b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/protobuf/wire_format.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ba9c90e50e89e4da2ee869851300a0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/slot.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5040eeedfb5e1bf4b8a5294bba19ca0b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/socket.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63c3bb6af007b6344af9a86ef0b7e225 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/socket.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d809aad390df7d54a95d719367731993 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Lua/ToLua/socket/ftp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d703a862f37cfb42a2937b6f2cc9df6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/socket/headers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62876db61c32bf6499db08ea59ccff1f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/socket/http.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 209e83764932d974287e82cda5febaf7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/socket/mbox.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b179323d673f3f04996fc0b22c0817bb 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/socket/smtp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fb16f8ece254ef4d9c196242b49a8ae 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/socket/tp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f81b525c8aa6ab6408db2989c91556cc 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/socket/url.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f52d8d21085d51c42b5e27aca557bcd9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/tolua.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dab8762e884a1c469dd11f6d2044a0f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/ToLua/typeof.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7edd4f2975d3f54f8396b61d8b34944 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Lua/YKFramwork/Game/Def/SceneName.lua: -------------------------------------------------------------------------------- 1 | --- 2 | --- Generated by EmmyLua(https://github.com/EmmyLua) 3 | --- Created by Administrator. 4 | --- DateTime: 2018/6/28 15:36 5 | --- 6 | 7 | local this = {} 8 | this.ThreeEliminateScene = "ThreeEliminateScene" 9 | return this -------------------------------------------------------------------------------- /LuaLib/Assembly-CSharp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/LuaLib/Assembly-CSharp.zip -------------------------------------------------------------------------------- /LuaLib/UnityEngine.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/LuaLib/UnityEngine.zip -------------------------------------------------------------------------------- /LuaLib/mscorlib.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/LuaLib/mscorlib.zip -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /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/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.2.14f1 2 | -------------------------------------------------------------------------------- /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: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp-Editor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6ab5e73439275a4c86044f3e416766d25e9aa4ce 2 | -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp-Editor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/obj/Debug/Assembly-CSharp-Editor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4ac9092d58d28305d07e2b38f587eeda67369a00 2 | -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/obj/Debug/Assembly-CSharp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Debug/build.force: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheenli/U3dFrameworkTolua/ac9ec0e53191d341d470d6f1170615c2179de38e/obj/Debug/build.force --------------------------------------------------------------------------------