├── Assets ├── LuaFramework.meta ├── LuaFramework │ ├── Editor.meta │ ├── Editor │ │ ├── CustomSettings.cs │ │ ├── CustomSettings.cs.meta │ │ ├── Packager.cs │ │ └── Packager.cs.meta │ ├── Examples.meta │ ├── Examples │ │ ├── Builds.meta │ │ ├── Builds │ │ │ ├── Message.meta │ │ │ ├── Message │ │ │ │ ├── Prefabs.meta │ │ │ │ └── Prefabs │ │ │ │ │ ├── MessagePanel.prefab │ │ │ │ │ └── MessagePanel.prefab.meta │ │ │ ├── Prompt.meta │ │ │ ├── Prompt │ │ │ │ ├── Atlas.meta │ │ │ │ ├── Atlas │ │ │ │ │ ├── Prompt.Atlas.prefab │ │ │ │ │ ├── Prompt.Atlas.prefab.meta │ │ │ │ │ ├── Prompt.Material.mat │ │ │ │ │ ├── Prompt.Material.mat.meta │ │ │ │ │ ├── Prompt.Texture.png │ │ │ │ │ └── Prompt.Texture.png.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ └── Prefabs │ │ │ │ │ ├── PromptItem.prefab │ │ │ │ │ ├── PromptItem.prefab.meta │ │ │ │ │ ├── PromptPanel.prefab │ │ │ │ │ └── PromptPanel.prefab.meta │ │ │ ├── Shared.meta │ │ │ └── Shared │ │ │ │ ├── Atlas.meta │ │ │ │ └── Atlas │ │ │ │ ├── Dialog.mat │ │ │ │ ├── Dialog.mat.meta │ │ │ │ ├── Dialog.png │ │ │ │ ├── Dialog.png.meta │ │ │ │ ├── Dialog.prefab │ │ │ │ └── Dialog.prefab.meta │ │ ├── Editor Default Resources.meta │ │ ├── Editor Default Resources │ │ │ ├── WelcomeScreenContactIcon.png │ │ │ ├── WelcomeScreenContactIcon.png.meta │ │ │ ├── WelcomeScreenDocumentationIcon.png │ │ │ ├── WelcomeScreenDocumentationIcon.png.meta │ │ │ ├── WelcomeScreenForumIcon.png │ │ │ ├── WelcomeScreenForumIcon.png.meta │ │ │ ├── WelcomeScreenHeader.png │ │ │ ├── WelcomeScreenHeader.png.meta │ │ │ ├── WelcomeScreenSamplesIcon.png │ │ │ ├── WelcomeScreenSamplesIcon.png.meta │ │ │ ├── WelcomeScreenVideosIcon.png │ │ │ └── WelcomeScreenVideosIcon.png.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── WelcomeScreen.cs │ │ │ └── WelcomeScreen.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── .DS_Store │ │ │ ├── GUI.prefab │ │ │ └── GUI.prefab.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── Dialog.meta │ │ │ ├── Dialog │ │ │ ├── ButtonClick.png │ │ │ ├── ButtonClick.png.meta │ │ │ ├── ButtonDisable.png │ │ │ ├── ButtonDisable.png.meta │ │ │ ├── ButtonNormal.png │ │ │ ├── ButtonNormal.png.meta │ │ │ ├── SmallBaseMap.png │ │ │ └── SmallBaseMap.png.meta │ │ │ ├── Prompt.meta │ │ │ └── Prompt │ │ │ ├── 1.png │ │ │ └── 1.png.meta │ ├── Lua.meta │ ├── Lua │ │ ├── 3rd.meta │ │ ├── 3rd │ │ │ ├── cjson.meta │ │ │ ├── cjson │ │ │ │ ├── example1.json │ │ │ │ ├── example1.json.meta │ │ │ │ ├── example2.json │ │ │ │ ├── example2.json.meta │ │ │ │ ├── example3.json │ │ │ │ ├── example3.json.meta │ │ │ │ ├── example4.json │ │ │ │ ├── example4.json.meta │ │ │ │ ├── example5.json │ │ │ │ ├── example5.json.meta │ │ │ │ ├── json2lua.lua │ │ │ │ ├── json2lua.lua.meta │ │ │ │ ├── lua2json.lua │ │ │ │ ├── lua2json.lua.meta │ │ │ │ ├── test.lua │ │ │ │ ├── test.lua.meta │ │ │ │ ├── util.lua │ │ │ │ └── util.lua.meta │ │ │ ├── luabitop.meta │ │ │ ├── luabitop │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.meta │ │ │ │ ├── Makefile.mingw │ │ │ │ ├── Makefile.mingw.meta │ │ │ │ ├── README │ │ │ │ ├── README.meta │ │ │ │ ├── bitbench.lua │ │ │ │ ├── bitbench.lua.meta │ │ │ │ ├── bittest.lua │ │ │ │ ├── bittest.lua.meta │ │ │ │ ├── doc.meta │ │ │ │ ├── doc │ │ │ │ │ ├── api.html │ │ │ │ │ ├── api.html.meta │ │ │ │ │ ├── bluequad-print.css │ │ │ │ │ ├── bluequad-print.css.meta │ │ │ │ │ ├── bluequad.css │ │ │ │ │ ├── bluequad.css.meta │ │ │ │ │ ├── changes.html │ │ │ │ │ ├── changes.html.meta │ │ │ │ │ ├── contact.html │ │ │ │ │ ├── contact.html.meta │ │ │ │ │ ├── img.meta │ │ │ │ │ ├── img │ │ │ │ │ │ ├── contact.png │ │ │ │ │ │ └── contact.png.meta │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.html.meta │ │ │ │ │ ├── install.html │ │ │ │ │ ├── install.html.meta │ │ │ │ │ ├── semantics.html │ │ │ │ │ └── semantics.html.meta │ │ │ │ ├── installpath.lua │ │ │ │ ├── installpath.lua.meta │ │ │ │ ├── md5test.lua │ │ │ │ ├── md5test.lua.meta │ │ │ │ ├── msvcbuild.bat │ │ │ │ ├── msvcbuild.bat.meta │ │ │ │ ├── msvctest.bat │ │ │ │ ├── msvctest.bat.meta │ │ │ │ ├── nsievebits.lua │ │ │ │ └── nsievebits.lua.meta │ │ │ ├── pbc.meta │ │ │ ├── pbc │ │ │ │ ├── addressbook.pb │ │ │ │ ├── addressbook.pb.meta │ │ │ │ ├── addressbook.proto │ │ │ │ ├── addressbook.proto.meta │ │ │ │ ├── parser.lua │ │ │ │ ├── parser.lua.meta │ │ │ │ ├── protobuf.lua │ │ │ │ ├── protobuf.lua.meta │ │ │ │ ├── test.lua │ │ │ │ ├── test.lua.meta │ │ │ │ ├── test2.lua │ │ │ │ ├── test2.lua.meta │ │ │ │ ├── testparser.lua │ │ │ │ └── testparser.lua.meta │ │ │ ├── pblua.meta │ │ │ ├── pblua │ │ │ │ ├── login.proto │ │ │ │ ├── login.proto.meta │ │ │ │ ├── login_pb.lua │ │ │ │ ├── login_pb.lua.meta │ │ │ │ ├── person_pb.lua │ │ │ │ └── person_pb.lua.meta │ │ │ ├── sproto.meta │ │ │ └── sproto │ │ │ │ ├── print_r.lua │ │ │ │ ├── print_r.lua.meta │ │ │ │ ├── sproto.lua │ │ │ │ ├── sproto.lua.meta │ │ │ │ ├── sprotoparser.lua │ │ │ │ ├── sprotoparser.lua.meta │ │ │ │ ├── test.lua │ │ │ │ ├── test.lua.meta │ │ │ │ ├── testall.lua │ │ │ │ ├── testall.lua.meta │ │ │ │ ├── testrpc.lua │ │ │ │ └── testrpc.lua.meta │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── define.lua │ │ │ ├── define.lua.meta │ │ │ ├── functions.lua │ │ │ ├── functions.lua.meta │ │ │ ├── protocal.lua │ │ │ └── protocal.lua.meta │ │ ├── Controller.meta │ │ ├── Controller │ │ │ ├── MessageCtrl.lua │ │ │ ├── MessageCtrl.lua.meta │ │ │ ├── PromptCtrl.lua │ │ │ └── PromptCtrl.lua.meta │ │ ├── Logic.meta │ │ ├── Logic │ │ │ ├── CtrlManager.lua │ │ │ ├── CtrlManager.lua.meta │ │ │ ├── Game.lua │ │ │ ├── Game.lua.meta │ │ │ ├── LuaClass.lua │ │ │ ├── LuaClass.lua.meta │ │ │ ├── Network.lua │ │ │ └── Network.lua.meta │ │ ├── Main.lua │ │ ├── Main.lua.meta │ │ ├── View.meta │ │ ├── View │ │ │ ├── MessagePanel.lua │ │ │ ├── MessagePanel.lua.meta │ │ │ ├── PromptPanel.lua │ │ │ └── PromptPanel.lua.meta │ │ ├── eventlib.lua │ │ ├── eventlib.lua.meta │ │ ├── events.lua │ │ └── events.lua.meta │ ├── Luajit.meta │ ├── Luajit │ │ ├── Build.bat │ │ ├── Build.bat.meta │ │ ├── jit.meta │ │ ├── jit │ │ │ ├── bc.lua │ │ │ ├── bc.lua.meta │ │ │ ├── bcsave.lua │ │ │ ├── bcsave.lua.meta │ │ │ ├── dis_arm.lua │ │ │ ├── dis_arm.lua.meta │ │ │ ├── dis_mips.lua │ │ │ ├── dis_mips.lua.meta │ │ │ ├── dis_mipsel.lua │ │ │ ├── dis_mipsel.lua.meta │ │ │ ├── dis_ppc.lua │ │ │ ├── dis_ppc.lua.meta │ │ │ ├── dis_x64.lua │ │ │ ├── dis_x64.lua.meta │ │ │ ├── dis_x86.lua │ │ │ ├── dis_x86.lua.meta │ │ │ ├── dump.lua │ │ │ ├── dump.lua.meta │ │ │ ├── v.lua │ │ │ ├── v.lua.meta │ │ │ ├── vmdef.lua │ │ │ └── vmdef.lua.meta │ │ ├── lua51.dll │ │ ├── lua51.dll.meta │ │ ├── luajit.exe │ │ └── luajit.exe.meta │ ├── NGUI.meta │ ├── NGUI │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── FreeType.dll │ │ │ ├── FreeType.dll.meta │ │ │ ├── FreeType.dylib │ │ │ ├── FreeType.dylib.meta │ │ │ ├── FreeType64.dll │ │ │ ├── FreeType64.dll.meta │ │ │ ├── Preview.meta │ │ │ └── Preview │ │ │ │ ├── Control - Background.png │ │ │ │ ├── Control - Background.png.meta │ │ │ │ ├── Control - Colored Button.png │ │ │ │ ├── Control - Colored Button.png.meta │ │ │ │ ├── Control - Colored Checkbox.png │ │ │ │ ├── Control - Colored Checkbox.png.meta │ │ │ │ ├── Control - Colored Horizontal Scroll Bar.png │ │ │ │ ├── Control - Colored Horizontal Scroll Bar.png.meta │ │ │ │ ├── Control - Colored Popup List.png │ │ │ │ ├── Control - Colored Popup List.png.meta │ │ │ │ ├── Control - Colored Progress Bar.png │ │ │ │ ├── Control - Colored Progress Bar.png.meta │ │ │ │ ├── Control - Colored Slider.png │ │ │ │ ├── Control - Colored Slider.png.meta │ │ │ │ ├── Control - Colored Vertical Scroll Bar.png │ │ │ │ ├── Control - Colored Vertical Scroll Bar.png.meta │ │ │ │ ├── Control - Simple Button.png │ │ │ │ ├── Control - Simple Button.png.meta │ │ │ │ ├── Control - Simple Checkbox.png │ │ │ │ ├── Control - Simple Checkbox.png.meta │ │ │ │ ├── Control - Simple Horizontal Scroll Bar.png │ │ │ │ ├── Control - Simple Horizontal Scroll Bar.png.meta │ │ │ │ ├── Control - Simple Horizontal Slider.png │ │ │ │ ├── Control - Simple Horizontal Slider.png.meta │ │ │ │ ├── Control - Simple Input Field.png │ │ │ │ ├── Control - Simple Input Field.png.meta │ │ │ │ ├── Control - Simple Popup List.png │ │ │ │ ├── Control - Simple Popup List.png.meta │ │ │ │ ├── Control - Simple Progress Bar.png │ │ │ │ ├── Control - Simple Progress Bar.png.meta │ │ │ │ ├── Control - Simple Text Box.png │ │ │ │ ├── Control - Simple Text Box.png.meta │ │ │ │ ├── Control - Simple Vertical Scroll Bar.png │ │ │ │ ├── Control - Simple Vertical Scroll Bar.png.meta │ │ │ │ ├── Control - Simple Vertical Slider.png │ │ │ │ └── Control - Simple Vertical Slider.png.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── Animations.meta │ │ │ ├── Animations │ │ │ │ ├── Button.anim │ │ │ │ ├── Button.anim.meta │ │ │ │ ├── Checkmark.anim │ │ │ │ ├── Checkmark.anim.meta │ │ │ │ ├── Logo.anim │ │ │ │ ├── Logo.anim.meta │ │ │ │ ├── Window - Back.anim │ │ │ │ ├── Window - Back.anim.meta │ │ │ │ ├── Window - Forward.anim │ │ │ │ └── Window - Forward.anim.meta │ │ │ ├── Atlases.meta │ │ │ ├── Atlases │ │ │ │ ├── Fantasy.meta │ │ │ │ ├── Fantasy │ │ │ │ │ ├── Fantasy Atlas.mat │ │ │ │ │ ├── Fantasy Atlas.mat.meta │ │ │ │ │ ├── Fantasy Atlas.prefab │ │ │ │ │ ├── Fantasy Atlas.prefab.meta │ │ │ │ │ ├── Fantasy Atlas.psd │ │ │ │ │ ├── Fantasy Atlas.psd.meta │ │ │ │ │ ├── Fantasy Font - Normal.prefab │ │ │ │ │ ├── Fantasy Font - Normal.prefab.meta │ │ │ │ │ ├── Fantasy Font - Normal.txt │ │ │ │ │ └── Fantasy Font - Normal.txt.meta │ │ │ │ ├── Refractive.meta │ │ │ │ ├── Refractive │ │ │ │ │ ├── Refractive Atlas - Bump.psd │ │ │ │ │ ├── Refractive Atlas - Bump.psd.meta │ │ │ │ │ ├── Refractive Atlas - Masks.psd │ │ │ │ │ ├── Refractive Atlas - Masks.psd.meta │ │ │ │ │ ├── Refractive Atlas.mat │ │ │ │ │ ├── Refractive Atlas.mat.meta │ │ │ │ │ ├── Refractive Atlas.prefab │ │ │ │ │ ├── Refractive Atlas.prefab.meta │ │ │ │ │ ├── Refractive Atlas.psd │ │ │ │ │ ├── Refractive Atlas.psd.meta │ │ │ │ │ ├── Refractive Font - Header.prefab │ │ │ │ │ ├── Refractive Font - Header.prefab.meta │ │ │ │ │ ├── Refractive Font - Header.txt │ │ │ │ │ ├── Refractive Font - Header.txt.meta │ │ │ │ │ ├── Refractive Font - Normal.prefab │ │ │ │ │ ├── Refractive Font - Normal.prefab.meta │ │ │ │ │ ├── Refractive Font - Normal.txt │ │ │ │ │ └── Refractive Font - Normal.txt.meta │ │ │ │ ├── SciFi.meta │ │ │ │ ├── SciFi │ │ │ │ │ ├── SciFi Atlas.mat │ │ │ │ │ ├── SciFi Atlas.mat.meta │ │ │ │ │ ├── SciFi Atlas.prefab │ │ │ │ │ ├── SciFi Atlas.prefab.meta │ │ │ │ │ ├── SciFi Atlas.psd │ │ │ │ │ ├── SciFi Atlas.psd.meta │ │ │ │ │ ├── SciFi Font - Header.prefab │ │ │ │ │ ├── SciFi Font - Header.prefab.meta │ │ │ │ │ ├── SciFi Font - Header.txt │ │ │ │ │ ├── SciFi Font - Header.txt.meta │ │ │ │ │ ├── SciFi Font - Normal.prefab │ │ │ │ │ ├── SciFi Font - Normal.prefab.meta │ │ │ │ │ ├── SciFi Font - Normal.txt │ │ │ │ │ └── SciFi Font - Normal.txt.meta │ │ │ │ ├── Wooden.meta │ │ │ │ └── Wooden │ │ │ │ │ ├── Arimo14.prefab │ │ │ │ │ ├── Arimo14.prefab.meta │ │ │ │ │ ├── Arimo14.tga │ │ │ │ │ ├── Arimo14.tga.meta │ │ │ │ │ ├── Arimo14.txt │ │ │ │ │ ├── Arimo14.txt.meta │ │ │ │ │ ├── Arimo18.prefab │ │ │ │ │ ├── Arimo18.prefab.meta │ │ │ │ │ ├── Arimo18.tga │ │ │ │ │ ├── Arimo18.tga.meta │ │ │ │ │ ├── Arimo18.txt │ │ │ │ │ ├── Arimo18.txt.meta │ │ │ │ │ ├── Arimo20.prefab │ │ │ │ │ ├── Arimo20.prefab.meta │ │ │ │ │ ├── Arimo20.tga │ │ │ │ │ ├── Arimo20.tga.meta │ │ │ │ │ ├── Arimo20.txt │ │ │ │ │ ├── Arimo20.txt.meta │ │ │ │ │ ├── Coalition.prefab │ │ │ │ │ ├── Coalition.prefab.meta │ │ │ │ │ ├── Control - Background.prefab │ │ │ │ │ ├── Control - Background.prefab.meta │ │ │ │ │ ├── Control - Colored Button.prefab │ │ │ │ │ ├── Control - Colored Button.prefab.meta │ │ │ │ │ ├── Control - Colored Checkbox.prefab │ │ │ │ │ ├── Control - Colored Checkbox.prefab.meta │ │ │ │ │ ├── Control - Colored Horizontal Scroll Bar.prefab │ │ │ │ │ ├── Control - Colored Horizontal Scroll Bar.prefab.meta │ │ │ │ │ ├── Control - Colored Popup List.prefab │ │ │ │ │ ├── Control - Colored Popup List.prefab.meta │ │ │ │ │ ├── Control - Colored Progress Bar.prefab │ │ │ │ │ ├── Control - Colored Progress Bar.prefab.meta │ │ │ │ │ ├── Control - Colored Slider.prefab │ │ │ │ │ ├── Control - Colored Slider.prefab.meta │ │ │ │ │ ├── Control - Colored Vertical Scroll Bar.prefab │ │ │ │ │ ├── Control - Colored Vertical Scroll Bar.prefab.meta │ │ │ │ │ ├── Control - Simple Button.prefab │ │ │ │ │ ├── Control - Simple Button.prefab.meta │ │ │ │ │ ├── Control - Simple Checkbox.prefab │ │ │ │ │ ├── Control - Simple Checkbox.prefab.meta │ │ │ │ │ ├── Control - Simple Horizontal Scroll Bar.prefab │ │ │ │ │ ├── Control - Simple Horizontal Scroll Bar.prefab.meta │ │ │ │ │ ├── Control - Simple Horizontal Slider.prefab │ │ │ │ │ ├── Control - Simple Horizontal Slider.prefab.meta │ │ │ │ │ ├── Control - Simple Input Field.prefab │ │ │ │ │ ├── Control - Simple Input Field.prefab.meta │ │ │ │ │ ├── Control - Simple Popup List.prefab │ │ │ │ │ ├── Control - Simple Popup List.prefab.meta │ │ │ │ │ ├── Control - Simple Progress Bar.prefab │ │ │ │ │ ├── Control - Simple Progress Bar.prefab.meta │ │ │ │ │ ├── Control - Simple Text Box.prefab │ │ │ │ │ ├── Control - Simple Text Box.prefab.meta │ │ │ │ │ ├── Control - Simple Vertical Scroll Bar.prefab │ │ │ │ │ ├── Control - Simple Vertical Scroll Bar.prefab.meta │ │ │ │ │ ├── Control - Simple Vertical Slider.prefab │ │ │ │ │ ├── Control - Simple Vertical Slider.prefab.meta │ │ │ │ │ ├── Wooden Atlas.mat │ │ │ │ │ ├── Wooden Atlas.mat.meta │ │ │ │ │ ├── Wooden Atlas.png │ │ │ │ │ ├── Wooden Atlas.png.meta │ │ │ │ │ ├── Wooden Atlas.prefab │ │ │ │ │ └── Wooden Atlas.prefab.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Backdrop.mat │ │ │ │ ├── Backdrop.mat.meta │ │ │ │ ├── brick.mat │ │ │ │ ├── brick.mat.meta │ │ │ │ ├── burlap.mat │ │ │ │ ├── burlap.mat.meta │ │ │ │ ├── sand.mat │ │ │ │ └── sand.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Orc Armor.meta │ │ │ │ ├── Orc Armor │ │ │ │ │ ├── Bracers.FBX │ │ │ │ │ ├── Bracers.FBX.meta │ │ │ │ │ ├── Orc Armor (Diffuse).psd │ │ │ │ │ ├── Orc Armor (Diffuse).psd.meta │ │ │ │ │ ├── Orc Armor (Maps).png │ │ │ │ │ ├── Orc Armor (Maps).png.meta │ │ │ │ │ ├── Orc Armor (Normal).png │ │ │ │ │ ├── Orc Armor (Normal).png.meta │ │ │ │ │ ├── Orc Armor.mat │ │ │ │ │ ├── Orc Armor.mat.meta │ │ │ │ │ ├── Orc Armor.shader │ │ │ │ │ ├── Orc Armor.shader.meta │ │ │ │ │ ├── Orc Bracers.prefab │ │ │ │ │ ├── Orc Bracers.prefab.meta │ │ │ │ │ ├── Orc Shoulders.prefab │ │ │ │ │ ├── Orc Shoulders.prefab.meta │ │ │ │ │ ├── Shoulders.FBX │ │ │ │ │ └── Shoulders.FBX.meta │ │ │ │ ├── Orc.meta │ │ │ │ └── Orc │ │ │ │ │ ├── FBX.FBX │ │ │ │ │ ├── FBX.FBX.meta │ │ │ │ │ ├── FBX@idle.FBX │ │ │ │ │ ├── FBX@idle.FBX.meta │ │ │ │ │ ├── FBX@idleBreaks.FBX │ │ │ │ │ ├── FBX@idleBreaks.FBX.meta │ │ │ │ │ ├── Orc Skin (Diffuse).psd │ │ │ │ │ ├── Orc Skin (Diffuse).psd.meta │ │ │ │ │ ├── Orc Skin (Normal).png │ │ │ │ │ ├── Orc Skin (Normal).png.meta │ │ │ │ │ ├── Orc Skin.mat │ │ │ │ │ ├── Orc Skin.mat.meta │ │ │ │ │ ├── Orc Skin.shader │ │ │ │ │ ├── Orc Skin.shader.meta │ │ │ │ │ ├── Orc.prefab │ │ │ │ │ └── Orc.prefab.meta │ │ │ ├── Other.meta │ │ │ ├── Other │ │ │ │ ├── Storage Icon Template.prefab │ │ │ │ └── Storage Icon Template.prefab.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Localization.txt │ │ │ │ └── Localization.txt.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── Example 0 - Control Widgets.unity │ │ │ │ ├── Example 0 - Control Widgets.unity.meta │ │ │ │ ├── Example 1 - Anchors.unity │ │ │ │ ├── Example 1 - Anchors.unity.meta │ │ │ │ ├── Example 10 - Localization.unity │ │ │ │ ├── Example 10 - Localization.unity.meta │ │ │ │ ├── Example 11 - Drag & Drop.unity │ │ │ │ ├── Example 11 - Drag & Drop.unity.meta │ │ │ │ ├── Example 12 - Chat Window.unity │ │ │ │ ├── Example 12 - Chat Window.unity.meta │ │ │ │ ├── Example 13 - Tabs.unity │ │ │ │ ├── Example 13 - Tabs.unity.meta │ │ │ │ ├── Example 14 - Endless Scroll Views.unity │ │ │ │ ├── Example 14 - Endless Scroll Views.unity.meta │ │ │ │ ├── Example 2 - Interaction.unity │ │ │ │ ├── Example 2 - Interaction.unity.meta │ │ │ │ ├── Example 3 - Menu.unity │ │ │ │ ├── Example 3 - Menu.unity.meta │ │ │ │ ├── Example 4 - Controller Input.unity │ │ │ │ ├── Example 4 - Controller Input.unity.meta │ │ │ │ ├── Example 5 - Lights and Refraction.unity │ │ │ │ ├── Example 5 - Lights and Refraction.unity.meta │ │ │ │ ├── Example 6 - Draggable Window.unity │ │ │ │ ├── Example 6 - Draggable Window.unity.meta │ │ │ │ ├── Example 7 - Scroll View (Panel).unity │ │ │ │ ├── Example 7 - Scroll View (Panel).unity.meta │ │ │ │ ├── Example 8 - Scroll View (Camera).unity │ │ │ │ ├── Example 8 - Scroll View (Camera).unity.meta │ │ │ │ ├── Example 9 - Quest Log.unity │ │ │ │ ├── Example 9 - Quest Log.unity.meta │ │ │ │ ├── Example X - Character.unity │ │ │ │ ├── Example X - Character.unity.meta │ │ │ │ ├── Tutorial 1.unity │ │ │ │ ├── Tutorial 1.unity.meta │ │ │ │ ├── Tutorial 2.unity │ │ │ │ ├── Tutorial 2.unity.meta │ │ │ │ ├── Tutorial 3.unity │ │ │ │ ├── Tutorial 3.unity.meta │ │ │ │ ├── Tutorial 4.unity │ │ │ │ ├── Tutorial 4.unity.meta │ │ │ │ ├── Tutorial 5.unity │ │ │ │ ├── Tutorial 5.unity.meta │ │ │ │ ├── Tutorial 6.unity │ │ │ │ ├── Tutorial 6.unity.meta │ │ │ │ ├── Tutorial 7.unity │ │ │ │ └── Tutorial 7.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── InventorySystem.meta │ │ │ │ ├── InventorySystem │ │ │ │ │ ├── Editor.meta │ │ │ │ │ ├── Editor │ │ │ │ │ │ ├── InvDatabaseInspector.cs │ │ │ │ │ │ ├── InvDatabaseInspector.cs.meta │ │ │ │ │ │ ├── InvFindItem.cs │ │ │ │ │ │ └── InvFindItem.cs.meta │ │ │ │ │ ├── Game.meta │ │ │ │ │ ├── Game │ │ │ │ │ │ ├── EquipItems.cs │ │ │ │ │ │ ├── EquipItems.cs.meta │ │ │ │ │ │ ├── EquipRandomItem.cs │ │ │ │ │ │ ├── EquipRandomItem.cs.meta │ │ │ │ │ │ ├── UICursor.cs │ │ │ │ │ │ ├── UICursor.cs.meta │ │ │ │ │ │ ├── UIEquipmentSlot.cs │ │ │ │ │ │ ├── UIEquipmentSlot.cs.meta │ │ │ │ │ │ ├── UIItemSlot.cs │ │ │ │ │ │ ├── UIItemSlot.cs.meta │ │ │ │ │ │ ├── UIItemStorage.cs │ │ │ │ │ │ ├── UIItemStorage.cs.meta │ │ │ │ │ │ ├── UIStorageSlot.cs │ │ │ │ │ │ └── UIStorageSlot.cs.meta │ │ │ │ │ ├── System.meta │ │ │ │ │ └── System │ │ │ │ │ │ ├── InvAttachmentPoint.cs │ │ │ │ │ │ ├── InvAttachmentPoint.cs.meta │ │ │ │ │ │ ├── InvBaseItem.cs │ │ │ │ │ │ ├── InvBaseItem.cs.meta │ │ │ │ │ │ ├── InvDatabase.cs │ │ │ │ │ │ ├── InvDatabase.cs.meta │ │ │ │ │ │ ├── InvEquipment.cs │ │ │ │ │ │ ├── InvEquipment.cs.meta │ │ │ │ │ │ ├── InvGameItem.cs │ │ │ │ │ │ ├── InvGameItem.cs.meta │ │ │ │ │ │ ├── InvStat.cs │ │ │ │ │ │ └── InvStat.cs.meta │ │ │ │ ├── Other.meta │ │ │ │ └── Other │ │ │ │ │ ├── ChatInput.cs │ │ │ │ │ ├── ChatInput.cs.meta │ │ │ │ │ ├── DownloadTexture.cs │ │ │ │ │ ├── DownloadTexture.cs.meta │ │ │ │ │ ├── EnvelopContent.cs │ │ │ │ │ ├── EnvelopContent.cs.meta │ │ │ │ │ ├── ExampleDragDropItem.cs │ │ │ │ │ ├── ExampleDragDropItem.cs.meta │ │ │ │ │ ├── ExampleDragDropSurface.cs │ │ │ │ │ ├── ExampleDragDropSurface.cs.meta │ │ │ │ │ ├── LagPosition.cs │ │ │ │ │ ├── LagPosition.cs.meta │ │ │ │ │ ├── LagRotation.cs │ │ │ │ │ ├── LagRotation.cs.meta │ │ │ │ │ ├── LoadLevelOnClick.cs │ │ │ │ │ ├── LoadLevelOnClick.cs.meta │ │ │ │ │ ├── LookAtTarget.cs │ │ │ │ │ ├── LookAtTarget.cs.meta │ │ │ │ │ ├── OpenURLOnClick.cs │ │ │ │ │ ├── OpenURLOnClick.cs.meta │ │ │ │ │ ├── PanWithMouse.cs │ │ │ │ │ ├── PanWithMouse.cs.meta │ │ │ │ │ ├── PlayIdleAnimations.cs │ │ │ │ │ ├── PlayIdleAnimations.cs.meta │ │ │ │ │ ├── SetColorOnSelection.cs │ │ │ │ │ ├── SetColorOnSelection.cs.meta │ │ │ │ │ ├── Spin.cs │ │ │ │ │ ├── Spin.cs.meta │ │ │ │ │ ├── SpinWithMouse.cs │ │ │ │ │ ├── SpinWithMouse.cs.meta │ │ │ │ │ ├── Tutorial5.cs │ │ │ │ │ ├── Tutorial5.cs.meta │ │ │ │ │ ├── UISliderColors.cs │ │ │ │ │ ├── UISliderColors.cs.meta │ │ │ │ │ ├── WindowAutoYaw.cs │ │ │ │ │ ├── WindowAutoYaw.cs.meta │ │ │ │ │ ├── WindowDragTilt.cs │ │ │ │ │ └── WindowDragTilt.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── Refractive.shader │ │ │ │ ├── Refractive.shader.meta │ │ │ │ ├── Unlit - Additive Colored.shader │ │ │ │ ├── Unlit - Additive Colored.shader.meta │ │ │ │ ├── Unlit - Depth Cutout.shader │ │ │ │ ├── Unlit - Depth Cutout.shader.meta │ │ │ │ ├── Unlit - Depth.shader │ │ │ │ ├── Unlit - Depth.shader.meta │ │ │ │ ├── Unlit - Masked Colored.shader │ │ │ │ └── Unlit - Masked Colored.shader.meta │ │ │ ├── Sounds.meta │ │ │ ├── Sounds │ │ │ │ ├── Crumple.wav │ │ │ │ ├── Crumple.wav.meta │ │ │ │ ├── Rumble.wav │ │ │ │ ├── Rumble.wav.meta │ │ │ │ ├── Swipe.wav │ │ │ │ ├── Swipe.wav.meta │ │ │ │ ├── Tap.wav │ │ │ │ └── Tap.wav.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Backdrop.png │ │ │ │ ├── Backdrop.png.meta │ │ │ │ ├── brick.jpg │ │ │ │ ├── brick.jpg.meta │ │ │ │ ├── brickNM.png │ │ │ │ ├── brickNM.png.meta │ │ │ │ ├── burlap.jpg │ │ │ │ ├── burlap.jpg.meta │ │ │ │ ├── sand.png │ │ │ │ └── sand.png.meta │ │ ├── ReadMe - 3.8.2.txt │ │ ├── ReadMe - 3.8.2.txt.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Shaders.meta │ │ │ └── Shaders │ │ │ │ ├── Unlit - Premultiplied Colored (TextureClip).shader │ │ │ │ ├── Unlit - Premultiplied Colored (TextureClip).shader.meta │ │ │ │ ├── Unlit - Premultiplied Colored 1.shader │ │ │ │ ├── Unlit - Premultiplied Colored 1.shader.meta │ │ │ │ ├── Unlit - Premultiplied Colored 2.shader │ │ │ │ ├── Unlit - Premultiplied Colored 2.shader.meta │ │ │ │ ├── Unlit - Premultiplied Colored 3.shader │ │ │ │ ├── Unlit - Premultiplied Colored 3.shader.meta │ │ │ │ ├── Unlit - Premultiplied Colored.shader │ │ │ │ ├── Unlit - Premultiplied Colored.shader.meta │ │ │ │ ├── Unlit - Text (TextureClip).shader │ │ │ │ ├── Unlit - Text (TextureClip).shader.meta │ │ │ │ ├── Unlit - Text 1.shader │ │ │ │ ├── Unlit - Text 1.shader.meta │ │ │ │ ├── Unlit - Text 2.shader │ │ │ │ ├── Unlit - Text 2.shader.meta │ │ │ │ ├── Unlit - Text 3.shader │ │ │ │ ├── Unlit - Text 3.shader.meta │ │ │ │ ├── Unlit - Text.shader │ │ │ │ ├── Unlit - Text.shader.meta │ │ │ │ ├── Unlit - Transparent Colored (Packed) (TextureClip).shader │ │ │ │ ├── Unlit - Transparent Colored (Packed) (TextureClip).shader.meta │ │ │ │ ├── Unlit - Transparent Colored (TextureClip).shader │ │ │ │ ├── Unlit - Transparent Colored (TextureClip).shader.meta │ │ │ │ ├── Unlit - Transparent Colored 1.shader │ │ │ │ ├── Unlit - Transparent Colored 1.shader.meta │ │ │ │ ├── Unlit - Transparent Colored 2.shader │ │ │ │ ├── Unlit - Transparent Colored 2.shader.meta │ │ │ │ ├── Unlit - Transparent Colored 3.shader │ │ │ │ ├── Unlit - Transparent Colored 3.shader.meta │ │ │ │ ├── Unlit - Transparent Colored.shader │ │ │ │ ├── Unlit - Transparent Colored.shader.meta │ │ │ │ ├── Unlit - Transparent Masked 1.shader │ │ │ │ ├── Unlit - Transparent Masked 1.shader.meta │ │ │ │ ├── Unlit - Transparent Masked 2.shader │ │ │ │ ├── Unlit - Transparent Masked 2.shader.meta │ │ │ │ ├── Unlit - Transparent Masked 3.shader │ │ │ │ ├── Unlit - Transparent Masked 3.shader.meta │ │ │ │ ├── Unlit - Transparent Masked.shader │ │ │ │ ├── Unlit - Transparent Masked.shader.meta │ │ │ │ ├── Unlit - Transparent Packed 1.shader │ │ │ │ ├── Unlit - Transparent Packed 1.shader.meta │ │ │ │ ├── Unlit - Transparent Packed 2.shader │ │ │ │ ├── Unlit - Transparent Packed 2.shader.meta │ │ │ │ ├── Unlit - Transparent Packed 3.shader │ │ │ │ ├── Unlit - Transparent Packed 3.shader.meta │ │ │ │ ├── Unlit - Transparent Packed.shader │ │ │ │ └── Unlit - Transparent Packed.shader.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── ActiveAnimationEditor.cs │ │ │ ├── ActiveAnimationEditor.cs.meta │ │ │ ├── BMFontReader.cs │ │ │ ├── BMFontReader.cs.meta │ │ │ ├── ComponentSelector.cs │ │ │ ├── ComponentSelector.cs.meta │ │ │ ├── EventDelegateDrawer.cs │ │ │ ├── EventDelegateDrawer.cs.meta │ │ │ ├── EventDelegateEditor.cs │ │ │ ├── EventDelegateEditor.cs.meta │ │ │ ├── FreeType.cs │ │ │ ├── FreeType.cs.meta │ │ │ ├── NGUIContextMenu.cs │ │ │ ├── NGUIContextMenu.cs.meta │ │ │ ├── NGUIEditorExtensions.cs │ │ │ ├── NGUIEditorExtensions.cs.meta │ │ │ ├── NGUIEditorTools.cs │ │ │ ├── NGUIEditorTools.cs.meta │ │ │ ├── NGUIHandles.cs │ │ │ ├── NGUIHandles.cs.meta │ │ │ ├── NGUIHelp.cs │ │ │ ├── NGUIHelp.cs.meta │ │ │ ├── NGUIJson.cs │ │ │ ├── NGUIJson.cs.meta │ │ │ ├── NGUIMenu.cs │ │ │ ├── NGUIMenu.cs.meta │ │ │ ├── NGUISelectionTools.cs │ │ │ ├── NGUISelectionTools.cs.meta │ │ │ ├── NGUISettings.cs │ │ │ ├── NGUISettings.cs.meta │ │ │ ├── NGUISnap.cs │ │ │ ├── NGUISnap.cs.meta │ │ │ ├── NGUITransformInspector.cs │ │ │ ├── NGUITransformInspector.cs.meta │ │ │ ├── PropertyBindingEditor.cs │ │ │ ├── PropertyBindingEditor.cs.meta │ │ │ ├── PropertyReferenceDrawer.cs │ │ │ ├── PropertyReferenceDrawer.cs.meta │ │ │ ├── SpriteSelector.cs │ │ │ ├── SpriteSelector.cs.meta │ │ │ ├── TweenAlphaEditor.cs │ │ │ ├── TweenAlphaEditor.cs.meta │ │ │ ├── TweenColorEditor.cs │ │ │ ├── TweenColorEditor.cs.meta │ │ │ ├── TweenFOVEditor.cs │ │ │ ├── TweenFOVEditor.cs.meta │ │ │ ├── TweenHeightEditor.cs │ │ │ ├── TweenHeightEditor.cs.meta │ │ │ ├── TweenOrthoSizeEditor.cs │ │ │ ├── TweenOrthoSizeEditor.cs.meta │ │ │ ├── TweenPositionEditor.cs │ │ │ ├── TweenPositionEditor.cs.meta │ │ │ ├── TweenRotationEditor.cs │ │ │ ├── TweenRotationEditor.cs.meta │ │ │ ├── TweenScaleEditor.cs │ │ │ ├── TweenScaleEditor.cs.meta │ │ │ ├── TweenTransformEditor.cs │ │ │ ├── TweenTransformEditor.cs.meta │ │ │ ├── TweenVolumeEditor.cs │ │ │ ├── TweenVolumeEditor.cs.meta │ │ │ ├── TweenWidthEditor.cs │ │ │ ├── TweenWidthEditor.cs.meta │ │ │ ├── UI2DSpriteEditor.cs │ │ │ ├── UI2DSpriteEditor.cs.meta │ │ │ ├── UIAnchorEditor.cs │ │ │ ├── UIAnchorEditor.cs.meta │ │ │ ├── UIAtlasInspector.cs │ │ │ ├── UIAtlasInspector.cs.meta │ │ │ ├── UIAtlasMaker.cs │ │ │ ├── UIAtlasMaker.cs.meta │ │ │ ├── UIBasicSpriteEditor.cs │ │ │ ├── UIBasicSpriteEditor.cs.meta │ │ │ ├── UIButtonColorEditor.cs │ │ │ ├── UIButtonColorEditor.cs.meta │ │ │ ├── UIButtonEditor.cs │ │ │ ├── UIButtonEditor.cs.meta │ │ │ ├── UIButtonKeysEditor.cs │ │ │ ├── UIButtonKeysEditor.cs.meta │ │ │ ├── UIButtonMessageEditor.cs │ │ │ ├── UIButtonMessageEditor.cs.meta │ │ │ ├── UICameraEditor.cs │ │ │ ├── UICameraEditor.cs.meta │ │ │ ├── UICameraTool.cs │ │ │ ├── UICameraTool.cs.meta │ │ │ ├── UICreateNewUIWizard.cs │ │ │ ├── UICreateNewUIWizard.cs.meta │ │ │ ├── UICreateWidgetWizard.cs │ │ │ ├── UICreateWidgetWizard.cs.meta │ │ │ ├── UIDragObjectEditor.cs │ │ │ ├── UIDragObjectEditor.cs.meta │ │ │ ├── UIDrawCallInspector.cs │ │ │ ├── UIDrawCallInspector.cs.meta │ │ │ ├── UIDrawCallViewer.cs │ │ │ ├── UIDrawCallViewer.cs.meta │ │ │ ├── UIEventTriggerEditor.cs │ │ │ ├── UIEventTriggerEditor.cs.meta │ │ │ ├── UIFontInspector.cs │ │ │ ├── UIFontInspector.cs.meta │ │ │ ├── UIFontMaker.cs │ │ │ ├── UIFontMaker.cs.meta │ │ │ ├── UIForwardEventsEditor.cs │ │ │ ├── UIForwardEventsEditor.cs.meta │ │ │ ├── UIGridEditor.cs │ │ │ ├── UIGridEditor.cs.meta │ │ │ ├── UIImageButtonInspector.cs │ │ │ ├── UIImageButtonInspector.cs.meta │ │ │ ├── UIInputEditor.cs │ │ │ ├── UIInputEditor.cs.meta │ │ │ ├── UIKeyNavigationEditor.cs │ │ │ ├── UIKeyNavigationEditor.cs.meta │ │ │ ├── UILabelInspector.cs │ │ │ ├── UILabelInspector.cs.meta │ │ │ ├── UILocalizeEditor.cs │ │ │ ├── UILocalizeEditor.cs.meta │ │ │ ├── UIPanelInspector.cs │ │ │ ├── UIPanelInspector.cs.meta │ │ │ ├── UIPanelTool.cs │ │ │ ├── UIPanelTool.cs.meta │ │ │ ├── UIPlayAnimationEditor.cs │ │ │ ├── UIPlayAnimationEditor.cs.meta │ │ │ ├── UIPlayTweenEditor.cs │ │ │ ├── UIPlayTweenEditor.cs.meta │ │ │ ├── UIPopupListInspector.cs │ │ │ ├── UIPopupListInspector.cs.meta │ │ │ ├── UIPrefabTool.cs │ │ │ ├── UIPrefabTool.cs.meta │ │ │ ├── UIProgressBarEditor.cs │ │ │ ├── UIProgressBarEditor.cs.meta │ │ │ ├── UIRectEditor.cs │ │ │ ├── UIRectEditor.cs.meta │ │ │ ├── UIRootEditor.cs │ │ │ ├── UIRootEditor.cs.meta │ │ │ ├── UIScrollBarEditor.cs │ │ │ ├── UIScrollBarEditor.cs.meta │ │ │ ├── UIScrollViewEditor.cs │ │ │ ├── UIScrollViewEditor.cs.meta │ │ │ ├── UISliderEditor.cs │ │ │ ├── UISliderEditor.cs.meta │ │ │ ├── UISnapshotPointEditor.cs │ │ │ ├── UISnapshotPointEditor.cs.meta │ │ │ ├── UISpriteAnimationInspector.cs │ │ │ ├── UISpriteAnimationInspector.cs.meta │ │ │ ├── UISpriteInspector.cs │ │ │ ├── UISpriteInspector.cs.meta │ │ │ ├── UIStretchEditor.cs │ │ │ ├── UIStretchEditor.cs.meta │ │ │ ├── UITableEditor.cs │ │ │ ├── UITableEditor.cs.meta │ │ │ ├── UITextureInspector.cs │ │ │ ├── UITextureInspector.cs.meta │ │ │ ├── UITexturePacker.cs │ │ │ ├── UITexturePacker.cs.meta │ │ │ ├── UIToggleInspector.cs │ │ │ ├── UIToggleInspector.cs.meta │ │ │ ├── UITweenerEditor.cs │ │ │ ├── UITweenerEditor.cs.meta │ │ │ ├── UIWidgetContainerEditor.cs │ │ │ ├── UIWidgetContainerEditor.cs.meta │ │ │ ├── UIWidgetInspector.cs │ │ │ ├── UIWidgetInspector.cs.meta │ │ │ ├── UIWrapContentEditor.cs │ │ │ └── UIWrapContentEditor.cs.meta │ │ │ ├── Interaction.meta │ │ │ ├── Interaction │ │ │ ├── LanguageSelection.cs │ │ │ ├── LanguageSelection.cs.meta │ │ │ ├── TypewriterEffect.cs │ │ │ ├── TypewriterEffect.cs.meta │ │ │ ├── UIButton.cs │ │ │ ├── UIButton.cs.meta │ │ │ ├── UIButtonActivate.cs │ │ │ ├── UIButtonActivate.cs.meta │ │ │ ├── UIButtonColor.cs │ │ │ ├── UIButtonColor.cs.meta │ │ │ ├── UIButtonKeys.cs │ │ │ ├── UIButtonKeys.cs.meta │ │ │ ├── UIButtonMessage.cs │ │ │ ├── UIButtonMessage.cs.meta │ │ │ ├── UIButtonOffset.cs │ │ │ ├── UIButtonOffset.cs.meta │ │ │ ├── UIButtonRotation.cs │ │ │ ├── UIButtonRotation.cs.meta │ │ │ ├── UIButtonScale.cs │ │ │ ├── UIButtonScale.cs.meta │ │ │ ├── UICenterOnChild.cs │ │ │ ├── UICenterOnChild.cs.meta │ │ │ ├── UICenterOnClick.cs │ │ │ ├── UICenterOnClick.cs.meta │ │ │ ├── UIDragCamera.cs │ │ │ ├── UIDragCamera.cs.meta │ │ │ ├── UIDragDropContainer.cs │ │ │ ├── UIDragDropContainer.cs.meta │ │ │ ├── UIDragDropItem.cs │ │ │ ├── UIDragDropItem.cs.meta │ │ │ ├── UIDragDropRoot.cs │ │ │ ├── UIDragDropRoot.cs.meta │ │ │ ├── UIDragObject.cs │ │ │ ├── UIDragObject.cs.meta │ │ │ ├── UIDragResize.cs │ │ │ ├── UIDragResize.cs.meta │ │ │ ├── UIDragScrollView.cs │ │ │ ├── UIDragScrollView.cs.meta │ │ │ ├── UIDraggableCamera.cs │ │ │ ├── UIDraggableCamera.cs.meta │ │ │ ├── UIEventTrigger.cs │ │ │ ├── UIEventTrigger.cs.meta │ │ │ ├── UIForwardEvents.cs │ │ │ ├── UIForwardEvents.cs.meta │ │ │ ├── UIGrid.cs │ │ │ ├── UIGrid.cs.meta │ │ │ ├── UIImageButton.cs │ │ │ ├── UIImageButton.cs.meta │ │ │ ├── UIKeyBinding.cs │ │ │ ├── UIKeyBinding.cs.meta │ │ │ ├── UIKeyNavigation.cs │ │ │ ├── UIKeyNavigation.cs.meta │ │ │ ├── UIPlayAnimation.cs │ │ │ ├── UIPlayAnimation.cs.meta │ │ │ ├── UIPlaySound.cs │ │ │ ├── UIPlaySound.cs.meta │ │ │ ├── UIPlayTween.cs │ │ │ ├── UIPlayTween.cs.meta │ │ │ ├── UIPopupList.cs │ │ │ ├── UIPopupList.cs.meta │ │ │ ├── UIProgressBar.cs │ │ │ ├── UIProgressBar.cs.meta │ │ │ ├── UISavedOption.cs │ │ │ ├── UISavedOption.cs.meta │ │ │ ├── UIScrollBar.cs │ │ │ ├── UIScrollBar.cs.meta │ │ │ ├── UIScrollView.cs │ │ │ ├── UIScrollView.cs.meta │ │ │ ├── UISlider.cs │ │ │ ├── UISlider.cs.meta │ │ │ ├── UISoundVolume.cs │ │ │ ├── UISoundVolume.cs.meta │ │ │ ├── UITable.cs │ │ │ ├── UITable.cs.meta │ │ │ ├── UIToggle.cs │ │ │ ├── UIToggle.cs.meta │ │ │ ├── UIToggledComponents.cs │ │ │ ├── UIToggledComponents.cs.meta │ │ │ ├── UIToggledObjects.cs │ │ │ ├── UIToggledObjects.cs.meta │ │ │ ├── UIWidgetContainer.cs │ │ │ ├── UIWidgetContainer.cs.meta │ │ │ ├── UIWrapContent.cs │ │ │ └── UIWrapContent.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ ├── ActiveAnimation.cs │ │ │ ├── ActiveAnimation.cs.meta │ │ │ ├── AnimationOrTween.cs │ │ │ ├── AnimationOrTween.cs.meta │ │ │ ├── BMFont.cs │ │ │ ├── BMFont.cs.meta │ │ │ ├── BMGlyph.cs │ │ │ ├── BMGlyph.cs.meta │ │ │ ├── BMSymbol.cs │ │ │ ├── BMSymbol.cs.meta │ │ │ ├── BetterList.cs │ │ │ ├── BetterList.cs.meta │ │ │ ├── ByteReader.cs │ │ │ ├── ByteReader.cs.meta │ │ │ ├── EventDelegate.cs │ │ │ ├── EventDelegate.cs.meta │ │ │ ├── Localization.cs │ │ │ ├── Localization.cs.meta │ │ │ ├── NGUIDebug.cs │ │ │ ├── NGUIDebug.cs.meta │ │ │ ├── NGUIMath.cs │ │ │ ├── NGUIMath.cs.meta │ │ │ ├── NGUIText.cs │ │ │ ├── NGUIText.cs.meta │ │ │ ├── NGUITools.cs │ │ │ ├── NGUITools.cs.meta │ │ │ ├── PropertyBinding.cs │ │ │ ├── PropertyBinding.cs.meta │ │ │ ├── PropertyReference.cs │ │ │ ├── PropertyReference.cs.meta │ │ │ ├── RealTime.cs │ │ │ ├── RealTime.cs.meta │ │ │ ├── SpringPanel.cs │ │ │ ├── SpringPanel.cs.meta │ │ │ ├── UIBasicSprite.cs │ │ │ ├── UIBasicSprite.cs.meta │ │ │ ├── UIDrawCall.cs │ │ │ ├── UIDrawCall.cs.meta │ │ │ ├── UIEventListener.cs │ │ │ ├── UIEventListener.cs.meta │ │ │ ├── UIGeometry.cs │ │ │ ├── UIGeometry.cs.meta │ │ │ ├── UIRect.cs │ │ │ ├── UIRect.cs.meta │ │ │ ├── UISnapshotPoint.cs │ │ │ ├── UISnapshotPoint.cs.meta │ │ │ ├── UIWidget.cs │ │ │ └── UIWidget.cs.meta │ │ │ ├── Tweening.meta │ │ │ ├── Tweening │ │ │ ├── AnimatedAlpha.cs │ │ │ ├── AnimatedAlpha.cs.meta │ │ │ ├── AnimatedColor.cs │ │ │ ├── AnimatedColor.cs.meta │ │ │ ├── AnimatedWidget.cs │ │ │ ├── AnimatedWidget.cs.meta │ │ │ ├── SpringPosition.cs │ │ │ ├── SpringPosition.cs.meta │ │ │ ├── TweenAlpha.cs │ │ │ ├── TweenAlpha.cs.meta │ │ │ ├── TweenColor.cs │ │ │ ├── TweenColor.cs.meta │ │ │ ├── TweenFOV.cs │ │ │ ├── TweenFOV.cs.meta │ │ │ ├── TweenHeight.cs │ │ │ ├── TweenHeight.cs.meta │ │ │ ├── TweenOrthoSize.cs │ │ │ ├── TweenOrthoSize.cs.meta │ │ │ ├── TweenPosition.cs │ │ │ ├── TweenPosition.cs.meta │ │ │ ├── TweenRotation.cs │ │ │ ├── TweenRotation.cs.meta │ │ │ ├── TweenScale.cs │ │ │ ├── TweenScale.cs.meta │ │ │ ├── TweenTransform.cs │ │ │ ├── TweenTransform.cs.meta │ │ │ ├── TweenVolume.cs │ │ │ ├── TweenVolume.cs.meta │ │ │ ├── TweenWidth.cs │ │ │ ├── TweenWidth.cs.meta │ │ │ ├── UITweener.cs │ │ │ └── UITweener.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ ├── UI2DSprite.cs │ │ │ ├── UI2DSprite.cs.meta │ │ │ ├── UI2DSpriteAnimation.cs │ │ │ ├── UI2DSpriteAnimation.cs.meta │ │ │ ├── UIAnchor.cs │ │ │ ├── UIAnchor.cs.meta │ │ │ ├── UIAtlas.cs │ │ │ ├── UIAtlas.cs.meta │ │ │ ├── UICamera.cs │ │ │ ├── UICamera.cs.meta │ │ │ ├── UIFont.cs │ │ │ ├── UIFont.cs.meta │ │ │ ├── UIInput.cs │ │ │ ├── UIInput.cs.meta │ │ │ ├── UIInputOnGUI.cs │ │ │ ├── UIInputOnGUI.cs.meta │ │ │ ├── UILabel.cs │ │ │ ├── UILabel.cs.meta │ │ │ ├── UILocalize.cs │ │ │ ├── UILocalize.cs.meta │ │ │ ├── UIOrthoCamera.cs │ │ │ ├── UIOrthoCamera.cs.meta │ │ │ ├── UIPanel.cs │ │ │ ├── UIPanel.cs.meta │ │ │ ├── UIRoot.cs │ │ │ ├── UIRoot.cs.meta │ │ │ ├── UISprite.cs │ │ │ ├── UISprite.cs.meta │ │ │ ├── UISpriteAnimation.cs │ │ │ ├── UISpriteAnimation.cs.meta │ │ │ ├── UISpriteData.cs │ │ │ ├── UISpriteData.cs.meta │ │ │ ├── UIStretch.cs │ │ │ ├── UIStretch.cs.meta │ │ │ ├── UITextList.cs │ │ │ ├── UITextList.cs.meta │ │ │ ├── UITexture.cs │ │ │ ├── UITexture.cs.meta │ │ │ ├── UITooltip.cs │ │ │ ├── UITooltip.cs.meta │ │ │ ├── UIViewport.cs │ │ │ └── UIViewport.cs.meta │ ├── Resources.meta │ ├── Resources │ │ ├── TestGameObjectPrefab.prefab │ │ └── TestGameObjectPrefab.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── main.unity │ │ └── main.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── LuaBehaviour.cs │ │ │ ├── LuaBehaviour.cs.meta │ │ │ ├── LuaLoader.cs │ │ │ └── LuaLoader.cs.meta │ │ ├── ConstDefine.meta │ │ ├── ConstDefine │ │ │ ├── AppConst.cs │ │ │ ├── AppConst.cs.meta │ │ │ ├── ManagerName.cs │ │ │ ├── ManagerName.cs.meta │ │ │ ├── NotiConst.cs │ │ │ └── NotiConst.cs.meta │ │ ├── Controller.meta │ │ ├── Controller │ │ │ ├── Command.meta │ │ │ └── Command │ │ │ │ ├── SocketCommand.cs │ │ │ │ ├── SocketCommand.cs.meta │ │ │ │ ├── StartUpCommand.cs │ │ │ │ └── StartUpCommand.cs.meta │ │ ├── Framework.meta │ │ ├── Framework │ │ │ ├── AppFacade.cs │ │ │ ├── AppFacade.cs.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── Base.cs │ │ │ │ ├── Base.cs.meta │ │ │ │ ├── Controller.cs │ │ │ │ ├── Controller.cs.meta │ │ │ │ ├── Facade.cs │ │ │ │ ├── Facade.cs.meta │ │ │ │ ├── Manager.cs │ │ │ │ ├── Manager.cs.meta │ │ │ │ ├── Message.cs │ │ │ │ ├── Message.cs.meta │ │ │ │ ├── View.cs │ │ │ │ └── View.cs.meta │ │ │ ├── Interfaces.meta │ │ │ └── Interfaces │ │ │ │ ├── ICommand.cs │ │ │ │ ├── ICommand.cs.meta │ │ │ │ ├── IController.cs │ │ │ │ ├── IController.cs.meta │ │ │ │ ├── IManager.cs │ │ │ │ ├── IManager.cs.meta │ │ │ │ ├── IMessage.cs │ │ │ │ ├── IMessage.cs.meta │ │ │ │ ├── IView.cs │ │ │ │ └── IView.cs.meta │ │ ├── Main.cs │ │ ├── Main.cs.meta │ │ ├── Manager.meta │ │ ├── Manager │ │ │ ├── GameManager.cs │ │ │ ├── GameManager.cs.meta │ │ │ ├── Interface.meta │ │ │ ├── Interface │ │ │ │ ├── ITimerBehaviour.cs │ │ │ │ └── ITimerBehaviour.cs.meta │ │ │ ├── LuaManager.cs │ │ │ ├── LuaManager.cs.meta │ │ │ ├── NetworkManager.cs │ │ │ ├── NetworkManager.cs.meta │ │ │ ├── ObjectPoolManager.cs │ │ │ ├── ObjectPoolManager.cs.meta │ │ │ ├── PanelManager.cs │ │ │ ├── PanelManager.cs.meta │ │ │ ├── ResourceManager.cs │ │ │ ├── ResourceManager.cs.meta │ │ │ ├── SoundManager.cs │ │ │ ├── SoundManager.cs.meta │ │ │ ├── ThreadManager.cs │ │ │ ├── ThreadManager.cs.meta │ │ │ ├── TimerManager.cs │ │ │ └── TimerManager.cs.meta │ │ ├── Network.meta │ │ ├── Network │ │ │ ├── ByteBuffer.cs │ │ │ ├── ByteBuffer.cs.meta │ │ │ ├── Converter.cs │ │ │ ├── Converter.cs.meta │ │ │ ├── Protocal.cs │ │ │ ├── Protocal.cs.meta │ │ │ ├── SocketClient.cs │ │ │ └── SocketClient.cs.meta │ │ ├── ObjectPool.meta │ │ ├── ObjectPool │ │ │ ├── GameObjectPool.cs │ │ │ ├── GameObjectPool.cs.meta │ │ │ ├── ObjectPool.cs │ │ │ ├── ObjectPool.cs.meta │ │ │ ├── TestObjectClass.cs │ │ │ └── TestObjectClass.cs.meta │ │ ├── Utility.meta │ │ ├── Utility │ │ │ ├── LuaHelper.cs │ │ │ ├── LuaHelper.cs.meta │ │ │ ├── Util.cs │ │ │ ├── Util.cs.meta │ │ │ ├── WrapGrid.cs │ │ │ └── WrapGrid.cs.meta │ │ ├── View.meta │ │ └── View │ │ │ ├── AppView.cs │ │ │ └── AppView.cs.meta │ ├── ToLua.meta │ └── ToLua │ │ ├── BaseType.meta │ │ ├── BaseType │ │ ├── LuaInterface_EventObjectWrap.cs │ │ ├── LuaInterface_EventObjectWrap.cs.meta │ │ ├── LuaInterface_LuaConstructorWrap.cs │ │ ├── LuaInterface_LuaConstructorWrap.cs.meta │ │ ├── LuaInterface_LuaFieldWrap.cs │ │ ├── LuaInterface_LuaFieldWrap.cs.meta │ │ ├── LuaInterface_LuaMethodWrap.cs │ │ ├── LuaInterface_LuaMethodWrap.cs.meta │ │ ├── LuaInterface_LuaOutWrap.cs │ │ ├── LuaInterface_LuaOutWrap.cs.meta │ │ ├── LuaInterface_LuaPropertyWrap.cs │ │ ├── LuaInterface_LuaPropertyWrap.cs.meta │ │ ├── System_ArrayWrap.cs │ │ ├── System_ArrayWrap.cs.meta │ │ ├── System_Collections_Generic_DictionaryWrap.cs │ │ ├── System_Collections_Generic_DictionaryWrap.cs.meta │ │ ├── System_Collections_Generic_Dictionary_KeyCollectionWrap.cs │ │ ├── System_Collections_Generic_Dictionary_KeyCollectionWrap.cs.meta │ │ ├── System_Collections_Generic_Dictionary_ValueCollectionWrap.cs │ │ ├── System_Collections_Generic_Dictionary_ValueCollectionWrap.cs.meta │ │ ├── System_Collections_Generic_KeyValuePairWrap.cs │ │ ├── System_Collections_Generic_KeyValuePairWrap.cs.meta │ │ ├── System_Collections_Generic_ListWrap.cs │ │ ├── System_Collections_Generic_ListWrap.cs.meta │ │ ├── System_Collections_IEnumeratorWrap.cs │ │ ├── System_Collections_IEnumeratorWrap.cs.meta │ │ ├── System_Collections_ObjectModel_ReadOnlyCollectionWrap.cs │ │ ├── System_Collections_ObjectModel_ReadOnlyCollectionWrap.cs.meta │ │ ├── System_DelegateWrap.cs │ │ ├── System_DelegateWrap.cs.meta │ │ ├── System_EnumWrap.cs │ │ ├── System_EnumWrap.cs.meta │ │ ├── System_NullObjectWrap.cs │ │ ├── System_NullObjectWrap.cs.meta │ │ ├── System_ObjectWrap.cs │ │ ├── System_ObjectWrap.cs.meta │ │ ├── System_StringWrap.cs │ │ ├── System_StringWrap.cs.meta │ │ ├── System_TypeWrap.cs │ │ ├── System_TypeWrap.cs.meta │ │ ├── UnityEngine_CoroutineWrap.cs │ │ ├── UnityEngine_CoroutineWrap.cs.meta │ │ ├── UnityEngine_ObjectWrap.cs │ │ └── UnityEngine_ObjectWrap.cs.meta │ │ ├── Core.meta │ │ ├── Core │ │ ├── LuaAttributes.cs │ │ ├── LuaAttributes.cs.meta │ │ ├── LuaBaseRef.cs │ │ ├── LuaBaseRef.cs.meta │ │ ├── LuaBeatEvent.cs │ │ ├── LuaBeatEvent.cs.meta │ │ ├── LuaDLL.cs │ │ ├── LuaDLL.cs.meta │ │ ├── LuaEvent.cs │ │ ├── LuaEvent.cs.meta │ │ ├── LuaException.cs │ │ ├── LuaException.cs.meta │ │ ├── LuaFileUtils.cs │ │ ├── LuaFileUtils.cs.meta │ │ ├── LuaFunction.cs │ │ ├── LuaFunction.cs.meta │ │ ├── LuaMatchType.cs │ │ ├── LuaMatchType.cs.meta │ │ ├── LuaMethodCache.cs │ │ ├── LuaMethodCache.cs.meta │ │ ├── LuaMisc.cs │ │ ├── LuaMisc.cs.meta │ │ ├── LuaStackOp.cs │ │ ├── LuaStackOp.cs.meta │ │ ├── LuaState.cs │ │ ├── LuaState.cs.meta │ │ ├── LuaStatePtr.cs │ │ ├── LuaStatePtr.cs.meta │ │ ├── LuaStatic.cs │ │ ├── LuaStatic.cs.meta │ │ ├── LuaTable.cs │ │ ├── LuaTable.cs.meta │ │ ├── LuaThread.cs │ │ ├── LuaThread.cs.meta │ │ ├── LuaUnityLibs.cs │ │ ├── LuaUnityLibs.cs.meta │ │ ├── LuaValueType.cs │ │ ├── LuaValueType.cs.meta │ │ ├── ObjectPool.cs │ │ ├── ObjectPool.cs.meta │ │ ├── ObjectTranslator.cs │ │ ├── ObjectTranslator.cs.meta │ │ ├── ToLua.cs │ │ ├── ToLua.cs.meta │ │ ├── TypeChecker.cs │ │ ├── TypeChecker.cs.meta │ │ ├── TypeTraits.cs │ │ └── TypeTraits.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── Extend.meta │ │ ├── Extend │ │ │ ├── ToLua_LuaInterface_EventObject.cs │ │ │ ├── ToLua_LuaInterface_EventObject.cs.meta │ │ │ ├── ToLua_LuaInterface_LuaConstructor.cs │ │ │ ├── ToLua_LuaInterface_LuaConstructor.cs.meta │ │ │ ├── ToLua_LuaInterface_LuaField.cs │ │ │ ├── ToLua_LuaInterface_LuaField.cs.meta │ │ │ ├── ToLua_LuaInterface_LuaMethod.cs │ │ │ ├── ToLua_LuaInterface_LuaMethod.cs.meta │ │ │ ├── ToLua_LuaInterface_LuaProperty.cs │ │ │ ├── ToLua_LuaInterface_LuaProperty.cs.meta │ │ │ ├── ToLua_System_Delegate.cs │ │ │ ├── ToLua_System_Delegate.cs.meta │ │ │ ├── ToLua_System_Enum.cs │ │ │ ├── ToLua_System_Enum.cs.meta │ │ │ ├── ToLua_System_Object.cs │ │ │ ├── ToLua_System_Object.cs.meta │ │ │ ├── ToLua_System_String.cs │ │ │ ├── ToLua_System_String.cs.meta │ │ │ ├── ToLua_System_Type.cs │ │ │ ├── ToLua_System_Type.cs.meta │ │ │ ├── ToLua_UnityEngine_GameObject.cs │ │ │ ├── ToLua_UnityEngine_GameObject.cs.meta │ │ │ ├── ToLua_UnityEngine_Input.cs │ │ │ ├── ToLua_UnityEngine_Input.cs.meta │ │ │ ├── ToLua_UnityEngine_Object.cs │ │ │ ├── ToLua_UnityEngine_Object.cs.meta │ │ │ ├── ToLua_UnityEngine_RectTransform.cs │ │ │ └── ToLua_UnityEngine_RectTransform.cs.meta │ │ ├── ToLuaExport.cs │ │ ├── ToLuaExport.cs.meta │ │ ├── ToLuaMenu.cs │ │ ├── ToLuaMenu.cs.meta │ │ ├── ToLuaTree.cs │ │ └── ToLuaTree.cs.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ ├── 01_HelloWorld.meta │ │ ├── 01_HelloWorld │ │ │ ├── HelloWorld.cs │ │ │ ├── HelloWorld.cs.meta │ │ │ ├── HelloWorld.unity │ │ │ └── HelloWorld.unity.meta │ │ ├── 02_ScriptsFromFile.meta │ │ ├── 02_ScriptsFromFile │ │ │ ├── ScriptsFromFile.cs │ │ │ ├── ScriptsFromFile.cs.meta │ │ │ ├── ScriptsFromFile.lua │ │ │ ├── ScriptsFromFile.lua.meta │ │ │ ├── ScriptsFromFile.unity │ │ │ └── ScriptsFromFile.unity.meta │ │ ├── 03_CallLuaFunction.meta │ │ ├── 03_CallLuaFunction │ │ │ ├── CallLuaFunction.cs │ │ │ ├── CallLuaFunction.cs.meta │ │ │ ├── CallLuaFunction.unity │ │ │ └── CallLuaFunction.unity.meta │ │ ├── 04_AccessingLuaVariables.meta │ │ ├── 04_AccessingLuaVariables │ │ │ ├── AccessingLuaVariables.cs │ │ │ ├── AccessingLuaVariables.cs.meta │ │ │ ├── AccessingLuaVariables.unity │ │ │ └── AccessingLuaVariables.unity.meta │ │ ├── 05_LuaCoroutine.meta │ │ ├── 05_LuaCoroutine │ │ │ ├── LuaCoroutine.unity │ │ │ ├── LuaCoroutine.unity.meta │ │ │ ├── TestCoroutine.cs │ │ │ └── TestCoroutine.cs.meta │ │ ├── 06_LuaCoroutine2.meta │ │ ├── 06_LuaCoroutine2 │ │ │ ├── Coroutine.unity │ │ │ ├── Coroutine.unity.meta │ │ │ ├── TestCoroutine2.cs │ │ │ └── TestCoroutine2.cs.meta │ │ ├── 07_LuaThread.meta │ │ ├── 07_LuaThread │ │ │ ├── TestLuaThread.cs │ │ │ ├── TestLuaThread.cs.meta │ │ │ ├── TestThread.unity │ │ │ └── TestThread.unity.meta │ │ ├── 08_AccessingArray.meta │ │ ├── 08_AccessingArray │ │ │ ├── AccessingArray.cs │ │ │ ├── AccessingArray.cs.meta │ │ │ ├── AccessingArray.unity │ │ │ └── AccessingArray.unity.meta │ │ ├── 09_Dictionary.meta │ │ ├── 09_Dictionary │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccountWrap.cs │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccountWrap.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccount_KeyCollectionWrap.cs │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccount_KeyCollectionWrap.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccount_ValueCollectionWrap.cs │ │ │ ├── System_Collections_Generic_Dictionary_int_TestAccount_ValueCollectionWrap.cs.meta │ │ │ ├── System_Collections_Generic_KeyValuePair_int_TestAccountWrap.cs │ │ │ ├── System_Collections_Generic_KeyValuePair_int_TestAccountWrap.cs.meta │ │ │ ├── TestAccountWrap.cs │ │ │ ├── TestAccountWrap.cs.meta │ │ │ ├── UseDictionary.cs │ │ │ ├── UseDictionary.cs.meta │ │ │ ├── UseDictionary.unity │ │ │ └── UseDictionary.unity.meta │ │ ├── 10_Enum.meta │ │ ├── 10_Enum │ │ │ ├── AccessingEnum.cs │ │ │ ├── AccessingEnum.cs.meta │ │ │ ├── AccessingEnum.unity │ │ │ └── AccessingEnum.unity.meta │ │ ├── 11_Delegate.meta │ │ ├── 11_Delegate │ │ │ ├── TestDelegate.cs │ │ │ ├── TestDelegate.cs.meta │ │ │ ├── TestEventListener.cs │ │ │ ├── TestEventListener.cs.meta │ │ │ ├── TestEventListenerWrap.cs │ │ │ ├── TestEventListenerWrap.cs.meta │ │ │ ├── UseDelegate.unity │ │ │ └── UseDelegate.unity.meta │ │ ├── 12_GameObject.meta │ │ ├── 12_GameObject │ │ │ ├── TestGameObject.cs │ │ │ ├── TestGameObject.cs.meta │ │ │ ├── TestGameObject.unity │ │ │ └── TestGameObject.unity.meta │ │ ├── 13_CustomLoader.meta │ │ ├── 13_CustomLoader │ │ │ ├── CustomLoader.unity │ │ │ ├── CustomLoader.unity.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Lua.meta │ │ │ │ └── Lua │ │ │ │ │ ├── TestLoader.lua.bytes │ │ │ │ │ └── TestLoader.lua.bytes.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 │ │ │ ├── misc.lua │ │ │ ├── misc.lua.meta │ │ │ ├── strict.lua │ │ │ ├── strict.lua.meta │ │ │ ├── utf8.lua │ │ │ └── utf8.lua.meta │ │ ├── protobuf.meta │ │ ├── protobuf │ │ │ ├── containers.lua │ │ │ ├── containers.lua.meta │ │ │ ├── decoder.lua │ │ │ ├── decoder.lua.meta │ │ │ ├── descriptor.lua │ │ │ ├── descriptor.lua.meta │ │ │ ├── encoder.lua │ │ │ ├── encoder.lua.meta │ │ │ ├── listener.lua │ │ │ ├── listener.lua.meta │ │ │ ├── protobuf.lua │ │ │ ├── protobuf.lua.meta │ │ │ ├── text_format.lua │ │ │ ├── text_format.lua.meta │ │ │ ├── type_checkers.lua │ │ │ ├── type_checkers.lua.meta │ │ │ ├── wire_format.lua │ │ │ └── wire_format.lua.meta │ │ ├── slot.lua │ │ ├── slot.lua.meta │ │ ├── socket.lua │ │ ├── socket.lua.meta │ │ ├── socket.meta │ │ ├── socket │ │ │ ├── ftp.lua │ │ │ ├── ftp.lua.meta │ │ │ ├── headers.lua │ │ │ ├── headers.lua.meta │ │ │ ├── http.lua │ │ │ ├── http.lua.meta │ │ │ ├── mbox.lua │ │ │ ├── mbox.lua.meta │ │ │ ├── smtp.lua │ │ │ ├── smtp.lua.meta │ │ │ ├── tp.lua │ │ │ ├── tp.lua.meta │ │ │ ├── url.lua │ │ │ └── url.lua.meta │ │ ├── system.meta │ │ ├── tolua.lua │ │ ├── tolua.lua.meta │ │ ├── typeof.lua │ │ └── typeof.lua.meta │ │ ├── Misc.meta │ │ ├── Misc │ │ ├── LuaClient.cs │ │ ├── LuaClient.cs.meta │ │ ├── LuaCoroutine.cs │ │ ├── LuaCoroutine.cs.meta │ │ ├── LuaLooper.cs │ │ ├── LuaLooper.cs.meta │ │ ├── LuaProfiler.cs │ │ ├── LuaProfiler.cs.meta │ │ ├── LuaResLoader.cs │ │ └── LuaResLoader.cs.meta │ │ ├── Reflection.meta │ │ ├── Reflection │ │ ├── LuaConstructor.cs │ │ ├── LuaConstructor.cs.meta │ │ ├── LuaField.cs │ │ ├── LuaField.cs.meta │ │ ├── LuaMethod.cs │ │ ├── LuaMethod.cs.meta │ │ ├── LuaProperty.cs │ │ ├── LuaProperty.cs.meta │ │ ├── LuaReflection.cs │ │ └── LuaReflection.cs.meta │ │ ├── Source.meta │ │ ├── Source │ │ ├── Generate.meta │ │ ├── Generate │ │ │ ├── DelegateFactory.cs │ │ │ ├── DelegateFactory.cs.meta │ │ │ ├── LuaBinder.cs │ │ │ └── LuaBinder.cs.meta │ │ ├── LuaConst.cs │ │ └── LuaConst.cs.meta │ │ ├── readme.txt │ │ └── readme.txt.meta ├── Plugins.meta ├── Plugins │ ├── .DS_Store │ ├── Android.meta │ ├── Android │ │ ├── libs.meta │ │ └── libs │ │ │ ├── armeabi-v7a.meta │ │ │ ├── armeabi-v7a │ │ │ ├── libtolua.so │ │ │ └── libtolua.so.meta │ │ │ ├── x86.meta │ │ │ └── x86 │ │ │ ├── libtolua.so │ │ │ └── libtolua.so.meta │ ├── CString.dll │ ├── CString.dll.meta │ ├── Debugger.dll │ ├── Debugger.dll.meta │ ├── iOS.meta │ ├── iOS │ │ ├── .DS_Store │ │ ├── libtolua.a │ │ └── libtolua.a.meta │ ├── tolua.bundle.meta │ ├── tolua.bundle │ │ ├── Contents.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 ├── Sproto.New.zip ├── Sproto.New.zip.meta ├── link.xml └── link.xml.meta ├── LuaEncoder ├── luajit.meta ├── luajit │ ├── Build.bat │ ├── jit.meta │ ├── jit │ │ ├── bc.lua │ │ ├── bc.lua.meta │ │ ├── bcsave.lua │ │ ├── bcsave.lua.meta │ │ ├── dis_arm.lua │ │ ├── dis_arm.lua.meta │ │ ├── dis_arm64.lua │ │ ├── dis_arm64be.lua │ │ ├── dis_mips.lua │ │ ├── dis_mips.lua.meta │ │ ├── dis_mips64.lua │ │ ├── dis_mips64el.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_mipsel.lua.meta │ │ ├── dis_ppc.lua │ │ ├── dis_ppc.lua.meta │ │ ├── dis_x64.lua │ │ ├── dis_x64.lua.meta │ │ ├── dis_x86.lua │ │ ├── dis_x86.lua.meta │ │ ├── dump.lua │ │ ├── dump.lua.meta │ │ ├── p.lua │ │ ├── v.lua │ │ ├── v.lua.meta │ │ ├── vmdef.lua │ │ ├── vmdef.lua.meta │ │ └── zone.lua │ ├── lua51.dll │ ├── lua51.dll.meta │ ├── luajit.exe │ └── luajit.exe.meta ├── luajit_mac │ ├── jit │ │ ├── bc.lua │ │ ├── bcsave.lua │ │ ├── dis_arm.lua │ │ ├── dis_arm64.lua │ │ ├── dis_arm64be.lua │ │ ├── dis_mips.lua │ │ ├── dis_mips64.lua │ │ ├── dis_mips64el.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_ppc.lua │ │ ├── dis_x64.lua │ │ ├── dis_x86.lua │ │ ├── dump.lua │ │ ├── p.lua │ │ ├── v.lua │ │ ├── vmdef.lua │ │ └── zone.lua │ ├── libluajit.a │ ├── libluajit.so │ └── luajit ├── luavm.meta ├── luavm │ ├── luac │ └── luac.meta └── readme.txt ├── ProjectSettings ├── AudioManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset └── TimeManager.asset └── ReadMe.txt /Assets/LuaFramework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5c1d13959340d447b2061ca12f437aa 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d61493dfa61fb0419d49dc75503af38 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Editor/CustomSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6009ee7093201bf47a00cd49463a7258 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Editor/Packager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c3dbbb718b713b4e97b1db6e31346d7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 532b9379d4eb03644aaafa729334bb82 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a2d59191e3bf4c48a34eebdd1152df3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Message.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8199ffaa92a5bad448ac527da9401217 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Message/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6d3eabbb01f5ef4fb803a89322ce19a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Message/Prefabs/MessagePanel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Builds/Message/Prefabs/MessagePanel.prefab -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Message/Prefabs/MessagePanel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71bbe2cec41431a4c85d61f408a9931a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaa0f33a3d04fcf43ab93711ce170170 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 297953b79711e784ea05809a61888f69 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Atlas/Prompt.Atlas.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Builds/Prompt/Atlas/Prompt.Atlas.prefab -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Atlas/Prompt.Atlas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb74be8116392d44b8b620b65508c75a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Atlas/Prompt.Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Builds/Prompt/Atlas/Prompt.Material.mat -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Atlas/Prompt.Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34e695aacb8bff143bc8f7ba18f73cca 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Atlas/Prompt.Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Builds/Prompt/Atlas/Prompt.Texture.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea5c186149d3f7f47a20652e735a0d78 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Prefabs/PromptItem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Builds/Prompt/Prefabs/PromptItem.prefab -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Prefabs/PromptItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6977364229261084aa212003c00fc930 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Prefabs/PromptPanel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Builds/Prompt/Prefabs/PromptPanel.prefab -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Prompt/Prefabs/PromptPanel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4acea4e0cbe4ce40b4c3da7763ae270 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Shared.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c5ddae5cd12a2a46944368b767000d5 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Shared/Atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7245e3df6bbf6bd419af1367442139f0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Shared/Atlas/Dialog.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61f709c85647190469a35020b7bb6871 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Shared/Atlas/Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Builds/Shared/Atlas/Dialog.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Shared/Atlas/Dialog.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Builds/Shared/Atlas/Dialog.prefab -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Builds/Shared/Atlas/Dialog.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4dd9bc4dbb616d4085755dbe385d95a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f867e6c31cad2c43ba7307851193c72 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenContactIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenContactIcon.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenForumIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenForumIcon.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenHeader.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenSamplesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenSamplesIcon.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenVideosIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Editor Default Resources/WelcomeScreenVideosIcon.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b1b3b38451444948bd5f747c724a281 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Editor/WelcomeScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02c9b13360417c64aac6516738d7007b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70fb4d29f812dec4394b5d77eff8a119 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Resources/.DS_Store -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Resources/GUI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Resources/GUI.prefab -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Resources/GUI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7eb2ab8e1ad54e94783baa19f8be02d4 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef14071ccc8c1bd4cab4beea2e7c2a91 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Dialog.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 668dedca2953aa04eaadbd91d0303e99 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Dialog/ButtonClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Textures/Dialog/ButtonClick.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Dialog/ButtonDisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Textures/Dialog/ButtonDisable.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Dialog/ButtonNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Textures/Dialog/ButtonNormal.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Dialog/SmallBaseMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Textures/Dialog/SmallBaseMap.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Prompt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c58fec668dc05c41b02dab150c626ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Examples/Textures/Prompt/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Examples/Textures/Prompt/1.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ff240b0de4c2c4aa0bfa3805e7b880 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fef477624099d704ca56e26ccb995f63 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1119c4407810743de86d01fa652b2374 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example1.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6de770751412fd43a5fd1fe331dd761 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example2.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d487a1ee1528714a93defdc9f730dfe 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example3.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca313ab6bd2e8ab41bce696d1ee05a89 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example4.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c69a28c5662c2204787fdd352f5595c5 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/example5.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9298ce1cff4eae34087e1cf24cdc89cb 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/json2lua.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f17254f6d6b970429bbb11bfa82b22c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/lua2json.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eeb576afff9def43b0081f6d7b2125b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/test.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f35728f49db3fec4ea33001068e13c36 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/cjson/util.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce18eb063e6d6cb43a5db89f763dd13d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5717154c47289d9449d0cc51a3f78c4b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/Makefile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ef1f5e2c7f70334eb6018a524a41161 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/Makefile.mingw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31646aa6f0dd23c4bbb00c75c25256b8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/README.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2848b492482529244bd0d3cae9d98889 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/bitbench.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a0b5a88625014c48a99057dda7923c5 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/bittest.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32f558c2109e12a41b2d1f1400e82a66 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5fc982400798c4408b1bdc7357335f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/api.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e176ba8ca8fc7645bfbc4d53009a5a9 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/bluequad-print.css.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac6cad9836ef2aa42be0d44fe67cce1d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/bluequad.css.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51d1ba26d50c47e44b78257d90398dee 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/changes.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0ff59da8ad6f44e99e685a3cb5c627 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/contact.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d072c05c6fff47c47914b40192195e70 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/img.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 213a8412fa244f242b54a3383902415e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Lua/3rd/luabitop/doc/img/contact.png -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/index.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5503712ff1277d54b93febdc6208b110 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/install.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d6a7ce26750bdb499ecd7b013361538 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/doc/semantics.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2613d747ce41e8b4b90e5c45a2478367 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/installpath.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4192b766affe82640a5aee438c3b964a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/md5test.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 322f8fe07585d624bb3277c8e432a707 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/msvcbuild.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c89dc24e84d1841a654d3273df5698 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/msvctest.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93f44eeeebf603843aaeca13c9510165 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/luabitop/nsievebits.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27f415faeaf5a954ca75e5b632dda24c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c01725dffbd9b40b9b386e3d7c0ea700 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/addressbook.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Lua/3rd/pbc/addressbook.pb -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/addressbook.pb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b46453c983e6824cabb4f3d5d639ba3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/addressbook.proto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31723f391cfd51446b36f385ab093e6b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/parser.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ba7654d41605834bb8a232818a9ebf8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/protobuf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ba29465c7f40ae4aa388cefab41f5e0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/test.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c1211c0f06916048bef318d346d5f04 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/test2.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dc1b7c55df9f024689900af8eef3bb0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pbc/testparser.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24b27e96507cabd4abcf9f24e6a0aaef 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a26a655c69d98443e898aff76fc87e75 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua/login.proto: -------------------------------------------------------------------------------- 1 | 2 | message LoginRequest { 3 | required int32 id = 1; 4 | required string name = 2; 5 | optional string email = 3; 6 | } 7 | 8 | message LoginResponse { 9 | required int32 id = 1; 10 | } -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua/login.proto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f5ef4fb87587040afd36aa5620d62c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua/login_pb.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9c9ec3a721a0684ba88195d462e2241 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/pblua/person_pb.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8547a09e09800054285c19fb7a4f6c72 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fe0629549ff98e49b7f9eaffdcc247f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/print_r.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0cc54520d1d7eb498493479ceb15d95 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/sproto.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bec7f55cc120f241b5cab88bf230ac3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/sprotoparser.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5da2b55784b954744b87ba7434bbfc6b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/test.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 770c604ef5792ca4fb5fdb25616901ec 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/testall.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 938292c8d9e6fe546bedc5276526deec 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/3rd/sproto/testrpc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e5d4ccf4f7badd428fc6aed849504ff 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a9e9888a6a944b7595d96047083e405 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common/define.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 453aacf6267e73748b38e2d4d5df2e75 3 | timeCreated: 1426783365 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common/functions.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 945af47fecee10044989b172212a1256 3 | timeCreated: 1426783366 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common/protocal.lua: -------------------------------------------------------------------------------- 1 | --Buildin Table 2 | Protocal = { 3 | Connect = '101'; --连接服务器 4 | Exception = '102'; --异常掉线 5 | Disconnect = '103'; --正常断线 6 | Message = '104'; --接收消息 7 | } 8 | 9 | 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Common/protocal.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41c0bebeedd51e84fb0130409341ef47 3 | timeCreated: 1426783365 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76b5eb5d41dda43b78d9d6c414213910 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Controller/MessageCtrl.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b073d8d7f9880c4482d9c9d40b6b558 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Controller/PromptCtrl.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 709a4f9ec40526b459abc2e25192f509 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bd4c8762df45ba4b922467e09297fb6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic/CtrlManager.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 105072a955763134d8fe07ccaca1dede 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic/Game.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a211e85690e156749ad8816bba582708 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic/LuaClass.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efb0d6648bfd84c36b2c88e122dc06c8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Logic/Network.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7ede560670584545bf0b6620250fd0a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/Main.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 091b02c3490daac4f8ed8cd5b62090b1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/View.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ca4e7fdd1e1e7b4e8df29447d383ce8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/View/MessagePanel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50610ae62f65c49e8baea87c791eb3a8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/View/PromptPanel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 047a4b7afac7a4ef8876268bda036a9d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/eventlib.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb355d54d4306354cb2dfc482136aabd 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Lua/events.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c28c4dd769d9f694787a0b0fd64e8eea 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bdecd86d526ceb4d948ff5232ceea0e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/Build.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29159a0fb95eb7c41a8ec4bcc04ebffc 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07f7c301c90059944a8b9139154b979e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/bc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d18ce292c8e9a3446a5890f324daddc8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/bcsave.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cb37ebfedf93ae4b96e0da0d77065c4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_arm.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a5d0750f7c50434799a22a9fd01dd11 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_mips.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d6b0da48d262af4b902b41b630d7c55 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_mipsel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06a369592f16cc54b82ec90d905c271c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_ppc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16a81ab6de25d044280dbc5a24abfa3a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_x64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da9358785297a39428fd96e0e17ad8f7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dis_x86.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 676a7cf93973aa444ad7cf6d244083d8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/dump.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 029c25a735609054d81dee95957d1fc8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/v.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 724b205f5019d9449807abad317fbb38 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/jit/vmdef.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd5259d2e7ff79146978231b90c15d75 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Luajit/lua51.dll -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/lua51.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab20f84ba6209814ba85c9a77e54aaa1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/luajit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Luajit/luajit.exe -------------------------------------------------------------------------------- /Assets/LuaFramework/Luajit/luajit.exe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43ee52476d424f44894ee42f466b5440 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aefab26c7836d934786b0e05dce043c6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f535c2ed68d82f40bb5dd0bf543dab4 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/FreeType.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/FreeType.dll -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/FreeType.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f801416effc99aa46b3cf89b61a49c6e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/FreeType.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/FreeType.dylib -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/FreeType.dylib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83d67a4d19a9444f1bf70bcb6721b5d7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/FreeType64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/FreeType64.dll -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/FreeType64.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f04db6bee7da2094ea96d2d4541a3433 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7abc1bfabe3adb741a055c1da2f6f43f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Background.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Button.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Checkbox.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Horizontal Scroll Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Horizontal Scroll Bar.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Popup List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Popup List.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Progress Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Progress Bar.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Slider.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Vertical Scroll Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Colored Vertical Scroll Bar.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Button.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Checkbox.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Horizontal Scroll Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Horizontal Scroll Bar.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Horizontal Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Horizontal Slider.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Input Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Input Field.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Popup List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Popup List.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Progress Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Progress Bar.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Text Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Text Box.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Vertical Scroll Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Vertical Scroll Bar.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Vertical Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Editor/Preview/Control - Simple Vertical Slider.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad605b00a9a05b144b1166eb27f31ec1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35664f5772e49ac408f3c841391d67a8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Animations/Button.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8c465e83c3e18040884ef096f01647b 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Animations/Checkmark.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baa794242d9902a439adb42668119f24 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Animations/Logo.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a11ffd605e2eca74d9d8bbcb98aea4bf 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Animations/Window - Back.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21e432435c13c134384f3c0c36045919 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Animations/Window - Forward.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5eabd000b213209499a98e6757fcdcc8 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9a620564dcfe3343a4fa9c943d1d736 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Fantasy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acf5d72414c5b4b48a79011f93672118 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Fantasy/Fantasy Atlas.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7ef61ebb5c25394c8706a7ea658349f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Fantasy/Fantasy Atlas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f95e07e3d350bf748b0c42b453a69d2e 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Fantasy/Fantasy Atlas.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Atlases/Fantasy/Fantasy Atlas.psd -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Fantasy/Fantasy Font - Normal.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16a2d4ace59bac64dbcf4085964b38eb 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Fantasy/Fantasy Font - Normal.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad5ef776461ab4649b17aed42c0cea38 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 708e630e301aadf48bb95a46c94b911e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Atlas - Bump.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Atlas - Bump.psd -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Atlas - Masks.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Atlas - Masks.psd -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Atlas.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e76d0bdab6849b94aa507497bbb96687 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Atlas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1289d9a909bfda4e97fbd6af270d511 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Atlas.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Atlas.psd -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Font - Header.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc7978f4e2005ea418e07fdd0465efe5 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Font - Header.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c905e39dfae16404fa3c67e876cf74f5 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Font - Normal.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dfefea9e318d8c439ce15f9525c0853 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Refractive/Refractive Font - Normal.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9626bdc61f38ff2499f0120b8192607d 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/SciFi.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bb78ce364f54594a97ba5f358f5638c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/SciFi/SciFi Atlas.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d650d98b3c4028a4a8b7225c1a6482f8 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/SciFi/SciFi Atlas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f2473f73b9ca724f9080d6d76009ea2 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/SciFi/SciFi Atlas.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Atlases/SciFi/SciFi Atlas.psd -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/SciFi/SciFi Font - Header.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a48ea22e80d1ac4b97fdd87f9009546 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/SciFi/SciFi Font - Header.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1418064d34626b408a38cccae0d422e 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/SciFi/SciFi Font - Normal.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac44b8a25154a9d40a172ab5851e0986 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/SciFi/SciFi Font - Normal.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ae1125e63fb80f4d976caeb67d641a4 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 987a2b1e1974477429a35863afff9c4a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo14.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 800fce3d977b52d4cadf1a0790a413f0 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo14.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo14.tga -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo14.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbfb3121457347d40b85543a3884da43 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo18.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f5e030a8cdc292438f880d3ec49ef64 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo18.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo18.tga -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo18.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 394ce1e2bba14ce45bee393b8728818a 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo20.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29056518aafb01b49a5b08faf8e30cff 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo20.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo20.tga -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Arimo20.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 015fa701d862b2f4bab32228aaade619 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Coalition.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93e68f7902ba67545ba1e60502873fb5 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Background.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f972f5483b779142956dc9ac68b71a7 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Colored Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fee46b827274e694aa251e2d36700135 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Colored Checkbox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d817ce413af090746808cf805ff3375b 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Colored Horizontal Scroll Bar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daa32720f1eb9324eb99463ea71cbef1 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Colored Popup List.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea7ea4be01fdadf45a93ce4ffd074f36 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Colored Progress Bar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b2eaf764cd5dcc498274816bd1bec13 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Colored Slider.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d6f4f3ab0ce7924ca9daf1717928185 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Colored Vertical Scroll Bar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f802c84f4ff4e1489958bbce5149bcc 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c3a28b051e872b448d4808cfcf9199c 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Checkbox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8298f3014addb4740b073bab416a0335 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Horizontal Scroll Bar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f3c0d790c9a5494ea6e015207ab9c4f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Horizontal Slider.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43662805c0ee7b24abe17486ab2b2e42 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Input Field.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45edf347f9f51214dbfbab27b16fbf01 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Popup List.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 004eb8234dcbc3f4bb49009e57a6ed44 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Progress Bar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b0d1c50c984d704f94ef3e458f797fa 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Text Box.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23c0cd5b08147994c821cf4615b25bc7 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Vertical Scroll Bar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df7390d50d06a4b4b893085286142266 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Control - Simple Vertical Slider.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73c06049ef328174489241d773446e1f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Wooden Atlas.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec268c3ea1baceb4abb2168daed86f68 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Wooden Atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Wooden Atlas.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Atlases/Wooden/Wooden Atlas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62adb30369acbf943a67cee0f69267a3 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89640f6506114154a820326d9af6b1eb 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Materials/Backdrop.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c2b3cc909d408944b7528b7e39f4d38 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Materials/brick.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c91d13dd6a85732418472200f4abc68c 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Materials/burlap.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19fb2eefdd5dffc40926407f1e877f90 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Materials/sand.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a40a40a3e330dd64b88859d19e82b8ec 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 662793f87f677d44d85639d75a73ba46 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11da5cfbff37afd419617e96054d5401 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Bracers.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Bracers.FBX -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Armor (Diffuse).psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Armor (Diffuse).psd -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Armor (Maps).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Armor (Maps).png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Armor (Normal).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Armor (Normal).png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Armor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67ee969cd76de204fabb3af9227ad2f3 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Armor.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed64773f587bb9846918065b72c58283 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Bracers.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d847f26b6745fb4d9076f59a3cf0151 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Orc Shoulders.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6b1ee5e07651d74fa5f4b8f8adfbc9b 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Shoulders.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc Armor/Shoulders.FBX -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 307cac796b73e6443bfffe5622171f55 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc/FBX.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc/FBX.FBX -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc/FBX@idle.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc/FBX@idle.FBX -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc/FBX@idleBreaks.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc/FBX@idleBreaks.FBX -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc/Orc Skin (Diffuse).psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc/Orc Skin (Diffuse).psd -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc/Orc Skin (Normal).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Models/Orc/Orc Skin (Normal).png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc/Orc Skin.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82ca0ae319ab64341b8336b689389d6b 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc/Orc Skin.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a11c15d03723f5d4898122ca4176e6d4 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Models/Orc/Orc.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e773be3c69e0ef49b8ae5ee2b644fbd 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Other.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89e97d4664617e741a4f45225afb3dec 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Other/Storage Icon Template.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8b3491109ac9a54981225a3a7876ace 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16baf8473dcd4ed458e3b1f66944155d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Resources/Localization.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a81d146fc1c79a649a5ce2327a40d8d3 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc6b8e4c617310a4fb90500dbdab4e56 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 0 - Control Widgets.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33872ef6c1d9b03418a3c571f1e6bcc4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 1 - Anchors.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1a629371c484164e85541902c003f93 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 10 - Localization.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c56710aac7fb7714fabd339ec0832f7b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 11 - Drag & Drop.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d9c1ac4eded11d46b40e7949b834ca1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 12 - Chat Window.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7405180428fe944f9c9e0185cf9366e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 13 - Tabs.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14fe17db4f51e4d4b9b0f63f3fdc8600 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 14 - Endless Scroll Views.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1f9c736228c5e6418db57dd42570c03 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 2 - Interaction.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d07112ae35e3b49439de26a882a05e95 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 3 - Menu.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 474217fc05d321a42a8e55d9b14c7f0a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 4 - Controller Input.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ea6b02917b630644ad13e20afbe4f6e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 5 - Lights and Refraction.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3179bb385b3703449b588ae70428dd3d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 6 - Draggable Window.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7b5ccaa3ff373a4ea0eb310cb86421d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 7 - Scroll View (Panel).unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 651a1500e5e710b4b94d6b620741138a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 8 - Scroll View (Camera).unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53c9f540c7228b54e8593bc0b0db1415 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example 9 - Quest Log.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52345d7deca6f844e9aed924a00fcc2c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Example X - Character.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a5a55ad607f621418e7ca710de5ba04 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Tutorial 1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a02d27ea09f7854ab4409b51c84dfe1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Tutorial 2.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f179cb5ecea510d4983ccae256a008ac 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Tutorial 3.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 070666400d49df049a7f49d6a33defa6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Tutorial 4.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dbe00b5349edd843a205c7af7250b0e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Tutorial 5.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcd8bc4cc1c5f6f419adb680f244808f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Tutorial 6.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 626f82a3943eec6468bd1b085d8fb907 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scenes/Tutorial 7.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae1b853772f4c124ab62237544255ba4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c128e4bf7dfe2ff48ab74dbb3055c398 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scripts/InventorySystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de8aa54045770a84ab93ebe04831dcba 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scripts/InventorySystem/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19efe962ed720b24e94743b984aad16b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scripts/InventorySystem/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64bcea337c8d18f4a9055c56dc45e63e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scripts/InventorySystem/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf9f82e9121954e4ab411f5c174b53ce 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Scripts/Other.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b5844c4c66f34d45acb150ff8077ebd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a6ec181c9b0efd4e8876a88ebf2b8ff 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Shaders/Refractive.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9bef69d3483c064f88f285d261cbd10 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Shaders/Unlit - Additive Colored.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f21c51d36eed214682950784e00f775 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Shaders/Unlit - Depth Cutout.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ebcd00c1d17d441abe69a60007327e 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Shaders/Unlit - Depth.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14ad1d2e194edae4a832ab596261ca59 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Shaders/Unlit - Masked Colored.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9585a629f3ca7a41863121f0b99af20 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b29d356486563d479d2db3a0e1faa63 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Sounds/Crumple.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Sounds/Crumple.wav -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Sounds/Rumble.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Sounds/Rumble.wav -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Sounds/Swipe.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Sounds/Swipe.wav -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Sounds/Tap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Sounds/Tap.wav -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97009df997e120c4b8cd27aaf535a7eb 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Textures/Backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Textures/Backdrop.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Textures/brick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Textures/brick.jpg -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Textures/brickNM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Textures/brickNM.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Textures/burlap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Textures/burlap.jpg -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Examples/Textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Examples/Textures/sand.png -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/ReadMe - 3.8.2.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05d75e209a8e9dc4096a834edfea27bf 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e6d8741e470af94285133f16475be43 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 298a41c43c8f58247ab89979efd1019b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Premultiplied Colored (TextureClip).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 773952d1ab5b7714392cdc5473b20244 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Premultiplied Colored 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93c84009f8f004b4f84697c8cb12dd63 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Premultiplied Colored 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65ca32170bb371f459991a5d7696a9ba 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Premultiplied Colored 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e82b392f79aa394fb1a579743600d5f 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Premultiplied Colored.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed5591596df551e4c8f4b05ce88a7a07 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Text (TextureClip).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eec9c90e5acd4d74d9e021119fc70cf8 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Text 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f39f1d1f2f3ee04bb793082eee05819 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Text 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37590480333382341b5007dec2a032c6 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Text 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27275fc7df2ec0346ba12831e6a01345 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Text.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 773417da4aa1b46409bd1e7574dcb251 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Colored (Packed) (TextureClip).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e37f44f1a08cf594fb6b3919774527ed 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Colored (TextureClip).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 720c2c242cde13e4188964c550502b5e 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Colored 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf9ebc36d43f657468fecb524763e3bc 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Colored 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1682092270f88d04bb434756a984ea87 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Colored 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c0a1aa668787ad42a48d1a535825520 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Colored.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e75727d9555d9d14ca51d91908c681bc 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Masked 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cd1f5408130bdc4cbcf8c8fab8efd21 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Masked 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6f11eb0ceeb5e044b3199208e1a99bf 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Masked 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 222c64d503379884db00185ebbe08590 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Masked.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9300d87db4ad0b0439f6fb97c3ce8ccf 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Packed 1.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 182695e850938314fa6675a8926ad9ee 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Packed 2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4f0faf73e6bf89419cf29b611f29ade 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Packed 3.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ba9e7ba321b2c4d97f6a19f1deab6a 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Resources/Shaders/Unlit - Transparent Packed.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3fd145b191cf4040ac6b55cda352a53 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0606e17ebdec67a439fef9b77176fabd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29136b1a63711a141bcfc47c02e4c3a1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Editor/FreeType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2276a2bded84b474baf9d0cab753c900 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Editor/NGUIHelp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4be77d5f0fc53034eb1f99be556de17f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Editor/NGUIJson.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d03d26915d3a63542807ee5e560595e0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Editor/NGUIMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e55520451765634c9abb4830c2b53b3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Editor/NGUISnap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa846fbc3d8dc874295406a55de7e200 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Interaction.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45d02d8d61ab82148beaa0e15dead959 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Interaction/UIButtonActivate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/NGUI/Scripts/Interaction/UIButtonActivate.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fce4680d39b38ae4fb4aa6a03f8f3b67 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Internal/BMFont.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9254a456c0f8d064a9f8c8596ce772c3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Internal/BMGlyph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43133e037305160469507743bfeb73fa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Internal/BMSymbol.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf11dfea9b50b5745b17e71aaccde1c7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Internal/NGUIMath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24438193675d223439c8b044419aab8c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Internal/NGUIText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a8ace6ca0abad0469f6f961e94e9b28 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/Tweening.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6bdd27938945f0449bc8fe7947f2bf2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5949771cb7bf2144b457d1226aaa7b5 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI/UIAtlas.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d0c51bb0b6e93049af5e88f93826e3b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI/UIFont.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b4eb3a400afab046abb8471a9d746d6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI/UIInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac5060295fbd39b4a88d20d0c83d925e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 1 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI/UILabel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9d0b5f3bbe925a408bd595c79d0bf63 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI/UIPanel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae942c9068183dc40a9d01f648273726 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 300 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI/UIRoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c5ecb5660b11414fb042fb826e03b73 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -250 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI/UISprite.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b3dc54f924693f41b5cbecb267e647a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI/UITexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5c5ca47aa5c01740810b7c66662099f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/NGUI/Scripts/UI/UITooltip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbc946d84fba95f41a0136cf378875be 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2b94ce93f0c5da4481d023b2349fcc8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4dd41526542a5b47b77fbf85fbbc51e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scenes/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Scenes/main.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/Scenes/main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75eee5e7009aba84192cfcdff8590f2a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 340bca7100420314d8cde6bde4e69bf6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0489f1f062fbaa428bd858ee3b0dfad 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Common/LuaLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f87eaa2cba023ab41af1d196050efe27 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ConstDefine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f30b8efb33535e344956818eda26424a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f53ede58c834bec469aa20f060c7ec21 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Controller/Command.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98a0baf71a27f004ab94bc5fe91bc593 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee8680d1893cce644962e37da90c742f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/ICommand.cs: -------------------------------------------------------------------------------- 1 | /* 2 | LuaFramework Code By Jarjin lee 3 | */ 4 | using System; 5 | 6 | public interface ICommand { 7 | void Execute(IMessage message); 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IManager.cs: -------------------------------------------------------------------------------- 1 | /* 2 | LuaFramework Code By Jarjin leeibution 3.0 License 3 | */ 4 | 5 | using UnityEngine; 6 | using System.Collections; 7 | 8 | public interface IManager { 9 | } 10 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Framework/Interfaces/IView.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public interface IView { 4 | void OnMessage(IMessage message); 5 | } 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Main.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2657b437af1f1fb468fa83db2e72a8e4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e037ccb531438b498940c40edb54326 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/Interface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 273d363bb96c7e947a93a7b2e480a613 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/Interface/ITimerBehaviour.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | 4 | namespace LuaFramework { 5 | public interface ITimerBehaviour { 6 | void TimerUpdate(); 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/NetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Scripts/Manager/NetworkManager.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/PanelManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Scripts/Manager/PanelManager.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Scripts/Manager/ResourceManager.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/SoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Scripts/Manager/SoundManager.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Manager/TimerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Scripts/Manager/TimerManager.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b0e4504435d17a42a0a79938ed843e6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network/Converter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ccd07face6ebb5469d1cbed8e8b4789 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network/Protocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/Scripts/Network/Protocal.cs -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Network/Protocal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44d57d2c5dd4548479b3cd5d47520699 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/ObjectPool.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a04aac0308faec141a1ed9607ef45054 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baa37d76ca33abd438e215438cd16438 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Utility/LuaHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fadb041995bd43c39452d556987ec25 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Utility/Util.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c84f38ab1ae51417cbe07d1aa73913bf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/Utility/WrapGrid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 013c117a48358a8498419b4d900767fa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/View.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc761d0fb6083a1429e777b8588ca326 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/Scripts/View/AppView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18ad91de016c7ea429fb9b8d70237c02 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60b2781581d05e641a1e88ac83e6bfb5 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/BaseType.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 337508ffab1cff64bbf7476789c95d59 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7714c4ebcd6e6474da6ec5df53bca350 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 036fab5eb22f19e4bba933e194fb4756 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaBaseRef.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39292548101f65b41be91c5d20f20812 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaBeatEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7332596f22ac5446852c531d7148318 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaDLL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d60cef534e986e849a829838fbeb74b5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce5b2d0ac4f71564c84ecc85556409a4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b37c8a2d4e86364c85c26a407d79af7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaFileUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1dfae6a246cdf418b607701b2dfc7c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f2e7f7664506cc45b1e1d375c066432 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaMethodCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d0c295670bdae343be5791ad4a0e9ae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaMisc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49b0c76b911a9d34bac07d4b3aa7f6de 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 358b86bdf79858e46b17d8700238c397 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaStatePtr.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e68c435592e3d3b47a315497b6150aae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaStatic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7f8fdc4e97256748b422edf401c641d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaTable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b68fd1e3004ea4a4a879bf6fbda73510 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaThread.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c80e713269311db4689148e01949206a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/LuaUnityLibs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f293d0bd6470a044a8688cd9a61b433 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/ObjectPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 375ac727a60642f4e9db9303e4025911 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/ToLua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8558028e53ff5d946b0ef857634815da 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Core/TypeChecker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2c5d493c1805784994fefe7b22da126 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d9fa950d6c449e42893b939877b4ec7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/Extend.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdd2718c24fc3014d96c208f87886fe3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/ToLuaExport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73e814f0ef0ab914181c1f1e0a989935 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/ToLuaMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97fb7996cd1338442af03841f30cddaf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Editor/ToLuaTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99b4e579c20c91f4d84ce5aa9add4672 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 940a49ebae9b91b4fb0682c92d968933 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/01_HelloWorld.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79324a58d1dd94843a6e15fb4d77da66 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/01_HelloWorld/HelloWorld.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/01_HelloWorld/HelloWorld.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/01_HelloWorld/HelloWorld.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ce3f2dc80a0205428a5372f74800258 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71ca7fe863de8dd4d8a6057d043df5e4 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.lua: -------------------------------------------------------------------------------- 1 | print("This is a script from a utf8 file") 2 | print("tolua: 你好! こんにちは! 안녕하세요!") 3 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbc95a40dca6ccf448ff2a7f1905e751 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/02_ScriptsFromFile/ScriptsFromFile.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e011b54a109dd1c43b5ed71ca3590a32 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/03_CallLuaFunction.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b90da095ffcaa34891335989ba05ddf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/03_CallLuaFunction/CallLuaFunction.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/03_CallLuaFunction/CallLuaFunction.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/03_CallLuaFunction/CallLuaFunction.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b95d9c7995843244812901527540c78 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/04_AccessingLuaVariables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b3a357bb0337ee438db20f82382e246 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/04_AccessingLuaVariables/AccessingLuaVariables.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b440f9ea3ca78884cbc8bd834a84ee54 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/05_LuaCoroutine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aab46dd051561242b5f1dd79f189a42 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/05_LuaCoroutine/LuaCoroutine.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/05_LuaCoroutine/LuaCoroutine.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/05_LuaCoroutine/LuaCoroutine.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 811fd4e3aec57234ea72e1ed44701a9c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/06_LuaCoroutine2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bf03102ccd94cb45afe01e02bf19184 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/06_LuaCoroutine2/Coroutine.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/06_LuaCoroutine2/Coroutine.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/06_LuaCoroutine2/Coroutine.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4db2739d8c3e5af4ca5647e7ded00f68 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/07_LuaThread.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34683a8c5207cb3438b3b06aa2ef38c8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/07_LuaThread/TestThread.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/07_LuaThread/TestThread.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/07_LuaThread/TestThread.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bc55bdc0d2bff34a9abc55c4eeebdc0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/08_AccessingArray.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d74fee3fd9c8cb64e8d8083fb944a9c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/08_AccessingArray/AccessingArray.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/08_AccessingArray/AccessingArray.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/08_AccessingArray/AccessingArray.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f3cdbddf148392458f85eed2085860c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d308146ac25b5a74d99ced6f74495105 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary/UseDictionary.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/09_Dictionary/UseDictionary.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/09_Dictionary/UseDictionary.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dc40f31458a9544aa74bcdad6d15d06 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/10_Enum.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbe9c6c5abd052b488c851260cc2cb92 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/10_Enum/AccessingEnum.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/10_Enum/AccessingEnum.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/10_Enum/AccessingEnum.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a217aecbea099fd4cbb21c9795f57884 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/11_Delegate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bafe37b805a5b274aaee648a0b64bcb2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/11_Delegate/UseDelegate.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/11_Delegate/UseDelegate.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/11_Delegate/UseDelegate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c371c24024790e4fafc6efd6656ffa8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/12_GameObject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c05e0dc08239c724bba79944e7ccbcaa 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/12_GameObject/TestGameObject.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/12_GameObject/TestGameObject.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/12_GameObject/TestGameObject.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd44e2bbf67026a4eb7a12cc132f5515 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc9a6d7d2170ce43bfdcb7197628a9d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader/CustomLoader.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/13_CustomLoader/CustomLoader.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader/CustomLoader.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a15f71c3e8ada48bbf2dec47d8eb0d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd85633be4068ee4b8d8f4744a4a9386 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader/Resources/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d26bf1a8a6d42954eb332fd9957140d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader/Resources/Lua/TestLoader.lua.bytes: -------------------------------------------------------------------------------- 1 | print("This is a script from a utf8 file") 2 | print("tolua: 你好! こんにちは! 안녕하세요!") 3 | 4 | function Test() 5 | print("this is lua file load by Resource.Load") 6 | end -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/13_CustomLoader/Resources/Lua/TestLoader.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d249a195df84a8e448b95867fdc844df 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/14_Out.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9762f66a6f78d843b27a77925f63e3f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/14_Out/TestOut.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/14_Out/TestOut.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/14_Out/TestOut.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1cff06827ae69d45ba691b5714e066d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cac1317b8ab1d3a438e2fa736a69d7fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/ProtoBuffer.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/ProtoBuffer.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/ProtoBuffer.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a4304ba0253d9241b8bf736a8607df6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/TestProtol.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using LuaInterface; 3 | 4 | public static class TestProtol 5 | { 6 | [LuaByteBufferAttribute] 7 | public static byte[] data; 8 | } 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/common.proto: -------------------------------------------------------------------------------- 1 | 2 | message Header 3 | { 4 | required int64 cmd = 1; 5 | required int32 seq = 2; 6 | } -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/15_ProtoBuffer/person.proto.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f84fe6c5b2078174bb56bed15abd687b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/16_Int64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56454d123fe4d2a47a2a1bf5e9a7399b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/16_Int64/TestInt64.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/16_Int64/TestInt64.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/16_Int64/TestInt64.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f5fdf9606a2d854590fcbd3926005e4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/17_Inherit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49da3d0eb205def459dc639d92b7cc77 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/17_Inherit/Inherit.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/17_Inherit/Inherit.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/17_Inherit/Inherit.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3cf1516f0a320b49a263c1fed026319 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/18_Bundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07aecff784dcab84393e4fad04c7b35d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/18_Bundle/TesetAssetBundle.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/18_Bundle/TesetAssetBundle.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/18_Bundle/TesetAssetBundle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 207ce505e47eb8542963d4972b45b05d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/19_cjson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c1a9e6cb95cdea4cbc97a336446abe8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/19_cjson/testcjson.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/19_cjson/testcjson.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/19_cjson/testcjson.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dbc965b474b6824db5cb79d380403e4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/20_utf8.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48896cd2daf4f4542ba776681732210a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/20_utf8/utf8.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/20_utf8/utf8.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/20_utf8/utf8.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74b6932cd0642734eb36e554528a9825 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/21_String.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7bfd51b922b87a4ba399b7f73540493 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/21_String/TestString.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/21_String/TestString.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/21_String/TestString.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e6bca3bb283b3247a8692ac6e03d4ff 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/22_Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1160a89e211090a4ea787fb5145cc984 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/22_Reflection/TestReflection.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/22_Reflection/TestReflection.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/22_Reflection/TestReflection.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c297fdd08a27a54a96505801547f7b2 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/23_List.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 665099d7241e1a54fb217e3b172e21a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/23_List/UseList.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/23_List/UseList.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/23_List/UseList.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4f35714ff91744489f71618b0ae9fd8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/24_Struct/Struct.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/24_Struct/Struct.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Performance.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f240c18ff8d4eb44390f8d949e2f6fbd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Performance/Performance.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/Performance/Performance.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Performance/Performance.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0693d19658479a642a7faaa61feb2c09 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9efe91d34eaff5a4ab3530e47ea50385 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd85633be4068ee4b8d8f4744a4a9386 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d26bf1a8a6d42954eb332fd9957140d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/Protol.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0882b1dfb9d5f9e408ec017206a4946a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestErrorStack.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a540e20118516b1449b2bb6293d1030a 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestLoader.lua.bytes: -------------------------------------------------------------------------------- 1 | print("This is a script from a utf8 file") 2 | print("tolua: 你好! こんにちは! 안녕하세요!") 3 | 4 | function Test() 5 | print("this is lua file load by Resource.Load") 6 | end -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestLoader.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d249a195df84a8e448b95867fdc844df 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestLuaCoroutine.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e90f8f033d17114297577d8cde2677e 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/Lua/TestPerf.lua.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07657567fb0a4fe439b7e52f48d787e1 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/Resources/jsonexample.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d7edaf98b78bd84297bb888bf41ed02 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00b15eee8aab8d64e844fc53ee7395de 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate.prefab -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec8a2f7e4eaf1c64e8393014e602047c 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate2.prefab -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestInstantiate2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e472cc047eb20841bbb7c64dfeb0d78 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestLuaStack.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestLuaStack.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestErrorStack/TestLuaStack.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 706020e5c3f37944995bfe00955fdd39 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestInjection/TestInjection.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/TestInjection/TestInjection.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestOverload/TestOverload.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/LuaFramework/ToLua/Examples/TestOverload/TestOverload.unity -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Examples/TestOverload/TestOverload.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45830782541ee7a49b44eb5a02d7ecef 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b3be0814bb45e640973aea4f6303a33 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/Build.bat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df27f3565c885a1419249346792d53b7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c23205cbb914d9943ba97091e50d9d34 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b31921aad5a29bf48b69fbad423de1be 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Reflection/BindingFlags.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 447334b96205b8040b534702d8d806c6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/Timer.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e891968e6d367cf4da81d8c24a52c358 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/ValueType.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab9e4d6fcf702740a4c66965903ed1f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/System/coroutine.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69692ffc56243fb4a8d655a208364fec 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec9654611f40bd64cb988c5f45494721 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Bounds.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8643f0e46fe222e48919766d7b0c7c5f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Color.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54770d2645593c347ac25713a6d332e3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/LayerMask.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08700fd491ce4cf4ba55fd9832b9f9cf 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Mathf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cfbc4fb807d4e444bd41df7de6c249e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Plane.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3971497c90061f4d9c0e9a99b5bbcbe 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Profiler.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37c51fa1e5d7c094f8620b364c731293 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Quaternion.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc8181e6244125146a87c5b83c380a92 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Ray.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 436d981c3546acd44a03048767c0d85a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/RaycastHit.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 707a4e1a225007d45923200abf2c9c13 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Time.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f2e1d9dee4ecaf4b8734c59f1c9f3b5 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Touch.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48ee0c1b8478eba4f9338e5ec4a14d40 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Vector2.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebac0a3bf4e463249a78081c5cc3abcf 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Vector3.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3697c841f98720444b380cc2756c17ea 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/UnityEngine/Vector4.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e294d4af7e55084dadac8ee7a76099d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/cjson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51fabff50886aea4ca5100ee3396939b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/cjson/util.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6b21c50e0c10c840bb4965a6b03fdc1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/event.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cb3ad8be0f474f4c997acf1b791b133 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/bc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f0b5eb903971c641845b50fec99cc42 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/bcsave.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c57519f5e4f846c459de1f2eaa13da69 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_arm.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ca08f899c4b9e9468fe93edcef60270 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_arm64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4d4c9abbcac24849b38a339a3bf4529 3 | timeCreated: 1494052836 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_arm64be.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9743f232842733e4c9e3b478b8adbffd 3 | timeCreated: 1494052836 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_mips.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24d7d1c35dd3f7b4e8b37409571d4a8d 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_mips64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45cd531eacd4e694585cb017ffc7df14 3 | timeCreated: 1494052836 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_mips64el.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c933838018073f44d8b9cb738c3ef6f8 3 | timeCreated: 1494052836 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_mipsel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b8e829ec84bb8e4f8b56474c9812d02 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_ppc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1231975d3fb5f1b4995c9112ea3537f4 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_x64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9997149317d8a6458002e31b320c212 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dis_x86.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3244c54564aeae24daa6a81b810b9d3f 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/dump.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d03e3137c36cc2468b3fbc7d489f17e 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/p.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 413d3a4d59c39ea48b62dbb8f1b361c3 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/v.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e83d256a881de8f4ab20afb40ff611f7 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/vmdef.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5d8aeae2f0a20e4396eefb2f2dc4268 3 | timeCreated: 1492693197 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/jit/zone.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af44e752354375746813d50c6d26b867 3 | timeCreated: 1492692752 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/list.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0d0ca55b7df3414aafaf11a39c13378 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/lpeg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58143f62c40fa4143903b5b1abc707fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/lpeg/re.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7e8b1ba4c06a4d4db879ad831cb62f1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/ltn12.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f6ae256ba8bd244692e687b1b0ece95 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/mime.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78de065ed4e50984eba196a41070d017 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08e54c61aaaa7c545b03c37c12e41df1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc/functions.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ad071edc48d0d8469028957a2df9c67 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc/misc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65f0fec8c62c56a499fb800e5e7b5048 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc/strict.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4df6e3671aafc8e4d82fee6a2cf5948e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/misc/utf8.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7ac60fc5e653564588e60deb91863ee 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 588f81265fa730e41a5371957a46eb61 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/containers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b091e6d28e2ea5b469fa0ef87c372f3a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/decoder.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99e0d332d92e1c44ca56267a2b3bdcf9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/descriptor.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec5270fc0e79e1140be77c303c4874c4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/encoder.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59c27d5459f0dfc4ab1077ce6f391ea9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/listener.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7778f4f6aeddbee43984c5da8cc06953 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/protobuf.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afc64cedbe4a843499e187d95d272f06 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/text_format.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11ebbcbb210e532448bcc1440a557d8f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/type_checkers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d553dac9a25c84c9c7d74608783a1b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/protobuf/wire_format.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ba9c90e50e89e4da2ee869851300a0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/slot.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5040eeedfb5e1bf4b8a5294bba19ca0b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63c3bb6af007b6344af9a86ef0b7e225 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d809aad390df7d54a95d719367731993 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/ftp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d703a862f37cfb42a2937b6f2cc9df6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/headers.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62876db61c32bf6499db08ea59ccff1f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/http.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 209e83764932d974287e82cda5febaf7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/mbox.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b179323d673f3f04996fc0b22c0817bb 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/smtp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fb16f8ece254ef4d9c196242b49a8ae 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/tp.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f81b525c8aa6ab6408db2989c91556cc 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/socket/url.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f52d8d21085d51c42b5e27aca557bcd9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/system.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c23205cbb914d9943ba97091e50d9d34 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/tolua.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dab8762e884a1c469dd11f6d2044a0f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Lua/typeof.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7edd4f2975d3f54f8396b61d8b34944 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ec2002202db97649bcdffe1705c0bdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d41d4486c02e3e4ca1c1f12f7a48a95 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaCoroutine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61c0f3aff91dfbd4097181bfb8c99d7f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaLooper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d56dbfed903b80e498bb872845c17e7e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: -10 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaProfiler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29c635f2321c2dc48aea28e8e6accb7e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Misc/LuaResLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61b6ccc77a2cfc341963b08eb6cb4dfc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa102ccbff5f099439b7e15b5f491b59 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Reflection/LuaField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac0dd1f9fec2afa4e96fc2f583688c5a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51d939fde26e0e14891f186ff8635b87 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Source/Generate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0a78131d3329a6429aef18c841165dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/Source/LuaConst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35b0c8bef181f2d4dacd3c860eb546a7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaFramework/ToLua/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c85b2c9de573bc54881ca0c2427016cd 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9817b81af8647924bb6bd575a5417943 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/.DS_Store -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 729c01aec7bba814d88608249c8a170b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72b436146481b3f40b05eb161ca7f39c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 034154e518117d842b99fd1f19efa3a3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libtolua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/Android/libs/armeabi-v7a/libtolua.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libtolua.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fb9a29f65e536b4293f7f9affd19158 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d76e3311efeac224996b0cb7a06a7a3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libtolua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/Android/libs/x86/libtolua.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libtolua.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bf04aa9e8715d047898e94157e2decd 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/CString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/CString.dll -------------------------------------------------------------------------------- /Assets/Plugins/CString.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b7ad0b8e3df0e74cad98cee98108337 3 | MonoAssemblyImporter: 4 | serializedVersion: 1 5 | iconMap: {} 6 | executionOrder: {} 7 | userData: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/Debugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/Debugger.dll -------------------------------------------------------------------------------- /Assets/Plugins/Debugger.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c33668af923d0aa4ebd48ebe80ef943a 3 | MonoAssemblyImporter: 4 | serializedVersion: 1 5 | iconMap: {} 6 | executionOrder: {} 7 | userData: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48e42b60abfb25b488c56d81b63e4646 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/iOS/.DS_Store -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libtolua.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/iOS/libtolua.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libtolua.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8492849dccfbfce4485d383c0ce84651 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d67965ea35e33fa4f8179bc8f4f3ce74 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0268dd48105753c49a78ed114d6a398e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81a8c861624bbed45b70b29beb4a90ea 3 | timeCreated: 1454253412 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f47ce9b3acaa3ad4e93c7d3977c574f0 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/MacOS/tolua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/tolua.bundle/Contents/MacOS/tolua -------------------------------------------------------------------------------- /Assets/Plugins/tolua.bundle/Contents/MacOS/tolua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6873e7aba8a271643862740896b03cf2 3 | timeCreated: 1454253412 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/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/x86/tolua.dll -------------------------------------------------------------------------------- /Assets/Plugins/x86/tolua.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3b9938f609831e41b7ffc0f4108166b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ea0a8e1f899b1148badb9e92b431566 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/x86_64/tolua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Plugins/x86_64/tolua.dll -------------------------------------------------------------------------------- /Assets/Plugins/x86_64/tolua.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82bce848ef6ade348a8220c2ada7da08 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Sproto.New.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/Assets/Sproto.New.zip -------------------------------------------------------------------------------- /Assets/Sproto.New.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e448ac026f997b4e93eb60bd8d21bb1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d0eb461ac328347a86a1727144872e 3 | timeCreated: 1498812386 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /LuaEncoder/luajit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 275aa2b63c7625046b31a302e2c71967 3 | folderAsset: yes 4 | timeCreated: 1427153877 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c6dce3c1e9409c49a82b4c844b8b1e8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/bc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d18ce292c8e9a3446a5890f324daddc8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/bcsave.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cb37ebfedf93ae4b96e0da0d77065c4 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_arm.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a5d0750f7c50434799a22a9fd01dd11 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_mips.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d6b0da48d262af4b902b41b630d7c55 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_mipsel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06a369592f16cc54b82ec90d905c271c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_ppc.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16a81ab6de25d044280dbc5a24abfa3a 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_x64.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da9358785297a39428fd96e0e17ad8f7 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dis_x86.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 676a7cf93973aa444ad7cf6d244083d8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/dump.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 029c25a735609054d81dee95957d1fc8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/v.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 724b205f5019d9449807abad317fbb38 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/jit/vmdef.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd5259d2e7ff79146978231b90c15d75 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /LuaEncoder/luajit/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/LuaEncoder/luajit/lua51.dll -------------------------------------------------------------------------------- /LuaEncoder/luajit/luajit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/LuaEncoder/luajit/luajit.exe -------------------------------------------------------------------------------- /LuaEncoder/luajit/luajit.exe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd87a0d5c3e11194094c1d320c512068 3 | timeCreated: 1427153877 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /LuaEncoder/luajit_mac/libluajit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/LuaEncoder/luajit_mac/libluajit.a -------------------------------------------------------------------------------- /LuaEncoder/luajit_mac/libluajit.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/LuaEncoder/luajit_mac/libluajit.so -------------------------------------------------------------------------------- /LuaEncoder/luajit_mac/luajit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/LuaEncoder/luajit_mac/luajit -------------------------------------------------------------------------------- /LuaEncoder/luavm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c052792286bb34e31ae62709d3413dfb 3 | folderAsset: yes 4 | timeCreated: 1437067855 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /LuaEncoder/luavm/luac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/LuaEncoder/luavm/luac -------------------------------------------------------------------------------- /LuaEncoder/luavm/luac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db51ecd932e1b4a2ebea41eec713f58e 3 | timeCreated: 1437067855 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /LuaEncoder/readme.txt: -------------------------------------------------------------------------------- 1 | 不同平台使用的编码器不同 2 | ============================== 3 | luajit: win, android using luajit2.0.4. 4 | luavm: macos using luac(for u5.x). 5 | luajit_ios: ios using luajit2.1beta 6 | 7 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.0.0f4 2 | m_StandardAssetsVersion: 0 3 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarjin/LuaFramework_NGUI/9cf856549c97ada1ed3584eb45071738719b1257/ProjectSettings/TimeManager.asset --------------------------------------------------------------------------------