├── .gitignore ├── .travis.yml ├── Assets ├── FairyGui.meta ├── FairyGui │ ├── LuaSupport.meta │ ├── LuaSupport │ │ ├── FairyGuiGenConfig.cs │ │ ├── FairyGuiGenConfig.cs.meta │ │ ├── LuaUIHelper.cs │ │ ├── LuaUIHelper.cs.meta │ │ ├── ReadMe.txt │ │ └── ReadMe.txt.meta │ ├── Source.meta │ └── Source │ │ ├── Resources.meta │ │ ├── Resources │ │ ├── Shaders.meta │ │ └── Shaders │ │ │ ├── AddOn.meta │ │ │ ├── AddOn │ │ │ ├── FairyGUI-BlurFilter.shader │ │ │ └── FairyGUI-BlurFilter.shader.meta │ │ │ ├── FairyGUI-BMFont.shader │ │ │ ├── FairyGUI-BMFont.shader.meta │ │ │ ├── FairyGUI-Image.shader │ │ │ ├── FairyGUI-Image.shader.meta │ │ │ ├── FairyGUI-Text-Brighter.shader │ │ │ ├── FairyGUI-Text-Brighter.shader.meta │ │ │ ├── FairyGUI-Text.shader │ │ │ └── FairyGUI-Text.shader.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── Core.meta │ │ ├── Core │ │ ├── BlendMode.cs │ │ ├── BlendMode.cs.meta │ │ ├── CaptureCamera.cs │ │ ├── CaptureCamera.cs.meta │ │ ├── Container.cs │ │ ├── Container.cs.meta │ │ ├── DisplayObject.cs │ │ ├── DisplayObject.cs.meta │ │ ├── DisplayOptions.cs │ │ ├── DisplayOptions.cs.meta │ │ ├── FillUtils.cs │ │ ├── FillUtils.cs.meta │ │ ├── GoWrapper.cs │ │ ├── GoWrapper.cs.meta │ │ ├── HitTest.meta │ │ ├── HitTest │ │ │ ├── BoxColliderHitTest.cs │ │ │ ├── BoxColliderHitTest.cs.meta │ │ │ ├── ColliderHitTest.cs │ │ │ ├── ColliderHitTest.cs.meta │ │ │ ├── HitTestContext.cs │ │ │ ├── HitTestContext.cs.meta │ │ │ ├── IHitTest.cs │ │ │ ├── IHitTest.cs.meta │ │ │ ├── MeshColliderHitTest.cs │ │ │ ├── MeshColliderHitTest.cs.meta │ │ │ ├── PixelHitTest.cs │ │ │ ├── PixelHitTest.cs.meta │ │ │ ├── RectHitTest.cs │ │ │ └── RectHitTest.cs.meta │ │ ├── Image.cs │ │ ├── Image.cs.meta │ │ ├── MaterialManager.cs │ │ ├── MaterialManager.cs.meta │ │ ├── MovieClip.cs │ │ ├── MovieClip.cs.meta │ │ ├── NAudioClip.cs │ │ ├── NAudioClip.cs.meta │ │ ├── NGraphics.cs │ │ ├── NGraphics.cs.meta │ │ ├── NMaterial.cs │ │ ├── NMaterial.cs.meta │ │ ├── NTexture.cs │ │ ├── NTexture.cs.meta │ │ ├── ShaderConfig.cs │ │ ├── ShaderConfig.cs.meta │ │ ├── Shape.cs │ │ ├── Shape.cs.meta │ │ ├── Stage.cs │ │ ├── Stage.cs.meta │ │ ├── StageCamera.cs │ │ ├── StageCamera.cs.meta │ │ ├── StageEngine.cs │ │ ├── StageEngine.cs.meta │ │ ├── Stats.cs │ │ ├── Stats.cs.meta │ │ ├── Text.meta │ │ ├── Text │ │ │ ├── BaseFont.cs │ │ │ ├── BaseFont.cs.meta │ │ │ ├── BitmapFont.cs │ │ │ ├── BitmapFont.cs.meta │ │ │ ├── CopyPastePatch.cs │ │ │ ├── CopyPastePatch.cs.meta │ │ │ ├── DynamicFont.cs │ │ │ ├── DynamicFont.cs.meta │ │ │ ├── Emoji.cs │ │ │ ├── Emoji.cs.meta │ │ │ ├── FontManager.cs │ │ │ ├── FontManager.cs.meta │ │ │ ├── IKeyboard.cs │ │ │ ├── IKeyboard.cs.meta │ │ │ ├── InputTextField.cs │ │ │ ├── InputTextField.cs.meta │ │ │ ├── RTLSupport.cs │ │ │ ├── RTLSupport.cs.meta │ │ │ ├── RichTextField.cs │ │ │ ├── RichTextField.cs.meta │ │ │ ├── SelectionShape.cs │ │ │ ├── SelectionShape.cs.meta │ │ │ ├── TextField.cs │ │ │ ├── TextField.cs.meta │ │ │ ├── TextFormat.cs │ │ │ ├── TextFormat.cs.meta │ │ │ ├── TouchScreenKeyboard.cs │ │ │ ├── TouchScreenKeyboard.cs.meta │ │ │ ├── TypingEffect.cs │ │ │ └── TypingEffect.cs.meta │ │ ├── UpdateContext.cs │ │ └── UpdateContext.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── DisplayObjectEditor.cs │ │ ├── DisplayObjectEditor.cs.meta │ │ ├── EditorToolSet.cs │ │ ├── EditorToolSet.cs.meta │ │ ├── PackagesWindow.cs │ │ ├── PackagesWindow.cs.meta │ │ ├── StageCameraEditor.cs │ │ ├── StageCameraEditor.cs.meta │ │ ├── UIConfigEditor.cs │ │ ├── UIConfigEditor.cs.meta │ │ ├── UIContentScalerEditor.cs │ │ ├── UIContentScalerEditor.cs.meta │ │ ├── UIPainterEditor.cs │ │ ├── UIPainterEditor.cs.meta │ │ ├── UIPanelEditor.cs │ │ └── UIPanelEditor.cs.meta │ │ ├── Event.meta │ │ ├── Event │ │ ├── EventBridge.cs │ │ ├── EventBridge.cs.meta │ │ ├── EventContext.cs │ │ ├── EventContext.cs.meta │ │ ├── EventDispatcher.cs │ │ ├── EventDispatcher.cs.meta │ │ ├── EventListener.cs │ │ ├── EventListener.cs.meta │ │ ├── IEventDispatcher.cs │ │ ├── IEventDispatcher.cs.meta │ │ ├── InputEvent.cs │ │ └── InputEvent.cs.meta │ │ ├── Filter.meta │ │ ├── Filter │ │ ├── BlurFilter.cs │ │ ├── BlurFilter.cs.meta │ │ ├── ColorFilter.cs │ │ ├── ColorFilter.cs.meta │ │ ├── IFilter.cs │ │ └── IFilter.cs.meta │ │ ├── Gesture.meta │ │ ├── Gesture │ │ ├── LongPressGesture.cs │ │ ├── LongPressGesture.cs.meta │ │ ├── PinchGesture.cs │ │ ├── PinchGesture.cs.meta │ │ ├── RotationGesture.cs │ │ ├── RotationGesture.cs.meta │ │ ├── SwipeGesture.cs │ │ └── SwipeGesture.cs.meta │ │ ├── Tween.meta │ │ ├── Tween │ │ ├── EaseManager.cs │ │ ├── EaseManager.cs.meta │ │ ├── EaseType.cs │ │ ├── EaseType.cs.meta │ │ ├── GTween.cs │ │ ├── GTween.cs.meta │ │ ├── GTweener.cs │ │ ├── GTweener.cs.meta │ │ ├── TweenManager.cs │ │ ├── TweenManager.cs.meta │ │ ├── TweenPropType.cs │ │ ├── TweenPropType.cs.meta │ │ ├── TweenValue.cs │ │ └── TweenValue.cs.meta │ │ ├── UI.meta │ │ ├── UI │ │ ├── Action.meta │ │ ├── Action │ │ │ ├── ChangePageAction.cs │ │ │ ├── ChangePageAction.cs.meta │ │ │ ├── ControllerAction.cs │ │ │ ├── ControllerAction.cs.meta │ │ │ ├── PlayTransitionAction.cs │ │ │ └── PlayTransitionAction.cs.meta │ │ ├── AsyncCreationHelper.cs │ │ ├── AsyncCreationHelper.cs.meta │ │ ├── Controller.cs │ │ ├── Controller.cs.meta │ │ ├── DragDropManager.cs │ │ ├── DragDropManager.cs.meta │ │ ├── EMRenderSupport.cs │ │ ├── EMRenderSupport.cs.meta │ │ ├── FieldTypes.cs │ │ ├── FieldTypes.cs.meta │ │ ├── GButton.cs │ │ ├── GButton.cs.meta │ │ ├── GComboBox.cs │ │ ├── GComboBox.cs.meta │ │ ├── GComponent.cs │ │ ├── GComponent.cs.meta │ │ ├── GGraph.cs │ │ ├── GGraph.cs.meta │ │ ├── GGroup.cs │ │ ├── GGroup.cs.meta │ │ ├── GImage.cs │ │ ├── GImage.cs.meta │ │ ├── GLabel.cs │ │ ├── GLabel.cs.meta │ │ ├── GList.cs │ │ ├── GList.cs.meta │ │ ├── GLoader.cs │ │ ├── GLoader.cs.meta │ │ ├── GMovieClip.cs │ │ ├── GMovieClip.cs.meta │ │ ├── GObject.cs │ │ ├── GObject.cs.meta │ │ ├── GObjectPool.cs │ │ ├── GObjectPool.cs.meta │ │ ├── GProgressBar.cs │ │ ├── GProgressBar.cs.meta │ │ ├── GRichTextField.cs │ │ ├── GRichTextField.cs.meta │ │ ├── GRoot.cs │ │ ├── GRoot.cs.meta │ │ ├── GScrollBar.cs │ │ ├── GScrollBar.cs.meta │ │ ├── GSlider.cs │ │ ├── GSlider.cs.meta │ │ ├── GTextField.cs │ │ ├── GTextField.cs.meta │ │ ├── GTextInput.cs │ │ ├── GTextInput.cs.meta │ │ ├── Gears.meta │ │ ├── Gears │ │ │ ├── GearAnimation.cs │ │ │ ├── GearAnimation.cs.meta │ │ │ ├── GearBase.cs │ │ │ ├── GearBase.cs.meta │ │ │ ├── GearColor.cs │ │ │ ├── GearColor.cs.meta │ │ │ ├── GearDisplay.cs │ │ │ ├── GearDisplay.cs.meta │ │ │ ├── GearIcon.cs │ │ │ ├── GearIcon.cs.meta │ │ │ ├── GearLook.cs │ │ │ ├── GearLook.cs.meta │ │ │ ├── GearSize.cs │ │ │ ├── GearSize.cs.meta │ │ │ ├── GearText.cs │ │ │ ├── GearText.cs.meta │ │ │ ├── GearXY.cs │ │ │ ├── GearXY.cs.meta │ │ │ ├── IAnimationGear.cs │ │ │ ├── IAnimationGear.cs.meta │ │ │ ├── IColorGear.cs │ │ │ └── IColorGear.cs.meta │ │ ├── IUISource.cs │ │ ├── IUISource.cs.meta │ │ ├── Margin.cs │ │ ├── Margin.cs.meta │ │ ├── PackageItem.cs │ │ ├── PackageItem.cs.meta │ │ ├── PageOption.cs │ │ ├── PageOption.cs.meta │ │ ├── PopupMenu.cs │ │ ├── PopupMenu.cs.meta │ │ ├── RelationItem.cs │ │ ├── RelationItem.cs.meta │ │ ├── Relations.cs │ │ ├── Relations.cs.meta │ │ ├── ScrollPane.cs │ │ ├── ScrollPane.cs.meta │ │ ├── Transition.cs │ │ ├── Transition.cs.meta │ │ ├── TranslationHelper.cs │ │ ├── TranslationHelper.cs.meta │ │ ├── Tree.meta │ │ ├── Tree │ │ │ ├── TreeNode.cs │ │ │ ├── TreeNode.cs.meta │ │ │ ├── TreeView.cs │ │ │ └── TreeView.cs.meta │ │ ├── UIConfig.cs │ │ ├── UIConfig.cs.meta │ │ ├── UIContentScaler.cs │ │ ├── UIContentScaler.cs.meta │ │ ├── UIObjectFactory.cs │ │ ├── UIObjectFactory.cs.meta │ │ ├── UIPackage.cs │ │ ├── UIPackage.cs.meta │ │ ├── UIPainter.cs │ │ ├── UIPainter.cs.meta │ │ ├── UIPanel.cs │ │ ├── UIPanel.cs.meta │ │ ├── Window.cs │ │ └── Window.cs.meta │ │ ├── Utils.meta │ │ └── Utils │ │ ├── ByteBuffer.cs │ │ ├── ByteBuffer.cs.meta │ │ ├── Html.meta │ │ ├── Html │ │ ├── HtmlButton.cs │ │ ├── HtmlButton.cs.meta │ │ ├── HtmlElement.cs │ │ ├── HtmlElement.cs.meta │ │ ├── HtmlImage.cs │ │ ├── HtmlImage.cs.meta │ │ ├── HtmlInput.cs │ │ ├── HtmlInput.cs.meta │ │ ├── HtmlLink.cs │ │ ├── HtmlLink.cs.meta │ │ ├── HtmlPageContext.cs │ │ ├── HtmlPageContext.cs.meta │ │ ├── HtmlParseOptions.cs │ │ ├── HtmlParseOptions.cs.meta │ │ ├── HtmlParser.cs │ │ ├── HtmlParser.cs.meta │ │ ├── HtmlSelect.cs │ │ ├── HtmlSelect.cs.meta │ │ ├── IHtmlObject.cs │ │ ├── IHtmlObject.cs.meta │ │ ├── IHtmlPageContext.cs │ │ └── IHtmlPageContext.cs.meta │ │ ├── Timers.cs │ │ ├── Timers.cs.meta │ │ ├── ToolSet.cs │ │ ├── ToolSet.cs.meta │ │ ├── UBBParser.cs │ │ ├── UBBParser.cs.meta │ │ ├── XML.cs │ │ ├── XML.cs.meta │ │ ├── XMLIterator.cs │ │ ├── XMLIterator.cs.meta │ │ ├── XMLList.cs │ │ ├── XMLList.cs.meta │ │ ├── XMLUtils.cs │ │ ├── XMLUtils.cs.meta │ │ ├── ZipReader.cs │ │ └── ZipReader.cs.meta ├── Lua.meta ├── Lua │ ├── FairyGUI.lua │ ├── FairyGUI.lua.meta │ ├── Main.lua │ ├── Main.lua.meta │ ├── MainPanel.lua │ └── MainPanel.lua.meta ├── Plugins.meta ├── Plugins │ ├── Android.meta │ ├── Android │ │ ├── libs.meta │ │ └── libs │ │ │ ├── armeabi-v7a.meta │ │ │ ├── armeabi-v7a │ │ │ ├── libxlua.so │ │ │ └── libxlua.so.meta │ │ │ ├── x86.meta │ │ │ └── x86 │ │ │ ├── libxlua.so │ │ │ └── libxlua.so.meta │ ├── WSA.meta │ ├── WSA │ │ ├── ARM.meta │ │ ├── ARM │ │ │ ├── xlua.dll │ │ │ └── xlua.dll.meta │ │ ├── x64.meta │ │ ├── x64 │ │ │ ├── xlua.dll │ │ │ └── xlua.dll.meta │ │ ├── x86.meta │ │ └── x86 │ │ │ ├── xlua.dll │ │ │ └── xlua.dll.meta │ ├── WebGL.meta │ ├── WebGL │ │ ├── xlua_webgl.cpp │ │ └── xlua_webgl.cpp.meta │ ├── iOS.meta │ ├── iOS │ │ ├── HotfixFlags.cpp │ │ ├── HotfixFlags.cpp.meta │ │ ├── libxlua.a │ │ └── libxlua.a.meta │ ├── x86.meta │ ├── x86 │ │ ├── libxlua.so │ │ ├── libxlua.so.meta │ │ ├── xlua.dll │ │ └── xlua.dll.meta │ ├── x86_64.meta │ ├── x86_64 │ │ ├── libxlua.so │ │ ├── libxlua.so.meta │ │ ├── xlua.dll │ │ └── xlua.dll.meta │ ├── xlua.bundle.meta │ └── xlua.bundle │ │ ├── Contents.meta │ │ └── Contents │ │ ├── Info.plist │ │ ├── Info.plist.meta │ │ ├── MacOS.meta │ │ └── MacOS │ │ ├── xlua │ │ └── xlua.meta ├── Resources.meta ├── Resources │ ├── Role.meta │ ├── Role │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── U1NPC0040.mat │ │ │ └── U1NPC0040.mat.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ │ ├── U1NPC0040.tga │ │ │ └── U1NPC0040.tga.meta │ │ ├── npc.FBX │ │ └── npc.FBX.meta │ ├── UI.meta │ └── UI │ │ ├── Model_atlas0.png │ │ ├── Model_atlas0.png.meta │ │ ├── Model_fui.bytes │ │ └── Model_fui.bytes.meta ├── Scene.meta ├── Scene │ ├── 1.unity │ └── 1.unity.meta ├── Scripts.meta ├── Scripts │ ├── Main.cs │ └── Main.cs.meta ├── XLua.meta └── XLua │ ├── CHANGELOG.txt │ ├── CHANGELOG.txt.meta │ ├── Doc.meta │ ├── Doc │ ├── Add_Remove_Lua_Lib.md │ ├── Add_Remove_Lua_Lib.md.meta │ ├── Configure_EN.md │ ├── Configure_EN.md.meta │ ├── Custom_Generate_EN.md │ ├── Custom_Generate_EN.md.meta │ ├── Faq_EN.md │ ├── Faq_EN.md.meta │ ├── Hotfix_EN.md │ ├── Hotfix_EN.md.meta │ ├── Materials.meta │ ├── Materials │ │ ├── logo.mat │ │ └── logo.mat.meta │ ├── XLua_API.doc │ ├── XLua_API.doc.meta │ ├── XLua_API.md │ ├── XLua_API.md.meta │ ├── XLua_API_EN.md │ ├── XLua_API_EN.md.meta │ ├── XLua_Tutorial_EN.md │ ├── XLua_Tutorial_EN.md.meta │ ├── XLua增加删除第三方lua库.doc │ ├── XLua增加删除第三方lua库.doc.meta │ ├── XLua增加删除第三方lua库.md │ ├── XLua增加删除第三方lua库.md.meta │ ├── XLua复杂值类型(struct)gc优化指南.doc │ ├── XLua复杂值类型(struct)gc优化指南.doc.meta │ ├── XLua复杂值类型(struct)gc优化指南.md │ ├── XLua复杂值类型(struct)gc优化指南.md.meta │ ├── XLua性能分析工具.doc │ ├── XLua性能分析工具.doc.meta │ ├── XLua性能分析工具.md │ ├── XLua性能分析工具.md.meta │ ├── XLua教程.doc │ ├── XLua教程.doc.meta │ ├── XLua教程.md │ ├── XLua教程.md.meta │ ├── XLua的配置.doc │ ├── XLua的配置.doc.meta │ ├── compatible_bytecode.md │ ├── compatible_bytecode.md.meta │ ├── configure.md │ ├── configure.md.meta │ ├── custom_generate.md │ ├── custom_generate.md.meta │ ├── faq.md │ ├── faq.md.meta │ ├── features.md │ ├── features.md.meta │ ├── hotfix.md │ ├── hotfix.md.meta │ ├── logo.png │ ├── logo.png.meta │ ├── signature.md │ ├── signature.md.meta │ ├── xLua.png │ └── xLua.png.meta │ ├── Editor.meta │ ├── Editor │ ├── ExampleConfig.cs │ └── ExampleConfig.cs.meta │ ├── Resources.meta │ ├── Resources │ ├── perf.meta │ ├── perf │ │ ├── memory.lua.txt │ │ ├── memory.lua.txt.meta │ │ ├── profiler.lua.txt │ │ └── profiler.lua.txt.meta │ ├── tdr.meta │ ├── tdr │ │ ├── tdr.lua.txt │ │ └── tdr.lua.txt.meta │ ├── xlua.meta │ └── xlua │ │ ├── util.lua.txt │ │ └── util.lua.txt.meta │ ├── Src.meta │ └── Src │ ├── CodeEmit.cs │ ├── CodeEmit.cs.meta │ ├── CopyByValue.cs │ ├── CopyByValue.cs.meta │ ├── DelegateBridge.cs │ ├── DelegateBridge.cs.meta │ ├── Editor.meta │ ├── Editor │ ├── Generator.cs │ ├── Generator.cs.meta │ ├── Hotfix.cs │ ├── Hotfix.cs.meta │ ├── LinkXmlGen.meta │ ├── LinkXmlGen │ │ ├── LinkXmlGen.cs │ │ ├── LinkXmlGen.cs.meta │ │ ├── LinkXmlGen.tpl.txt │ │ └── LinkXmlGen.tpl.txt.meta │ ├── Template.meta │ ├── Template │ │ ├── LuaClassWrap.tpl.txt │ │ ├── LuaClassWrap.tpl.txt.meta │ │ ├── LuaClassWrapGCM.tpl.txt │ │ ├── LuaClassWrapGCM.tpl.txt.meta │ │ ├── LuaDelegateBridge.tpl.txt │ │ ├── LuaDelegateBridge.tpl.txt.meta │ │ ├── LuaDelegateWrap.tpl.txt │ │ ├── LuaDelegateWrap.tpl.txt.meta │ │ ├── LuaEnumWrap.tpl.txt │ │ ├── LuaEnumWrap.tpl.txt.meta │ │ ├── LuaEnumWrapGCM.tpl.txt │ │ ├── LuaEnumWrapGCM.tpl.txt.meta │ │ ├── LuaInterfaceBridge.tpl.txt │ │ ├── LuaInterfaceBridge.tpl.txt.meta │ │ ├── LuaRegister.tpl.txt │ │ ├── LuaRegister.tpl.txt.meta │ │ ├── LuaRegisterGCM.tpl.txt │ │ ├── LuaRegisterGCM.tpl.txt.meta │ │ ├── LuaWrapPusher.tpl.txt │ │ ├── LuaWrapPusher.tpl.txt.meta │ │ ├── PackUnpack.tpl.txt │ │ ├── PackUnpack.tpl.txt.meta │ │ ├── TemplateCommon.lua.txt │ │ └── TemplateCommon.lua.txt.meta │ ├── TemplateRef.cs │ └── TemplateRef.cs.meta │ ├── GenAttributes.cs │ ├── GenAttributes.cs.meta │ ├── GenericDelegateBridge.cs │ ├── GenericDelegateBridge.cs.meta │ ├── InternalGlobals.cs │ ├── InternalGlobals.cs.meta │ ├── LuaBase.cs │ ├── LuaBase.cs.meta │ ├── LuaDLL.cs │ ├── LuaDLL.cs.meta │ ├── LuaEnv.cs │ ├── LuaEnv.cs.meta │ ├── LuaException.cs │ ├── LuaException.cs.meta │ ├── LuaFunction.cs │ ├── LuaFunction.cs.meta │ ├── LuaTable.cs │ ├── LuaTable.cs.meta │ ├── MethodWarpsCache.cs │ ├── MethodWarpsCache.cs.meta │ ├── ObjectCasters.cs │ ├── ObjectCasters.cs.meta │ ├── ObjectPool.cs │ ├── ObjectPool.cs.meta │ ├── ObjectTranslator.cs │ ├── ObjectTranslator.cs.meta │ ├── ObjectTranslatorPool.cs │ ├── ObjectTranslatorPool.cs.meta │ ├── RawObject.cs │ ├── RawObject.cs.meta │ ├── SignatureLoader.cs │ ├── SignatureLoader.cs.meta │ ├── StaticLuaCallbacks.cs │ ├── StaticLuaCallbacks.cs.meta │ ├── TemplateEngine.meta │ ├── TemplateEngine │ ├── TemplateEngine.cs │ └── TemplateEngine.cs.meta │ ├── TypeExtensions.cs │ ├── TypeExtensions.cs.meta │ ├── Utils.cs │ └── Utils.cs.meta ├── General ├── Lib │ ├── Mono.Cecil.Mdb.dll │ ├── Mono.Cecil.Pdb.dll │ └── Mono.Cecil.dll ├── LuaMemoryLeakChecker │ ├── LuaMemoryLeakChecker.cs │ └── LuaMemoryLeakCheckerTest.cs ├── README.md ├── Src │ ├── FilesSignature.cs │ ├── KeyPairsGen.cs │ ├── XLuaGenerate.cs │ ├── XLuaHotfixInject.cs │ ├── XLuaTemplates.Designer.cs │ ├── XLuaTemplates.resx │ ├── XLuaTest.cs │ └── XLuaUnitTest.cs ├── premake5.lua └── vs2013 │ ├── FilesSignature.csproj │ ├── KeyPairsGen.csproj │ ├── XLua.Mini.csproj │ ├── XLua.sln │ ├── XLuaGenTest.sln │ ├── XLuaGenerate.csproj │ ├── XLuaHotfixInject.csproj │ ├── XLuaTest.csproj │ ├── XLuaTestGenCode.csproj │ ├── XLuaUnitTest.csproj │ └── XLuaUnitTestGenCode.csproj ├── LICENSE.TXT ├── README.md ├── Test ├── PrefTest │ ├── Resources │ │ ├── luaTest.lua.txt │ │ └── luaTest.lua.txt.meta │ └── xLuaPerfTest │ │ ├── Main.unity │ │ ├── Main.unity.meta │ │ ├── PeformentTestConfig.cs │ │ ├── PeformentTestConfig.cs.meta │ │ ├── PerfMain.cs │ │ └── PerfMain.cs.meta ├── README.md └── UnitTest │ ├── StreamingAssets │ ├── D.lua │ ├── D.lua.meta │ ├── csCallLua.lua │ ├── csCallLua.lua.meta │ ├── genCode.lua │ ├── genCode.lua.meta │ ├── ltest.meta │ ├── ltest │ │ ├── init.lua │ │ ├── init.lua.meta │ │ ├── lassert.lua │ │ ├── lassert.lua.meta │ │ ├── loutput.lua │ │ └── loutput.lua.meta │ ├── luaCallCs.lua │ ├── luaCallCs.lua.meta │ ├── luaCallCsReflect.lua │ ├── luaCallCsReflect.lua.meta │ ├── luaTdrTest.lua │ ├── luaTdrTest.lua.meta │ ├── main.lua │ ├── main.lua.meta │ ├── testlua.meta │ ├── testlua │ │ ├── B.lua │ │ ├── B.lua.meta │ │ ├── C.lua.txt │ │ ├── C.lua.txt.meta │ │ ├── main.lua │ │ └── main.lua.meta │ ├── testxxx.tdr │ ├── testxxx.tdr.meta │ ├── testxxx2.tdr │ └── testxxx2.tdr.meta │ └── xLuaTest │ ├── CSharpCallLua.meta │ ├── CSharpCallLua │ ├── CSObjectForTestCSCallLua.cs │ ├── CSObjectForTestCSCallLua.cs.meta │ ├── Resources.meta │ ├── Resources │ │ ├── A.lua.txt │ │ ├── A.lua.txt.meta │ │ ├── D.lua.txt │ │ ├── D.lua.txt.meta │ │ ├── E.lua │ │ ├── E.lua.meta │ │ ├── InFile.lua.txt │ │ ├── InFile.lua.txt.meta │ │ ├── empty.lua.txt │ │ ├── empty.lua.txt.meta │ │ ├── error.lua.txt │ │ └── error.lua.txt.meta │ ├── TCForTestCSCallLua.cs │ ├── TCForTestCSCallLua.cs.meta │ ├── TestCSCallLua.cs │ ├── TestCSCallLua.cs.meta │ ├── TestCSCallLua.unity │ └── TestCSCallLua.unity.meta │ ├── LuaCallCS.meta │ ├── LuaCallCS │ ├── CSObjectForLuaCallCS.cs │ └── CSObjectForLuaCallCS.cs.meta │ ├── LuaTestCommon.cs │ ├── LuaTestCommon.cs.meta │ ├── LuaTestObj.cs │ ├── LuaTestObj.cs.meta │ ├── LuaTestObjReflect.cs │ ├── LuaTestObjReflect.cs.meta │ ├── Main.cs │ ├── Main.cs.meta │ ├── Resources.meta │ ├── Resources │ ├── non_tlv_net_msg_type.xml │ ├── non_tlv_net_msg_type.xml.meta │ ├── non_tlv_net_protocol.xml │ ├── non_tlv_net_protocol.xml.meta │ ├── non_tlv_net_protocol_v4.xml │ ├── non_tlv_net_protocol_v4.xml.meta │ ├── testxxx.tdr.bytes │ ├── testxxx.tdr.bytes.meta │ ├── testxxx2.tdr.bytes │ └── testxxx2.tdr.bytes.meta │ ├── main.unity │ └── main.unity.meta ├── Tools ├── FilesSignature.exe ├── FilesSignature.pdb ├── KeyPairsGen.exe ├── KeyPairsGen.pdb ├── Mono.Cecil.Mdb.dll ├── Mono.Cecil.Pdb.dll ├── Mono.Cecil.dll ├── Mono.Security.dll ├── System.Core.dll ├── System.Core.dll.mdb ├── System.dll ├── System.dll.mdb ├── XLuaHotfixInject.exe └── XLuaHotfixInject.pdb ├── WebGLPlugins ├── i64lib.c ├── i64lib.h ├── lapi.c ├── lapi.h ├── lauxlib.c ├── lauxlib.h ├── lbaselib.c ├── lbitlib.c ├── lcode.c ├── lcode.h ├── lcorolib.c ├── lctype.c ├── lctype.h ├── ldblib.c ├── ldebug.c ├── ldebug.h ├── ldo.c ├── ldo.h ├── ldump.c ├── lfunc.c ├── lfunc.h ├── lgc.c ├── lgc.h ├── linit.c ├── liolib.c ├── llex.c ├── llex.h ├── llimits.h ├── lmathlib.c ├── lmem.c ├── lmem.h ├── loadlib.c ├── lobject.c ├── lobject.h ├── lopcodes.c ├── lopcodes.h ├── loslib.c ├── lparser.c ├── lparser.h ├── lprefix.h ├── lstate.c ├── lstate.h ├── lstring.c ├── lstring.h ├── lstrlib.c ├── ltable.c ├── ltable.h ├── ltablib.c ├── ltm.c ├── ltm.h ├── lua.c ├── lua.h ├── lua.hpp ├── luac.c ├── luaconf.h ├── lualib.h ├── lundump.c ├── lundump.h ├── lutf8lib.c ├── lvm.c ├── lvm.h ├── lzio.c ├── lzio.h ├── perflib.c └── xlua.c ├── build ├── CMakeLists.txt ├── cmake │ ├── android.toolchain.cmake │ ├── android.windows.toolchain.cmake │ └── iOS.cmake ├── i64lib.c ├── i64lib.h ├── lua-5.1.5 │ ├── COPYRIGHT │ ├── HISTORY │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── doc │ │ ├── contents.html │ │ ├── cover.png │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── lua.html │ │ ├── luac.1 │ │ ├── luac.html │ │ ├── manual.css │ │ ├── manual.html │ │ └── readme.html │ ├── etc │ │ ├── Makefile │ │ ├── README │ │ ├── all.c │ │ ├── lua.hpp │ │ ├── lua.ico │ │ ├── lua.pc │ │ ├── luavs.bat │ │ ├── min.c │ │ ├── noparser.c │ │ └── strict.lua │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ ├── lzio.h │ │ └── print.c ├── lua-5.3.3 │ ├── CMakeLists.txt │ ├── Makefile │ ├── README │ ├── cmake │ │ ├── FindLua.cmake │ │ ├── FindReadline.cmake │ │ ├── dist.cmake │ │ └── lua.cmake │ ├── dist.info │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ ├── etc │ │ ├── lua.ico │ │ ├── lua.pc │ │ └── lua_lang.ico │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── loadlib_rel.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── lua.rc │ │ ├── luac.c │ │ ├── luac.rc │ │ ├── luaconf.h.in │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ ├── lzio.h │ │ └── wmain.c ├── lua-5.3.4 │ ├── Makefile │ ├── README │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h.in │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── lua-5.3.5 │ ├── Makefile │ ├── README │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h.in │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── luac │ ├── CMakeLists.txt │ ├── make_unix.sh │ ├── make_win32.bat │ └── make_win64.bat ├── luajit-2.1.0b2 │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── doc │ │ ├── bluequad-print.css │ │ ├── bluequad.css │ │ ├── changes.html │ │ ├── contact.html │ │ ├── ext_c_api.html │ │ ├── ext_ffi.html │ │ ├── ext_ffi_api.html │ │ ├── ext_ffi_semantics.html │ │ ├── ext_ffi_tutorial.html │ │ ├── ext_jit.html │ │ ├── ext_profiler.html │ │ ├── extensions.html │ │ ├── faq.html │ │ ├── img │ │ │ └── contact.png │ │ ├── install.html │ │ ├── luajit.html │ │ ├── running.html │ │ └── status.html │ ├── dynasm │ │ ├── dasm_arm.h │ │ ├── dasm_arm.lua │ │ ├── dasm_arm64.h │ │ ├── dasm_arm64.lua │ │ ├── dasm_mips.h │ │ ├── dasm_mips.lua │ │ ├── dasm_ppc.h │ │ ├── dasm_ppc.lua │ │ ├── dasm_proto.h │ │ ├── dasm_x64.lua │ │ ├── dasm_x86.h │ │ ├── dasm_x86.lua │ │ └── dynasm.lua │ ├── etc │ │ ├── luajit.1 │ │ └── luajit.pc │ └── src │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── host │ │ ├── README │ │ ├── buildvm.c │ │ ├── buildvm.h │ │ ├── buildvm_asm.c │ │ ├── buildvm_fold.c │ │ ├── buildvm_lib.c │ │ ├── buildvm_libbc.h │ │ ├── buildvm_peobj.c │ │ ├── genlibbc.lua │ │ ├── genminilua.lua │ │ └── minilua.c │ │ ├── jit │ │ ├── bc.lua │ │ ├── bcsave.lua │ │ ├── dis_arm.lua │ │ ├── dis_mips.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_ppc.lua │ │ ├── dis_x64.lua │ │ ├── dis_x86.lua │ │ ├── dump.lua │ │ ├── p.lua │ │ ├── v.lua │ │ └── zone.lua │ │ ├── lauxlib.h │ │ ├── lib_aux.c │ │ ├── lib_base.c │ │ ├── lib_bit.c │ │ ├── lib_debug.c │ │ ├── lib_ffi.c │ │ ├── lib_init.c │ │ ├── lib_io.c │ │ ├── lib_jit.c │ │ ├── lib_math.c │ │ ├── lib_os.c │ │ ├── lib_package.c │ │ ├── lib_string.c │ │ ├── lib_table.c │ │ ├── lj.supp │ │ ├── lj_alloc.c │ │ ├── lj_alloc.h │ │ ├── lj_api.c │ │ ├── lj_arch.h │ │ ├── lj_asm.c │ │ ├── lj_asm.h │ │ ├── lj_asm_arm.h │ │ ├── lj_asm_mips.h │ │ ├── lj_asm_ppc.h │ │ ├── lj_asm_x86.h │ │ ├── lj_bc.c │ │ ├── lj_bc.h │ │ ├── lj_bcdump.h │ │ ├── lj_bcread.c │ │ ├── lj_bcwrite.c │ │ ├── lj_buf.c │ │ ├── lj_buf.h │ │ ├── lj_carith.c │ │ ├── lj_carith.h │ │ ├── lj_ccall.c │ │ ├── lj_ccall.h │ │ ├── lj_ccallback.c │ │ ├── lj_ccallback.h │ │ ├── lj_cconv.c │ │ ├── lj_cconv.h │ │ ├── lj_cdata.c │ │ ├── lj_cdata.h │ │ ├── lj_char.c │ │ ├── lj_char.h │ │ ├── lj_clib.c │ │ ├── lj_clib.h │ │ ├── lj_cparse.c │ │ ├── lj_cparse.h │ │ ├── lj_crecord.c │ │ ├── lj_crecord.h │ │ ├── lj_ctype.c │ │ ├── lj_ctype.h │ │ ├── lj_debug.c │ │ ├── lj_debug.h │ │ ├── lj_def.h │ │ ├── lj_dispatch.c │ │ ├── lj_dispatch.h │ │ ├── lj_emit_arm.h │ │ ├── lj_emit_mips.h │ │ ├── lj_emit_ppc.h │ │ ├── lj_emit_x86.h │ │ ├── lj_err.c │ │ ├── lj_err.h │ │ ├── lj_errmsg.h │ │ ├── lj_ff.h │ │ ├── lj_ffrecord.c │ │ ├── lj_ffrecord.h │ │ ├── lj_frame.h │ │ ├── lj_func.c │ │ ├── lj_func.h │ │ ├── lj_gc.c │ │ ├── lj_gc.h │ │ ├── lj_gdbjit.c │ │ ├── lj_gdbjit.h │ │ ├── lj_ir.c │ │ ├── lj_ir.h │ │ ├── lj_ircall.h │ │ ├── lj_iropt.h │ │ ├── lj_jit.h │ │ ├── lj_lex.c │ │ ├── lj_lex.h │ │ ├── lj_lib.c │ │ ├── lj_lib.h │ │ ├── lj_load.c │ │ ├── lj_mcode.c │ │ ├── lj_mcode.h │ │ ├── lj_meta.c │ │ ├── lj_meta.h │ │ ├── lj_obj.c │ │ ├── lj_obj.h │ │ ├── lj_opt_dce.c │ │ ├── lj_opt_fold.c │ │ ├── lj_opt_loop.c │ │ ├── lj_opt_mem.c │ │ ├── lj_opt_narrow.c │ │ ├── lj_opt_sink.c │ │ ├── lj_opt_split.c │ │ ├── lj_parse.c │ │ ├── lj_parse.h │ │ ├── lj_profile.c │ │ ├── lj_profile.h │ │ ├── lj_record.c │ │ ├── lj_record.h │ │ ├── lj_snap.c │ │ ├── lj_snap.h │ │ ├── lj_state.c │ │ ├── lj_state.h │ │ ├── lj_str.c │ │ ├── lj_str.h │ │ ├── lj_strfmt.c │ │ ├── lj_strfmt.h │ │ ├── lj_strfmt_num.c │ │ ├── lj_strscan.c │ │ ├── lj_strscan.h │ │ ├── lj_tab.c │ │ ├── lj_tab.h │ │ ├── lj_target.h │ │ ├── lj_target_arm.h │ │ ├── lj_target_arm64.h │ │ ├── lj_target_mips.h │ │ ├── lj_target_ppc.h │ │ ├── lj_target_x86.h │ │ ├── lj_trace.c │ │ ├── lj_trace.h │ │ ├── lj_traceerr.h │ │ ├── lj_udata.c │ │ ├── lj_udata.h │ │ ├── lj_vm.h │ │ ├── lj_vmevent.c │ │ ├── lj_vmevent.h │ │ ├── lj_vmmath.c │ │ ├── ljamalg.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ ├── luajit.c │ │ ├── luajit.h │ │ ├── lualib.h │ │ ├── msvcbuild.bat │ │ ├── msvcbuild_mt.bat │ │ ├── msvcbuild_xlua.bat │ │ ├── ps4build.bat │ │ ├── psvitabuild.bat │ │ ├── vm_arm.dasc │ │ ├── vm_arm64.dasc │ │ ├── vm_mips.dasc │ │ ├── vm_ppc.dasc │ │ ├── vm_x64.dasc │ │ ├── vm_x86.dasc │ │ ├── xb1build.bat │ │ └── xedkbuild.bat ├── luajit-2.1.0b3 │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── doc │ │ ├── bluequad-print.css │ │ ├── bluequad.css │ │ ├── changes.html │ │ ├── contact.html │ │ ├── ext_c_api.html │ │ ├── ext_ffi.html │ │ ├── ext_ffi_api.html │ │ ├── ext_ffi_semantics.html │ │ ├── ext_ffi_tutorial.html │ │ ├── ext_jit.html │ │ ├── ext_profiler.html │ │ ├── extensions.html │ │ ├── faq.html │ │ ├── img │ │ │ └── contact.png │ │ ├── install.html │ │ ├── luajit.html │ │ ├── running.html │ │ └── status.html │ ├── dynasm │ │ ├── dasm_arm.h │ │ ├── dasm_arm.lua │ │ ├── dasm_arm64.h │ │ ├── dasm_arm64.lua │ │ ├── dasm_mips.h │ │ ├── dasm_mips.lua │ │ ├── dasm_mips64.lua │ │ ├── dasm_ppc.h │ │ ├── dasm_ppc.lua │ │ ├── dasm_proto.h │ │ ├── dasm_x64.lua │ │ ├── dasm_x86.h │ │ ├── dasm_x86.lua │ │ └── dynasm.lua │ ├── etc │ │ ├── luajit.1 │ │ └── luajit.pc │ └── src │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── host │ │ ├── README │ │ ├── buildvm.c │ │ ├── buildvm.h │ │ ├── buildvm_asm.c │ │ ├── buildvm_fold.c │ │ ├── buildvm_lib.c │ │ ├── buildvm_libbc.h │ │ ├── buildvm_peobj.c │ │ ├── genlibbc.lua │ │ ├── genminilua.lua │ │ └── minilua.c │ │ ├── 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 │ │ └── zone.lua │ │ ├── lauxlib.h │ │ ├── lib_aux.c │ │ ├── lib_base.c │ │ ├── lib_bit.c │ │ ├── lib_debug.c │ │ ├── lib_ffi.c │ │ ├── lib_init.c │ │ ├── lib_io.c │ │ ├── lib_jit.c │ │ ├── lib_math.c │ │ ├── lib_os.c │ │ ├── lib_package.c │ │ ├── lib_string.c │ │ ├── lib_table.c │ │ ├── lj.supp │ │ ├── lj_alloc.c │ │ ├── lj_alloc.h │ │ ├── lj_api.c │ │ ├── lj_arch.h │ │ ├── lj_asm.c │ │ ├── lj_asm.h │ │ ├── lj_asm_arm.h │ │ ├── lj_asm_arm64.h │ │ ├── lj_asm_mips.h │ │ ├── lj_asm_ppc.h │ │ ├── lj_asm_x86.h │ │ ├── lj_bc.c │ │ ├── lj_bc.h │ │ ├── lj_bcdump.h │ │ ├── lj_bcread.c │ │ ├── lj_bcwrite.c │ │ ├── lj_buf.c │ │ ├── lj_buf.h │ │ ├── lj_carith.c │ │ ├── lj_carith.h │ │ ├── lj_ccall.c │ │ ├── lj_ccall.h │ │ ├── lj_ccallback.c │ │ ├── lj_ccallback.h │ │ ├── lj_cconv.c │ │ ├── lj_cconv.h │ │ ├── lj_cdata.c │ │ ├── lj_cdata.h │ │ ├── lj_char.c │ │ ├── lj_char.h │ │ ├── lj_clib.c │ │ ├── lj_clib.h │ │ ├── lj_cparse.c │ │ ├── lj_cparse.h │ │ ├── lj_crecord.c │ │ ├── lj_crecord.h │ │ ├── lj_ctype.c │ │ ├── lj_ctype.h │ │ ├── lj_debug.c │ │ ├── lj_debug.h │ │ ├── lj_def.h │ │ ├── lj_dispatch.c │ │ ├── lj_dispatch.h │ │ ├── lj_emit_arm.h │ │ ├── lj_emit_arm64.h │ │ ├── lj_emit_mips.h │ │ ├── lj_emit_ppc.h │ │ ├── lj_emit_x86.h │ │ ├── lj_err.c │ │ ├── lj_err.h │ │ ├── lj_errmsg.h │ │ ├── lj_ff.h │ │ ├── lj_ffrecord.c │ │ ├── lj_ffrecord.h │ │ ├── lj_frame.h │ │ ├── lj_func.c │ │ ├── lj_func.h │ │ ├── lj_gc.c │ │ ├── lj_gc.h │ │ ├── lj_gdbjit.c │ │ ├── lj_gdbjit.h │ │ ├── lj_ir.c │ │ ├── lj_ir.h │ │ ├── lj_ircall.h │ │ ├── lj_iropt.h │ │ ├── lj_jit.h │ │ ├── lj_lex.c │ │ ├── lj_lex.h │ │ ├── lj_lib.c │ │ ├── lj_lib.h │ │ ├── lj_load.c │ │ ├── lj_mcode.c │ │ ├── lj_mcode.h │ │ ├── lj_meta.c │ │ ├── lj_meta.h │ │ ├── lj_obj.c │ │ ├── lj_obj.h │ │ ├── lj_opt_dce.c │ │ ├── lj_opt_fold.c │ │ ├── lj_opt_loop.c │ │ ├── lj_opt_mem.c │ │ ├── lj_opt_narrow.c │ │ ├── lj_opt_sink.c │ │ ├── lj_opt_split.c │ │ ├── lj_parse.c │ │ ├── lj_parse.h │ │ ├── lj_profile.c │ │ ├── lj_profile.h │ │ ├── lj_record.c │ │ ├── lj_record.h │ │ ├── lj_snap.c │ │ ├── lj_snap.h │ │ ├── lj_state.c │ │ ├── lj_state.h │ │ ├── lj_str.c │ │ ├── lj_str.h │ │ ├── lj_strfmt.c │ │ ├── lj_strfmt.h │ │ ├── lj_strfmt_num.c │ │ ├── lj_strscan.c │ │ ├── lj_strscan.h │ │ ├── lj_tab.c │ │ ├── lj_tab.h │ │ ├── lj_target.h │ │ ├── lj_target_arm.h │ │ ├── lj_target_arm64.h │ │ ├── lj_target_mips.h │ │ ├── lj_target_ppc.h │ │ ├── lj_target_x86.h │ │ ├── lj_trace.c │ │ ├── lj_trace.h │ │ ├── lj_traceerr.h │ │ ├── lj_udata.c │ │ ├── lj_udata.h │ │ ├── lj_vm.h │ │ ├── lj_vmevent.c │ │ ├── lj_vmevent.h │ │ ├── lj_vmmath.c │ │ ├── ljamalg.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ ├── luajit.c │ │ ├── luajit.h │ │ ├── lualib.h │ │ ├── msvcbuild.bat │ │ ├── msvcbuild_mt.bat │ │ ├── ps4build.bat │ │ ├── psvitabuild.bat │ │ ├── vm_arm.dasc │ │ ├── vm_arm64.dasc │ │ ├── vm_mips.dasc │ │ ├── vm_mips64.dasc │ │ ├── vm_ppc.dasc │ │ ├── vm_x64.dasc │ │ ├── vm_x86.dasc │ │ ├── xb1build.bat │ │ └── xedkbuild.bat ├── luasocket │ ├── auxiliar.c │ ├── auxiliar.h │ ├── buffer.c │ ├── buffer.h │ ├── except.c │ ├── except.h │ ├── inet.c │ ├── inet.h │ ├── io.c │ ├── io.h │ ├── luasocket.c │ ├── luasocket.h │ ├── luasocket_scripts.c │ ├── luasocket_scripts.h │ ├── mime.c │ ├── mime.h │ ├── options.c │ ├── options.h │ ├── select.c │ ├── select.h │ ├── serial.c │ ├── socket.h │ ├── tcp.c │ ├── tcp.h │ ├── timeout.c │ ├── timeout.h │ ├── udp.c │ ├── udp.h │ ├── unix.c │ ├── unix.h │ ├── usocket.c │ ├── usocket.h │ ├── wsocket.c │ └── wsocket.h ├── make_android_lua53.bat ├── make_android_lua53.sh ├── make_android_luajit.sh ├── make_ios_lua53.sh ├── make_ios_luajit.sh ├── make_linux32_lua53.sh ├── make_linux32_luajit.sh ├── make_linux64_lua53.sh ├── make_linux64_luajit.sh ├── make_osx_lua53.sh ├── make_osx_luajit.sh ├── make_uwp.bat ├── make_win32_lua53.bat ├── make_win32_luajit.bat ├── make_win64_lua53.bat ├── make_win64_luajit.bat ├── make_win64_luajit_gc64.bat ├── memory_leak_checker.c ├── perflib.c ├── plugin_lua53 │ └── Plugins │ │ └── xlua.bundle │ │ └── Contents │ │ └── Info.plist ├── plugin_luajit │ └── Plugins │ │ └── xlua.bundle │ │ └── Contents │ │ └── Info.plist └── xlua.c ├── docs ├── .gitignore ├── index.html ├── public │ ├── css │ │ ├── index.css │ │ └── page.css │ ├── images │ │ ├── github.png │ │ ├── logo.png │ │ ├── power.png │ │ ├── quick.png │ │ ├── reliable.png │ │ ├── search.focus.png │ │ ├── search.png │ │ └── simple.png │ ├── index.html │ ├── js │ │ ├── jquery.js │ │ └── vue.js │ ├── readme.html │ └── v1 │ │ └── guide │ │ ├── api.html │ │ ├── configure.html │ │ ├── crtdel-3rd.html │ │ ├── faq.html │ │ ├── features.html │ │ ├── gc-optimization.html │ │ ├── hotfix.html │ │ ├── index.html │ │ ├── performance-analysis.html │ │ ├── signature.html │ │ ├── tutorial.html │ │ ├── use.html │ │ └── version.html └── source │ ├── .npmignore │ ├── README.md │ ├── _config.yml │ ├── package-lock.json │ ├── package.json │ ├── patch.ps1 │ ├── patch │ └── highlight.js │ │ └── lib │ │ └── languages │ │ └── cs.js │ ├── src │ ├── index.md │ ├── readme.md │ └── v1 │ │ └── guide │ │ ├── api.md │ │ ├── configure.md │ │ ├── crtdel-3rd.md │ │ ├── faq.md │ │ ├── features.md │ │ ├── gc-optimization.md │ │ ├── hotfix.md │ │ ├── index.md │ │ ├── performance-analysis.md │ │ ├── signature.md │ │ ├── tutorial.md │ │ ├── use.md │ │ └── version.md │ └── themes │ └── catlib │ ├── _config.yml │ ├── layout │ ├── index.ejs │ ├── layout.ejs │ ├── page.ejs │ └── partials │ │ ├── article.ejs │ │ └── sidebar.ejs │ └── source │ ├── css │ ├── _common.styl │ ├── _markdown.styl │ ├── _settings.styl │ ├── _sidebar.styl │ ├── index.styl │ └── page.styl │ ├── images │ ├── github.png │ ├── logo.png │ ├── power.png │ ├── quick.png │ ├── reliable.png │ ├── search.focus.png │ ├── search.png │ └── simple.png │ └── js │ ├── jquery.js │ └── vue.js └── obj └── Debug ├── Assembly-CSharp-Editor.csproj.CoreCompileInputs.cache ├── Assembly-CSharp-Editor.csprojResolveAssemblyReference.cache ├── Assembly-CSharp.csproj.CoreCompileInputs.cache ├── Assembly-CSharp.csprojResolveAssemblyReference.cache └── project.razor.json /Assets/FairyGui.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7092a1a75266c614e8144c71cae562c9 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/LuaSupport.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0a47926bffafbe4aad9ddfcb9be401f 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/LuaSupport/FairyGuiGenConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d83ad1168e5ef444d81678cd181a3690 3 | timeCreated: 1541928441 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/LuaSupport/LuaUIHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 513a247926702d9409811f8ad56b6e56 3 | timeCreated: 1541928441 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/LuaSupport/ReadMe.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2ee71fef4f08e141981c7ffd31aa088 3 | timeCreated: 1541928445 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16562aa86a8a1ff47a6804573a1d2e08 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89643e055ff307f4285fda02841ff6c5 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Resources/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f3921d186dc77d47b2f6f2b477c3d1f 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Resources/Shaders/AddOn.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6262e17619cfa44c8dec60b3e08f18f 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Resources/Shaders/AddOn/FairyGUI-BlurFilter.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1bd03f782dca204f982ff4dc0a4698d 3 | timeCreated: 1541925254 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Resources/Shaders/FairyGUI-BMFont.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77959020b155dfc47ada0cf0026c8a0f 3 | timeCreated: 1541925254 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Resources/Shaders/FairyGUI-Image.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc2ab4d343e710746824f83ad73a3fa6 3 | timeCreated: 1541925255 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Resources/Shaders/FairyGUI-Text-Brighter.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbef1f3fb7859634cba21534bdd7b39a 3 | timeCreated: 1541925254 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Resources/Shaders/FairyGUI-Text.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72bd507463339b843a80607d43dc16cd 3 | timeCreated: 1541925254 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c02e810801dffad419bca0bec3cbd189 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bc19d9205e147741a4b622aeb11742c 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/BlendMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8797d4ad3ffbad4ebb881b06663bb1e 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/CaptureCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21b56e984aed92b4ca7d56aa0120574b 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Container.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81ebc41c188cc6f45853e4f5b6e738e5 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/DisplayObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a1195e4c57a0f642b3aa7977de5247b 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/DisplayOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 166ed44d6ee7e7540b51ee69fd33b805 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/FillUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 844fcd382db76c746853259569b0d2b7 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/GoWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c53769ae80fff7444ad4f7f97569135f 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/HitTest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 781b30459865949468c19474f14824c3 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/HitTest/BoxColliderHitTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e78eb210d3e75d74a9ba13dfc073c114 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/HitTest/ColliderHitTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c702cea354b8d94a8390c9ba9de6500 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/HitTest/HitTestContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cc7b447e3c1cc64392daa55c4e9feda 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/HitTest/IHitTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b05d6f4dc5b2e04f86b71bef90c42d3 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/HitTest/MeshColliderHitTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef80cdd7c326f624fb298f05128b5ed8 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/HitTest/PixelHitTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52294edccc1ba6d4ca42999eec1db199 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/HitTest/RectHitTest.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace FairyGUI 4 | { 5 | /// 6 | /// 7 | /// 8 | public class RectHitTest : IHitTest 9 | { 10 | /// 11 | /// 12 | /// 13 | public Rect rect { get; set; } 14 | 15 | public void SetEnabled(bool value) 16 | { 17 | } 18 | 19 | public bool HitTest(Container container, ref Vector2 localPoint) 20 | { 21 | localPoint = container.GetHitTestLocalPoint(); 22 | return rect.Contains(localPoint); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/HitTest/RectHitTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e6dba04b0e130241a0c0a13e83d56b6 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Image.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac2f2a371b7f5394f9836168d469014e 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/MaterialManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7b05e93baab2214bb1c24abc8b29c58 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/MovieClip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8014d807a4d2de54e866696a5b76e67f 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/NAudioClip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ac24d879fd8d744e8308936b9663bff 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/NGraphics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13d3ea6ab086c364cadca6450577e7f4 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/NMaterial.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38b606dac08b7dc46a5a0049d084130e 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/NTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73ca9a0fdaf4181478d147ccf5764a1b 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/ShaderConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fce3c7464e815b4ba09f49cd002f166 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Shape.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c01a5e24c517ce344b1e249c3b36441b 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Stage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a26203345eea5734494864caa3f863f2 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/StageCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76844ec5f79c871448fa290ed54586f8 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/StageEngine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f4f0ed956aa6944eba0e9c7635c1cba 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Stats.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace FairyGUI 3 | { 4 | /// 5 | /// 6 | /// 7 | public class Stats 8 | { 9 | /// 10 | /// 11 | /// 12 | public static int ObjectCount; 13 | 14 | /// 15 | /// 16 | /// 17 | public static int GraphicsCount; 18 | 19 | /// 20 | /// 21 | /// 22 | public static int LatestObjectCreation; 23 | 24 | /// 25 | /// 26 | /// 27 | public static int LatestGraphicsCreation; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Stats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce505699dee1e2e4790208ab05c56f66 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f94049d1a60ad4244a18e73f11b725b7 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/BaseFont.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a8c8328d3904dc4bafe17de992f1c9a 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/BitmapFont.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28078ec4232b24a48884a2d02ec89c4f 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/CopyPastePatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3127a30c5124f064083e5a18bbaa584b 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/DynamicFont.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1e612a79da10274bacbc41266308369 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/Emoji.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f47b476575c601b4e99a8dcf4d31b5f6 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/FontManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e406592ae157eeb459f85a53e40801e2 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/IKeyboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e62f6150118e7b46b1570026a4d4148 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/InputTextField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82b5609670cd4da4c94b13bb68190f5b 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/RTLSupport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb6af4ae2d22e964abf95b6ce4d01cfc 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/RichTextField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe5ce4f152ea035449370c4ba1e4fc68 3 | timeCreated: 1541925253 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/SelectionShape.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dd1c3dd656985a419a5f4617a1fe9c7 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/TextField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b8252b59cfbfbc489b0598b2531dc5c 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/TextFormat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1141658645bf5274f9c39c6cbc961e46 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/TouchScreenKeyboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21b1583df411faa49bcee3665f59493b 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/Text/TypingEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 813db6c83877a3c4aa038e7afdffb32d 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Core/UpdateContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e787ec807c03c4a4faa09b2fb8ef3bfb 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d02e1e964a60894882dc6e36111fbf2 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Editor/DisplayObjectEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27e08d3deb8c19c49af8a4180c5f3ae5 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Editor/EditorToolSet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d1de3c7b6981fb4eb0b26a22fe45782 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Editor/PackagesWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd16483d235ae6e47ab833fb2d0a13cd 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Editor/StageCameraEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ee5e0adff4567148bca97ab6a393afd 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Editor/UIConfigEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4f82b9db39411d4785b487e61c95555 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Editor/UIContentScalerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96f58a9cbf7259a45a1698d3c181541f 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Editor/UIPainterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f7713f9af0f56241843936498122fd5 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Editor/UIPanelEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eac29cdca8b85184792c67925d0ed8e8 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Event.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c507cd15bb99df4389dfa1362d4f81e 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Event/EventBridge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e15c6fb9203164449ce6a1497123adb 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Event/EventContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c40a1c8eb8df75346b450587b0d289ce 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Event/EventDispatcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f34d2a45e30e994ea3c784b2891606b 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Event/EventListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f80a9fbfe373edd45899142ed9fe9ee7 3 | timeCreated: 1541925253 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Event/IEventDispatcher.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace FairyGUI 5 | { 6 | /// 7 | /// 8 | /// 9 | public interface IEventDispatcher 10 | { 11 | void AddEventListener(string strType, EventCallback0 callback); 12 | void AddEventListener(string strType, EventCallback1 callback); 13 | void RemoveEventListener(string strType, EventCallback0 callback); 14 | void RemoveEventListener(string strType, EventCallback1 callback); 15 | bool DispatchEvent(EventContext context); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Event/IEventDispatcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fc3173675d885a41b2ef405d54259bd 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Event/InputEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcc37f943c36ed74a9dc2dd4c0f0a98a 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Filter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03ddc4d81ef943549b04d42b472c9742 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Filter/BlurFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aef88fb328a97049aa865721fcf4d5a 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Filter/ColorFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 623b22a83fde8234e90b411dd5583a4d 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Filter/IFilter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | namespace FairyGUI 6 | { 7 | public interface IFilter 8 | { 9 | /// 10 | /// 11 | /// 12 | DisplayObject target { get; set; } 13 | 14 | /// 15 | /// 16 | /// 17 | void Update(); 18 | 19 | /// 20 | /// 21 | /// 22 | void Dispose(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Filter/IFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87bed06c90411804aae041f48fc722da 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Gesture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f85255220843feb43bc5feb4ce1d3311 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Gesture/LongPressGesture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65a86f0bb306eda41ba0033f4ff36372 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Gesture/PinchGesture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d20fd2eabdc03814aacbbd715ddadf33 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Gesture/RotationGesture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a82aa3124e70834a856be63a6e9168d 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Gesture/SwipeGesture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e20cea4b4cbd45d4aa8ce68a70680c7c 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Tween.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db820cc6ebec7604dbcb0d961b4127e3 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Tween/EaseManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48c71a528b95740449e5cc7ecb0a76c5 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Tween/EaseType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7231474d82810214c85776b72107466d 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Tween/GTween.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7cf32928f2f2644487fe9664c824e87 3 | timeCreated: 1541925253 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Tween/GTweener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc911a3094846a84683bda40771403d8 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Tween/TweenManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78a4f2f8c19413b47ba75cc6abf5a131 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Tween/TweenPropType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46537abe882f8e548bc253dbedde0c5f 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Tween/TweenValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a306451a7729a504286836a6b4f554d3 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e091da6e25d007440a84a61dcf55f9f5 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Action.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d41854aca963f54f91f4bd32e0187f5 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Action/ChangePageAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6bbdbb116899e1459310538f5cb7f0f 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Action/ControllerAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba6ed6981b961c3488e5f8b8b54dbd26 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Action/PlayTransitionAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57b84b9e1fefad14991d400cf0044c62 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/AsyncCreationHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c5f680aaf3a31e4a993a2b7d01d211c 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Controller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fe968b9beab9ad4397a85f0e5b52d96 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/DragDropManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8cd3f49844fdc24885fabb9b212167d 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/EMRenderSupport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0d37743838a812438013592936262fa 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/FieldTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 874a9df8ec3c7784c9e39b173db1168b 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d79f560acf1209a468dafba03e856571 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GComboBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1933a7c8badad004e8468ace552122fa 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baf19bbffe0d8ba46b9b7df0a54c7942 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f998dcab96a5874bb23625c8b4ad79d 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa733336e95b954e8aebc1e711fb911 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GImage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2169c1e615e309d4b91a188a6cd1e30e 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GLabel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c110896489960f346bd0b29780f179e7 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24b503394d2c3b8459c7ebae325f4528 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e895a9b1e78cf343906251c257719d6 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GMovieClip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be20fdc91a1ac274d875831d57b631e7 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8683e89a40899142b5d16f62a494111 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GObjectPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 913a7cf58ed818d4a9de25d12b6d198d 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GProgressBar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dad94758baeef8b4883da40c14188d79 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GRichTextField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dc633075e1dfa644b1a6687b351136f 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GRoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5710b2fc2c3001d428e2c3f6b105ecad 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GScrollBar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 888fc1f54e8c812418490e530bde9beb 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GSlider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb39110750a23a940b5ae039161e73b6 3 | timeCreated: 1541925253 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GTextField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 315b77e363806ac478d3ed24cd7a2fe4 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/GTextInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f68d9691c6ad59644b840a59f2ae8ef3 3 | timeCreated: 1541925253 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69266bcf596c2cd40a671d132c164e7f 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/GearAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c249b0fcdb3fb26448e3816fc484e038 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/GearBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bebc25ac563f8ea4c90dec7ddb98a89d 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/GearColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0abf9cfac6539c54aa063e91966df31c 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/GearDisplay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 078d67ae4af1a5741a37bb38c08a1955 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/GearIcon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87ef1707cd9ccd0478fb18c5eb2f3a62 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/GearLook.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bf3a4f42901beb4f83275a85e81ed83 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/GearSize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbadc54f56f97dd4dbe58bec65c16ecb 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/GearText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd88ba96e6c987f419d3c67ee5372774 3 | timeCreated: 1541925253 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/GearXY.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 677a5a7da18c635478eb4600f87fd722 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/IAnimationGear.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22a8b5c52718048418380d4c390752f5 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/IColorGear.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace FairyGUI 4 | { 5 | /// 6 | /// 7 | /// 8 | public interface IColorGear 9 | { 10 | /// 11 | /// 12 | /// 13 | Color color { get; set; } 14 | } 15 | 16 | /// 17 | /// 18 | /// 19 | public interface ITextColorGear : IColorGear 20 | { 21 | /// 22 | /// 23 | /// 24 | Color strokeColor { get; set; } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Gears/IColorGear.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2abaed78f280744794b0908b4ecbfbb 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/IUISource.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace FairyGUI 3 | { 4 | /// 5 | /// 6 | /// 7 | public delegate void UILoadCallback(); 8 | 9 | /// 10 | /// 11 | /// 12 | public interface IUISource 13 | { 14 | /// 15 | /// 16 | /// 17 | string fileName { get; set; } 18 | 19 | /// 20 | /// 21 | /// 22 | bool loaded { get; } 23 | 24 | /// 25 | /// 26 | /// 27 | /// 28 | void Load(UILoadCallback callback); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/IUISource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 688c22068faad5d4d81ec32a6c3cfb98 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Margin.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace FairyGUI 3 | { 4 | /// 5 | /// 6 | /// 7 | public struct Margin 8 | { 9 | /// 10 | /// 11 | /// 12 | public int left; 13 | 14 | /// 15 | /// 16 | /// 17 | public int right; 18 | 19 | /// 20 | /// 21 | /// 22 | public int top; 23 | 24 | /// 25 | /// 26 | /// 27 | public int bottom; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Margin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4a5afa9b6daa2a46a7072096a6392a6 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/PackageItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fc8aed7221d3a14aa8e0c6e09adb1ac 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/PageOption.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5672b36b48b460145b53c7a5567e9979 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/PopupMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4859f440bd75964db98e0f12234bb80 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/RelationItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04bea547f18f67746809662d34637790 3 | timeCreated: 1541925249 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Relations.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 291958f4572d7fd46aa93c53223243bb 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/ScrollPane.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d4c41b966376ca43ab4ba591bf58861 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Transition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0626684f4fabd6246a295efdb7714673 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/TranslationHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24ee30c956434f042a69c5bfef0880d4 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Tree.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f800e2904524efb4e93900151b6cb89f 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Tree/TreeNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c37cc7dcbc70b594286838e82aeec22a 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Tree/TreeView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc8b650255245b441852e2c2f08f200d 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/UIConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83bfe2f508ed54d47b58981c728e3d42 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/UIContentScaler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9329dd4d9107d547bb37ce77271ba73 3 | timeCreated: 1541925253 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/UIObjectFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6be5bbd0e7aa69840af6bb719756b973 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/UIPackage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8befb8e22f8c53e499ec2c6f00becb33 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/UIPainter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7ea92eda1a063a45a08a5f02c10dcb1 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/UIPanel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 468ea47bcdb31534b9c130a6ec7241e5 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/UI/Window.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 219c7d45bcdf16f489ab794a5a0ab65d 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb998302cbd4c6045a5724a844b07597 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/ByteBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a496c3f191799f4b8ffc859e61ac2ca 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad125cb2e5eb69346bb807acd06f2873 3 | folderAsset: yes 4 | timeCreated: 1541925249 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/HtmlButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f36a95f861eb1d42a4df8cee6b20600 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/HtmlElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84fee29875489a24593c409d20774c19 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/HtmlImage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b6fa81f80bcd7f49ac82c8b0f3005f4 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/HtmlInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dd09fae28c659548b4f886b27365e98 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/HtmlLink.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 891cd2eab5e9fe34c984ce7aec75342e 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/HtmlPageContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6fafe637255fbd4da8941da457c30bb 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/HtmlParseOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1515dabdfa1d35247a1e99e40ca1aa29 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/HtmlParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18d4063cf98f2ad46bedf9ed0b20fe93 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/HtmlSelect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ca09023012de7543ac1de3d786ccbd9 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/IHtmlObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cde0959dcca04e40a5543ef922899e2 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/IHtmlPageContext.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace FairyGUI.Utils 3 | { 4 | /// 5 | /// 6 | /// 7 | public interface IHtmlPageContext 8 | { 9 | IHtmlObject CreateObject(RichTextField owner, HtmlElement element); 10 | void FreeObject(IHtmlObject obj); 11 | 12 | NTexture GetImageTexture(HtmlImage image); 13 | void FreeImageTexture(HtmlImage image, NTexture texture); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Html/IHtmlPageContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4c8da1f4b0f77c468acc30162493388 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/Timers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e47d7c67a7f302478595ee58bce80c0 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/ToolSet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8f94101f925c8b4f9e5d6d0b46d288f 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/UBBParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8965c4f9abe459047a80d80fa584588d 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/XML.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73fd7ba484784dc4480183973cb3b796 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/XMLIterator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb11007ca8ce81043b7f596557839a4d 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/XMLList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 975ed2f46e1b83f42a4fa45179b422ca 3 | timeCreated: 1541925251 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/XMLUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20da2817cb8235a4289c6c7651074840 3 | timeCreated: 1541925250 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/FairyGui/Source/Scripts/Utils/ZipReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8ebba7aa0f64174894ed981c5f5f151 3 | timeCreated: 1541925252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5a7cccc7ce25f147a1cb589aa282015 3 | folderAsset: yes 4 | timeCreated: 1541925290 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lua/FairyGUI.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f88bfba6dc2f0694ba362044d19628d0 3 | timeCreated: 1541928441 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lua/Main.lua: -------------------------------------------------------------------------------- 1 | require 'FairyGUI' 2 | require 'MainPanel' 3 | xutil = require 'xlua.util' 4 | 5 | print('lua启动成功') 6 | 7 | local view = MainPanel.New(); 8 | view:Show(); -------------------------------------------------------------------------------- /Assets/Lua/Main.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f6efab1ba2d8d24badd968c460040a0 3 | timeCreated: 1541929811 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lua/MainPanel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 023a4d56455f74b40a37257170ccfc62 3 | timeCreated: 1541930366 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a16bb6756d0496e42a92390340cb94f5 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0004c0a5ad641d4468ebb65779ee48b2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cd62bafd75e7604daf2b561b80d136d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8d0cd0f5702f0144af2498bce3ee3e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libxlua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/Android/libs/armeabi-v7a/libxlua.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libxlua.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e1b2e17cce240d4c8ff5457ac996e0d 3 | timeCreated: 1451443249 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 1 13 | settings: 14 | CPU: ARMv7 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 0 20 | settings: 21 | DefaultValueInitialized: true 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 079ea0ed741ff194a80cce029630b5ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libxlua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/Android/libs/x86/libxlua.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libxlua.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 038a89637b659e346a7a712ce0c9271b 3 | timeCreated: 1451443249 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Android: 12 | enabled: 1 13 | settings: 14 | CPU: x86 15 | Any: 16 | enabled: 0 17 | settings: {} 18 | Editor: 19 | enabled: 0 20 | settings: 21 | DefaultValueInitialized: true 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /Assets/Plugins/WSA.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8c5688e381fddc4eb22e6f96f69541c 3 | folderAsset: yes 4 | timeCreated: 1489995541 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/WSA/ARM.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6375603a0a1e2647b0c426b27646eb7 3 | folderAsset: yes 4 | timeCreated: 1490146877 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/WSA/ARM/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/WSA/ARM/xlua.dll -------------------------------------------------------------------------------- /Assets/Plugins/WSA/ARM/xlua.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb3d94d8757d66b40b20f0386b52d01d 3 | timeCreated: 1490146878 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | Any: 13 | enabled: 0 14 | settings: {} 15 | Editor: 16 | enabled: 0 17 | settings: 18 | DefaultValueInitialized: true 19 | WindowsStoreApps: 20 | enabled: 1 21 | settings: 22 | CPU: ARM 23 | userData: 24 | assetBundleName: 25 | assetBundleVariant: 26 | -------------------------------------------------------------------------------- /Assets/Plugins/WSA/x64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d5a7116d7e9a33409205303635b8635 3 | folderAsset: yes 4 | timeCreated: 1490146877 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/WSA/x64/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/WSA/x64/xlua.dll -------------------------------------------------------------------------------- /Assets/Plugins/WSA/x64/xlua.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a73864467778862409da51f9feb60004 3 | timeCreated: 1490146878 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | Any: 13 | enabled: 0 14 | settings: {} 15 | Editor: 16 | enabled: 0 17 | settings: 18 | DefaultValueInitialized: true 19 | WindowsStoreApps: 20 | enabled: 1 21 | settings: 22 | CPU: x64 23 | userData: 24 | assetBundleName: 25 | assetBundleVariant: 26 | -------------------------------------------------------------------------------- /Assets/Plugins/WSA/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e0f35de38a8ed24fa8b20d444c9ee5e 3 | folderAsset: yes 4 | timeCreated: 1490146877 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/WSA/x86/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/WSA/x86/xlua.dll -------------------------------------------------------------------------------- /Assets/Plugins/WebGL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7f3a5adb034d684cb13cb257c29a1c3 3 | folderAsset: yes 4 | timeCreated: 1504062948 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a4ab2e5e00054b03a7bf96d03e5b4e1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/HotfixFlags.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef0ed550afe43d449b58d883fad0585c 3 | timeCreated: 1498103331 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | Any: 13 | enabled: 0 14 | settings: {} 15 | Editor: 16 | enabled: 0 17 | settings: 18 | DefaultValueInitialized: true 19 | iOS: 20 | enabled: 1 21 | settings: {} 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libxlua.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/iOS/libxlua.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libxlua.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d65468f3356ca741b3fbebea91dfb6c 3 | timeCreated: 1451443249 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 0 13 | settings: {} 14 | Editor: 15 | enabled: 0 16 | settings: 17 | DefaultValueInitialized: true 18 | iOS: 19 | enabled: 1 20 | settings: {} 21 | userData: 22 | assetBundleName: 23 | assetBundleVariant: 24 | -------------------------------------------------------------------------------- /Assets/Plugins/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b0b0c4ffe67d2f4292c5211de91e55f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/x86/libxlua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/x86/libxlua.so -------------------------------------------------------------------------------- /Assets/Plugins/x86/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/x86/xlua.dll -------------------------------------------------------------------------------- /Assets/Plugins/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dba1dfb80e5b7d40bd214fc4ed2ed6b 3 | folderAsset: yes 4 | timeCreated: 1451020766 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/x86_64/libxlua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/x86_64/libxlua.so -------------------------------------------------------------------------------- /Assets/Plugins/x86_64/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/x86_64/xlua.dll -------------------------------------------------------------------------------- /Assets/Plugins/xlua.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e4b7549f5e4a4e71806e3ec8e428b15 3 | folderAsset: yes 4 | timeCreated: 1457422691 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/xlua.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac30af4fb2add4d41a9f50fe4f8292a3 3 | timeCreated: 1457422749 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/xlua.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9d8e68fa0fd1465294f1255f6ed8563 3 | folderAsset: yes 4 | timeCreated: 1457422691 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/xlua.bundle/Contents/MacOS/xlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Plugins/xlua.bundle/Contents/MacOS/xlua -------------------------------------------------------------------------------- /Assets/Plugins/xlua.bundle/Contents/MacOS/xlua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f3b1cda03ac84924b1ee0595fc019f5 3 | timeCreated: 1457422749 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1121e9f1b81202e47960660b1793f40a 3 | folderAsset: yes 4 | timeCreated: 1541931511 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/Role.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ec81afe7ed73cc459bfee9d0aff6cbf 3 | folderAsset: yes 4 | timeCreated: 1541931511 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/Role/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04ea8ad1eb97b764b9deffc1d03922ae 3 | folderAsset: yes 4 | timeCreated: 1445931749 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/Role/Materials/U1NPC0040.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Resources/Role/Materials/U1NPC0040.mat -------------------------------------------------------------------------------- /Assets/Resources/Role/Materials/U1NPC0040.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f610d32095a9f6f48b1ada37f0b76da2 3 | timeCreated: 1445931749 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Role/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67a92a39217a34d40b581e69a3154c0a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/Role/Textures/U1NPC0040.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Resources/Role/Textures/U1NPC0040.tga -------------------------------------------------------------------------------- /Assets/Resources/Role/npc.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Resources/Role/npc.FBX -------------------------------------------------------------------------------- /Assets/Resources/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac59b403635be1348bda25dd446acc51 3 | folderAsset: yes 4 | timeCreated: 1541931511 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/UI/Model_atlas0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Resources/UI/Model_atlas0.png -------------------------------------------------------------------------------- /Assets/Resources/UI/Model_atlas0.png.meta: -------------------------------------------------------------------------------- 1 | TextureImporter: 2 | mipmaps: 3 | enableMipMap: 0 4 | textureFormat: -3 5 | maxTextureSize: 2048 6 | nPOTScale: 0 7 | textureType: 0 8 | textureShape: 1 -------------------------------------------------------------------------------- /Assets/Resources/UI/Model_fui.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Resources/UI/Model_fui.bytes -------------------------------------------------------------------------------- /Assets/Resources/UI/Model_fui.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2abb3b1a68ebc7a4cb6b273de5619bf8 3 | timeCreated: 1535431206 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6349678518479345b3e336a465332d2 3 | folderAsset: yes 4 | timeCreated: 1541929834 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scene/1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/Scene/1.unity -------------------------------------------------------------------------------- /Assets/Scene/1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd24bd11aae9e1f4c92b80fd5529bb0f 3 | timeCreated: 1541929841 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 264027cb475ec804b8c7e5d298cb3798 3 | folderAsset: yes 4 | timeCreated: 1541925284 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Main.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b69028a4b495826428fa9c4b9813db31 3 | timeCreated: 1541925380 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d2d240998b7a9a44b7402136c946623 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/XLua/CHANGELOG.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be3fe4ee249c5274693e7b6f8053e861 3 | timeCreated: 1470364015 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67edfc4b640373846b14362bf8769576 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/Add_Remove_Lua_Lib.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ae08314c9c889249bbd484254109060 3 | timeCreated: 1529661499 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/Configure_EN.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 198070d8475ff3043b6c72a906feebee 3 | timeCreated: 1529661499 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/Custom_Generate_EN.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0765c3c416e8f746bf142b05be65ea7 3 | timeCreated: 1529661500 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/Faq_EN.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b6232183a3c52f4f9af4b68f8a687cc 3 | timeCreated: 1529661499 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/Hotfix_EN.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7919d0bddff7ee340852008d36cd68ec 3 | timeCreated: 1529661499 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee1eae11fbe87b04193ab2c3d15ba2b3 3 | folderAsset: yes 4 | timeCreated: 1481715983 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/Materials/logo.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Doc/Materials/logo.mat -------------------------------------------------------------------------------- /Assets/XLua/Doc/Materials/logo.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 953e2ba39b9a2d54388919b75877efb7 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua_API.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Doc/XLua_API.doc -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua_API.doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f05e875da3e1b3844b2360d177d617c9 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua_API.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d97e183eaa307684b9b99ded9005b181 3 | timeCreated: 1518577405 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua_API_EN.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 563bce1ceae59334c860773faa7b3a7a 3 | timeCreated: 1529661499 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua_Tutorial_EN.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76e3df78477813b47bb62712878a2f62 3 | timeCreated: 1529661499 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua增加删除第三方lua库.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Doc/XLua增加删除第三方lua库.doc -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua增加删除第三方lua库.doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40e0633beaaf4dd49aca86e58539a814 3 | timeCreated: 1469709930 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua增加删除第三方lua库.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a5e50ce3ca4b6140858bd4eb6efc2e9 3 | timeCreated: 1518577405 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua复杂值类型(struct)gc优化指南.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Doc/XLua复杂值类型(struct)gc优化指南.doc -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua复杂值类型(struct)gc优化指南.doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11d97e567c78f3147b86070c103f3d2d 3 | timeCreated: 1472455442 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua复杂值类型(struct)gc优化指南.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 688574fb2ae996243b1cb02ec3a78bee 3 | timeCreated: 1518577405 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua性能分析工具.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Doc/XLua性能分析工具.doc -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua性能分析工具.doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e83c211c4c43834b9c8027b7480ab5f 3 | timeCreated: 1462265117 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua性能分析工具.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8b5c3f531c153c409bb336ba21682ab 3 | timeCreated: 1518577405 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua教程.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Doc/XLua教程.doc -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua教程.doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9678cc58c9b40e147b514f7f5122ee20 3 | timeCreated: 1456291064 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua教程.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d871df7bbc973d468622dd10b6f7ea9 3 | timeCreated: 1518577405 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua的配置.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Doc/XLua的配置.doc -------------------------------------------------------------------------------- /Assets/XLua/Doc/XLua的配置.doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57c6cf634c35eb146b95206d498cbf99 3 | timeCreated: 1480488641 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/compatible_bytecode.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ace0cd26c96dc6468f5e054d8168b43 3 | timeCreated: 1536904183 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/configure.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e8a250c7dbdf6b48ae79313470374dc 3 | timeCreated: 1498554474 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/custom_generate.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6436d38981b6f5a4d8a2255ea3145ed1 3 | timeCreated: 1486519283 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/faq.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13645b7c8597d7840adaff65764ad40f 3 | timeCreated: 1481765808 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/features.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dcae34981e53564ea1ad644fe0b2f7c 3 | timeCreated: 1481768591 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/hotfix.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a96cb06c040f28c4aab024ca7634360b 3 | timeCreated: 1482837382 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Doc/logo.png -------------------------------------------------------------------------------- /Assets/XLua/Doc/signature.md: -------------------------------------------------------------------------------- 1 | ## 源代码签名的用处 2 | 3 | 可以防止文件传输的过程被黑客篡改。 4 | 5 | ## xLua的签名功能的使用 6 | 7 | * 用Tools/KeyPairsGen.exe生成公私钥对,key_ras文件保存的是私钥,key_ras.pub保存的是公钥,这两个文件请妥善保存,私钥关系到游戏安全,请做好保密工作; 8 | * 用Tools/FilesSignature.exe对源代码进行签名: 9 | * key_ras文件要放到执行目录; 10 | * 参数是源目录和目标目录,这个工具会自动把源目录及其子目录下所有lua后缀的文件签名,按同样的目录结构放到目标目录下; 11 | * 通过SignatureLoader对自己原有的CustomLoader包装后使用; 12 | * SignatureLoader的构造函数有两个,一个是公钥,也就是key_ras.pub里头的内容,一个是原来的Loader; 13 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/signature.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54ea702ea6cb89a46b7986dc7fa8482e 3 | timeCreated: 1489376033 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Doc/xLua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Doc/xLua.png -------------------------------------------------------------------------------- /Assets/XLua/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f890416e958ceb54694b165fb109582a 3 | folderAsset: yes 4 | timeCreated: 1534492498 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/XLua/Editor/ExampleConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b852d3c62124624888d03e611f7b1fc 3 | timeCreated: 1534126175 4 | licenseType: Pro 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/XLua/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa4f7e825d6ae9742bd6f88af5865c13 3 | folderAsset: yes 4 | timeCreated: 1458812833 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/XLua/Resources/perf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 866368b69ae1a2040943783fa31d2f74 3 | folderAsset: yes 4 | timeCreated: 1461553627 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/XLua/Resources/perf/memory.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a5cba5df35473342b614686c15f8a4c 3 | timeCreated: 1461833890 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Resources/perf/profiler.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4841b87b13a684649aab9de0e72132b7 3 | timeCreated: 1461553714 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Resources/tdr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f08dfe3f4634334ea0810ea31d8b593 3 | folderAsset: yes 4 | timeCreated: 1454039150 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/XLua/Resources/tdr/tdr.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e05f05f4a331bc45a04832062650a9e 3 | timeCreated: 1458812943 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Resources/xlua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0924e56a40ddb34e9b004c2056288fa 3 | folderAsset: yes 4 | timeCreated: 1463477791 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/XLua/Resources/xlua/util.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4397ec772c2d41e46a9766cf46b8bec6 3 | timeCreated: 1463477791 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac2f50d02ed9ec24b8fcc1921bfb244c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/XLua/Src/CodeEmit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93ce5fd372271b04199841c920eb0268 3 | timeCreated: 1470883945 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/CopyByValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aba23a1792dbc49438a2357566447979 3 | timeCreated: 1467189953 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/DelegateBridge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8c4165852e3e92468656dc6efb30a28 3 | timeCreated: 1452574309 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e53aa922da0a00469e5760902833e71 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Generator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e866a5f1000c29940843aece98d0c706 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Hotfix.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9f175d9e85601f4da903e391b8b7c77 3 | timeCreated: 1482299911 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/LinkXmlGen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f94464b9267f9b4cbf2f98681e22880 3 | folderAsset: yes 4 | timeCreated: 1479105499 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa8c6bd6daed854c98654418f48a830 3 | timeCreated: 1482482561 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: 8 | - Template: {fileID: 4900000, guid: 384feb229d259f549bbbac9e910b782b, type: 3} 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.tpl.txt: -------------------------------------------------------------------------------- 1 | <% 2 | require "TemplateCommon" 3 | %> 4 | 5 | 6 | <%ForEachCsList(assembly_infos, function(assembly_info)%> 7 | 8 | <%ForEachCsList(assembly_info.Types, function(type) 9 | %> 10 | <%end)%> 11 | 12 | <%end)%> 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 384feb229d259f549bbbac9e910b782b 3 | timeCreated: 1481621844 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c7307955fb71fc4090eb2a906a78a0a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaClassWrap.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8503038eabbabe44dac0f5f749d4411a 3 | timeCreated: 1481620508 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaClassWrapGCM.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bd79d95fd859724283926ad8fa4df30 3 | timeCreated: 1501232428 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaDelegateBridge.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d992756e2469044484be75f78e4e556 3 | timeCreated: 1481620508 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaDelegateWrap.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33b33e1cd617f794b8c801a32f3b2539 3 | timeCreated: 1481620508 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaEnumWrap.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae16c73aad9a21a44aef65decb7e4928 3 | timeCreated: 1481620508 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaEnumWrapGCM.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea84a5ee7abf8e347a810eb7848add46 3 | timeCreated: 1501232428 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaInterfaceBridge.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7165d08e91378494dadeb10e5338accb 3 | timeCreated: 1481620508 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaRegister.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e416b82ec9fe340458f97cf1e3468ef7 3 | timeCreated: 1481620508 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaRegisterGCM.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46c7366d55afbf1459674448d92c44c8 3 | timeCreated: 1501232428 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/LuaWrapPusher.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1a916469d261d447972d287b6c5b7a0 3 | timeCreated: 1481620508 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/PackUnpack.tpl.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9ef7e8f2a3b37744aad49b99370c16b 3 | timeCreated: 1481620508 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Editor/Template/TemplateCommon.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb41d53afe75a9443b182e284298feeb 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/XLua/Src/GenAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4455254bac5b6644893ae8183b9eb87c 3 | timeCreated: 1452509750 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/GenericDelegateBridge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bd0a3260371756449c4f642cc7ead00 3 | timeCreated: 1537950363 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/InternalGlobals.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bacb817c6d0b48644892c8dc3cb6cfc1 3 | timeCreated: 1496994941 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/LuaBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36f6e0ab03586ce4493d45dbc2a0ff5c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/LuaDLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Src/LuaDLL.cs -------------------------------------------------------------------------------- /Assets/XLua/Src/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/XLua/Src/LuaEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Assets/XLua/Src/LuaEnv.cs -------------------------------------------------------------------------------- /Assets/XLua/Src/LuaEnv.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a72df23459239b4d901cdacabd469d1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/LuaException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b209468b680ef7d4195de21a39bfcae0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/LuaFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c45cd490d853cb409d042c641784718 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/LuaTable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a4d72d338110544b8538c1a5fd33c11 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/MethodWarpsCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f029e1a01fd984f92bf8d5c2b51923 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/ObjectCasters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04cef766c4f15b341bcb4659831e6748 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/ObjectPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acf2cec75841d9646900284e2ba1ca4f 3 | timeCreated: 1480296949 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/ObjectTranslator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41d53bdd4bbda0f41a6bd1eb35af4f99 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/ObjectTranslatorPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 069f15dde2065491db1e68ca5fb1279d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/RawObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3f2b65020c56dc4985af0768b06c63c 3 | timeCreated: 1498116130 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/SignatureLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dfa9c69dddc18849bd3c1dfc4ac42de 3 | timeCreated: 1489222429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/StaticLuaCallbacks.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 300ed412007935e45a1546a984b89059 3 | timeCreated: 1469175028 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/TemplateEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f996f6400fcbdd4db02eeab46d9dd1e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/XLua/Src/TemplateEngine/TemplateEngine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d416b4da0b828854c8e997f0c1ae4072 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/XLua/Src/TypeExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0099a231859d6da43932d0c36714e17f 3 | timeCreated: 1489998065 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/XLua/Src/Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9c14a5b76adb7d41926526af904beda 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /General/Lib/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/General/Lib/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /General/Lib/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/General/Lib/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /General/Lib/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/General/Lib/Mono.Cecil.dll -------------------------------------------------------------------------------- /General/Src/XLuaTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/General/Src/XLuaTest.cs -------------------------------------------------------------------------------- /General/Src/XLuaUnitTest.cs: -------------------------------------------------------------------------------- 1 | using XLua; 2 | using System.Collections.Generic; 3 | using System; 4 | 5 | public class XLuaUnitTest 6 | { 7 | 8 | public static void Main() 9 | { 10 | LuaEnv luaenv = LuaEnvSingleton.Instance; 11 | luaenv.DoString("require 'main'"); 12 | } 13 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | xlua整合FairyGui -------------------------------------------------------------------------------- /Test/PrefTest/Resources/luaTest.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14cd7781d98aaeb419b3c2c121a8c609 3 | timeCreated: 1476275211 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/PrefTest/xLuaPerfTest/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/PrefTest/xLuaPerfTest/Main.unity -------------------------------------------------------------------------------- /Test/PrefTest/xLuaPerfTest/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dd456d13ecffe440b0f1e3187d1d3d3 3 | timeCreated: 1467600712 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/PrefTest/xLuaPerfTest/PeformentTestConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0668986d04994e448939e21fb74c5d5a 3 | timeCreated: 1475977076 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/PrefTest/xLuaPerfTest/PerfMain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28450407178d7a04fa5767bb74363a1f 3 | timeCreated: 1467600713 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/D.lua: -------------------------------------------------------------------------------- 1 | strValue = "D.lua" -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/D.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af3706b030ae190448b7feef19dbe395 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/csCallLua.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f134b58b34a7854ea895e518b4ffb9c 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/genCode.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d485a1ab7c5b86c459b0a0409164263e 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/ltest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c751f31fa1d4664a8a162241f8a7812 3 | folderAsset: yes 4 | timeCreated: 1483528414 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/ltest/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/UnitTest/StreamingAssets/ltest/init.lua -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/ltest/init.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 371aa1acd86c2484596f2b8d4e5d6b67 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/ltest/lassert.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e399387a268701146881269b83f8f79e 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/ltest/loutput.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c81508a9cd6507b43aa52a394d110123 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/luaCallCs.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58a8a02fffd75f04196fa18261f6b200 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/luaCallCsReflect.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3def27a586fdac545a71c421a4593354 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/luaTdrTest.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa1392032a89cd8489d1e9d150190b68 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/main.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6614b2ace2f43764b9e587155b572200 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/testlua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e4a7e3c0d82cd04e809dc62d243d3d8 3 | folderAsset: yes 4 | timeCreated: 1483528414 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/testlua/B.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f7ef963c7bf8eb4db37942e665f8fd0 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/testlua/C.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a0e47ac3a7d33d429fdc4554f7ff117 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/testlua/main.lua: -------------------------------------------------------------------------------- 1 | require "testlua.B" 2 | require "D" 3 | require "A" -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/testlua/main.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ace603416f40bbc4281897da7294b5d4 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/testxxx.tdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/UnitTest/StreamingAssets/testxxx.tdr -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/testxxx.tdr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acb0c591472f9cc45ba9c85e5c8253bc 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/testxxx2.tdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/UnitTest/StreamingAssets/testxxx2.tdr -------------------------------------------------------------------------------- /Test/UnitTest/StreamingAssets/testxxx2.tdr.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88bc84a96f56e814ca9205beefdb5665 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3e28212fb5931d44bc37dcd4fd0127f 3 | folderAsset: yes 4 | timeCreated: 1483527547 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/CSObjectForTestCSCallLua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80bd2608758187a4a8a8a2b867fde5fd 3 | timeCreated: 1483527547 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04eee5a18722aca49bfb2fb28416ede1 3 | folderAsset: yes 4 | timeCreated: 1483527547 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/A.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/A.lua.txt -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/A.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8873402992e800449a66083a965efa13 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/D.lua.txt: -------------------------------------------------------------------------------- 1 | strValue = "D.lua.txt" -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/D.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 383779e020c98e545b46bcffb0e8eb6b 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/E.lua: -------------------------------------------------------------------------------- 1 | strFile = "E.lua" -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/E.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b919ed1d655c59340a46f05706d83828 3 | timeCreated: 1483527547 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/InFile.lua.txt: -------------------------------------------------------------------------------- 1 | filestring = "b" -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/InFile.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6e01491f79d6294182471d0f2f58b8d 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/empty.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/empty.lua.txt -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/empty.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be8f8d969eceb234980e5b556c229e12 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/error.lua.txt: -------------------------------------------------------------------------------- 1 | boolDefine = false 2 | if boolDefine: 3 | then 4 | print("error") 5 | end -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/Resources/error.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e0c4d2e49abdf748bf76ad0328dca25 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/TCForTestCSCallLua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76dffed6dedc93a4a93f70367637ac20 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/TestCSCallLua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cba25057ebcf1d54c9ad49fde9b6e62d 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/TestCSCallLua.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/UnitTest/xLuaTest/CSharpCallLua/TestCSCallLua.unity -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/CSharpCallLua/TestCSCallLua.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 545aff291ef305c42b613b7085779131 3 | timeCreated: 1483527547 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/LuaCallCS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1cb3557274d1344983c4ef8c8cda643 3 | folderAsset: yes 4 | timeCreated: 1483527547 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/LuaCallCS/CSObjectForLuaCallCS.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cfcc83451afbc44da0435dfaf0f3a8e 3 | timeCreated: 1483527547 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/LuaTestCommon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c683d1a1acf2cd47aa488b3dbd06aca 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/LuaTestObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84ce37be2f5dabf448aa5270f51153e6 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/LuaTestObjReflect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5ef0d5b807af9e42a0671fcb4b375fa 3 | timeCreated: 1483528418 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Main.cs: -------------------------------------------------------------------------------- 1 | #if !XLUA_GENERAL 2 | using UnityEngine; 3 | using System.Collections; 4 | using XLua; 5 | 6 | public class Main : MonoBehaviour { 7 | LuaEnv luaenv; 8 | // Use this for initialization 9 | void Start () { 10 | luaenv = LuaEnvSingleton.Instance; 11 | luaenv.DoString ("require 'main'"); 12 | } 13 | 14 | // Update is called once per frame 15 | void Update () { 16 | luaenv.GC (); 17 | } 18 | } 19 | #endif -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Main.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a51b9f781bcbff34a82d5c9dcb2f0b5d 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9331fb732c3f3e34aa1642e545db60f4 3 | folderAsset: yes 4 | timeCreated: 1483527547 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Resources/non_tlv_net_msg_type.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 568886381954c3b408d0b9ace77f3af3 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Resources/non_tlv_net_protocol.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b1bbaf398add15499486b67e8211845 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Resources/non_tlv_net_protocol_v4.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 657558324b4147b42b960f741e98d671 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Resources/testxxx.tdr.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/UnitTest/xLuaTest/Resources/testxxx.tdr.bytes -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Resources/testxxx.tdr.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a08842234ae5524396a80430fe94928 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Resources/testxxx2.tdr.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/UnitTest/xLuaTest/Resources/testxxx2.tdr.bytes -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/Resources/testxxx2.tdr.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d91f27258b672db439cd96a0d141fcc3 3 | timeCreated: 1483527551 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Test/UnitTest/xLuaTest/main.unity -------------------------------------------------------------------------------- /Test/UnitTest/xLuaTest/main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abaec912059a37f4cb0397ad29113f61 3 | timeCreated: 1483528414 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tools/FilesSignature.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/FilesSignature.exe -------------------------------------------------------------------------------- /Tools/FilesSignature.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/FilesSignature.pdb -------------------------------------------------------------------------------- /Tools/KeyPairsGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/KeyPairsGen.exe -------------------------------------------------------------------------------- /Tools/KeyPairsGen.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/KeyPairsGen.pdb -------------------------------------------------------------------------------- /Tools/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /Tools/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /Tools/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/Mono.Cecil.dll -------------------------------------------------------------------------------- /Tools/Mono.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/Mono.Security.dll -------------------------------------------------------------------------------- /Tools/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/System.Core.dll -------------------------------------------------------------------------------- /Tools/System.Core.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/System.Core.dll.mdb -------------------------------------------------------------------------------- /Tools/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/System.dll -------------------------------------------------------------------------------- /Tools/System.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/System.dll.mdb -------------------------------------------------------------------------------- /Tools/XLuaHotfixInject.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/XLuaHotfixInject.exe -------------------------------------------------------------------------------- /Tools/XLuaHotfixInject.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/Tools/XLuaHotfixInject.pdb -------------------------------------------------------------------------------- /WebGLPlugins/lua.hpp: -------------------------------------------------------------------------------- 1 | // lua.hpp 2 | // Lua header files for C++ 3 | // <> not supplied automatically because Lua also compiles as C++ 4 | 5 | extern "C" { 6 | #include "lua.h" 7 | #include "lualib.h" 8 | #include "lauxlib.h" 9 | } 10 | -------------------------------------------------------------------------------- /build/lua-5.1.5/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.1.5/doc/cover.png -------------------------------------------------------------------------------- /build/lua-5.1.5/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.1.5/doc/logo.gif -------------------------------------------------------------------------------- /build/lua-5.1.5/doc/manual.css: -------------------------------------------------------------------------------- 1 | h3 code { 2 | font-family: inherit ; 3 | font-size: inherit ; 4 | } 5 | 6 | pre, code { 7 | font-size: 12pt ; 8 | } 9 | 10 | span.apii { 11 | float: right ; 12 | font-family: inherit ; 13 | font-style: normal ; 14 | font-size: small ; 15 | color: gray ; 16 | } 17 | 18 | p+h1, ul+h1 { 19 | padding-top: 0.4em ; 20 | padding-bottom: 0.4em ; 21 | padding-left: 30px ; 22 | margin-left: -30px ; 23 | background-color: #E0E0FF ; 24 | } 25 | -------------------------------------------------------------------------------- /build/lua-5.1.5/etc/lua.hpp: -------------------------------------------------------------------------------- 1 | // lua.hpp 2 | // Lua header files for C++ 3 | // <> not supplied automatically because Lua also compiles as C++ 4 | 5 | extern "C" { 6 | #include "lua.h" 7 | #include "lualib.h" 8 | #include "lauxlib.h" 9 | } 10 | -------------------------------------------------------------------------------- /build/lua-5.1.5/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.1.5/etc/lua.ico -------------------------------------------------------------------------------- /build/lua-5.1.5/src/lapi.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** $Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp $ 3 | ** Auxiliary functions from Lua API 4 | ** See Copyright Notice in lua.h 5 | */ 6 | 7 | #ifndef lapi_h 8 | #define lapi_h 9 | 10 | 11 | #include "lobject.h" 12 | 13 | 14 | LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /build/lua-5.3.3/README: -------------------------------------------------------------------------------- 1 | 2 | This is Lua 5.3.3, released on 30 May 2016. 3 | 4 | For installation instructions, license details, and 5 | further information about Lua, see doc/readme.html. 6 | 7 | -------------------------------------------------------------------------------- /build/lua-5.3.3/dist.info: -------------------------------------------------------------------------------- 1 | --- This file is part of LuaDist project 2 | 3 | name = "lua" 4 | version = "5.3.2" 5 | 6 | desc = "Lua is a powerful, fast, light-weight, embeddable scripting language." 7 | author = "Roberto Ierusalimschy, Waldemar Celes, Luiz Henrique de Figueiredo" 8 | license = "MIT/X11" 9 | url = "http://www.lua.org" 10 | maintainer = "Peter Drahoš" 11 | 12 | -------------------------------------------------------------------------------- /build/lua-5.3.3/doc/index.css: -------------------------------------------------------------------------------- 1 | ul { 2 | list-style-type: none ; 3 | } 4 | 5 | ul.contents { 6 | padding: 0 ; 7 | } 8 | 9 | table { 10 | border: none ; 11 | border-spacing: 0 ; 12 | border-collapse: collapse ; 13 | } 14 | 15 | td { 16 | vertical-align: top ; 17 | padding: 0 ; 18 | text-align: left ; 19 | line-height: 1.25 ; 20 | width: 15% ; 21 | } 22 | -------------------------------------------------------------------------------- /build/lua-5.3.3/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.3/doc/logo.gif -------------------------------------------------------------------------------- /build/lua-5.3.3/doc/manual.css: -------------------------------------------------------------------------------- 1 | h3 code { 2 | font-family: inherit ; 3 | font-size: inherit ; 4 | } 5 | 6 | pre, code { 7 | font-size: 12pt ; 8 | } 9 | 10 | span.apii { 11 | color: gray ; 12 | float: right ; 13 | font-family: inherit ; 14 | font-style: normal ; 15 | font-size: small ; 16 | } 17 | 18 | h2:before { 19 | content: "" ; 20 | padding-right: 0em ; 21 | } 22 | -------------------------------------------------------------------------------- /build/lua-5.3.3/doc/osi-certified-72x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.3/doc/osi-certified-72x60.png -------------------------------------------------------------------------------- /build/lua-5.3.3/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.3/etc/lua.ico -------------------------------------------------------------------------------- /build/lua-5.3.3/etc/lua_lang.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.3/etc/lua_lang.ico -------------------------------------------------------------------------------- /build/lua-5.3.3/src/lua.hpp: -------------------------------------------------------------------------------- 1 | // lua.hpp 2 | // Lua header files for C++ 3 | // <> not supplied automatically because Lua also compiles as C++ 4 | 5 | extern "C" { 6 | #include "lua.h" 7 | #include "lualib.h" 8 | #include "lauxlib.h" 9 | } 10 | -------------------------------------------------------------------------------- /build/lua-5.3.3/src/lua.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.3/src/lua.rc -------------------------------------------------------------------------------- /build/lua-5.3.3/src/luac.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.3/src/luac.rc -------------------------------------------------------------------------------- /build/lua-5.3.3/src/wmain.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include /* declaration of __argc and __argv */ 3 | 4 | extern int main(int, char **); 5 | 6 | int PASCAL WinMain(HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int ncmdshow) 7 | { 8 | int rc; 9 | 10 | extern int __argc; /* this seems to work for all the compilers we tested, except Watcom compilers */ 11 | extern char** __argv; 12 | 13 | rc = main(__argc, __argv); 14 | 15 | return rc; 16 | } 17 | -------------------------------------------------------------------------------- /build/lua-5.3.4/README: -------------------------------------------------------------------------------- 1 | 2 | This is Lua 5.3.4, released on 12 Jan 2017. 3 | 4 | For installation instructions, license details, and 5 | further information about Lua, see doc/readme.html. 6 | 7 | -------------------------------------------------------------------------------- /build/lua-5.3.4/doc/index.css: -------------------------------------------------------------------------------- 1 | ul { 2 | list-style-type: none ; 3 | } 4 | 5 | ul.contents { 6 | padding: 0 ; 7 | } 8 | 9 | table { 10 | border: none ; 11 | border-spacing: 0 ; 12 | border-collapse: collapse ; 13 | } 14 | 15 | td { 16 | vertical-align: top ; 17 | padding: 0 ; 18 | text-align: left ; 19 | line-height: 1.25 ; 20 | width: 15% ; 21 | } 22 | -------------------------------------------------------------------------------- /build/lua-5.3.4/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.4/doc/logo.gif -------------------------------------------------------------------------------- /build/lua-5.3.4/doc/manual.css: -------------------------------------------------------------------------------- 1 | h3 code { 2 | font-family: inherit ; 3 | font-size: inherit ; 4 | } 5 | 6 | pre, code { 7 | font-size: 12pt ; 8 | } 9 | 10 | span.apii { 11 | color: gray ; 12 | float: right ; 13 | font-family: inherit ; 14 | font-style: normal ; 15 | font-size: small ; 16 | } 17 | 18 | h2:before { 19 | content: "" ; 20 | padding-right: 0em ; 21 | } 22 | -------------------------------------------------------------------------------- /build/lua-5.3.4/doc/osi-certified-72x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.4/doc/osi-certified-72x60.png -------------------------------------------------------------------------------- /build/lua-5.3.4/src/lua.hpp: -------------------------------------------------------------------------------- 1 | // lua.hpp 2 | // Lua header files for C++ 3 | // <> not supplied automatically because Lua also compiles as C++ 4 | 5 | extern "C" { 6 | #include "lua.h" 7 | #include "lualib.h" 8 | #include "lauxlib.h" 9 | } 10 | -------------------------------------------------------------------------------- /build/lua-5.3.5/README: -------------------------------------------------------------------------------- 1 | 2 | This is Lua 5.3.5, released on 26 Jun 2018. 3 | 4 | For installation instructions, license details, and 5 | further information about Lua, see doc/readme.html. 6 | 7 | -------------------------------------------------------------------------------- /build/lua-5.3.5/doc/index.css: -------------------------------------------------------------------------------- 1 | ul { 2 | list-style-type: none ; 3 | } 4 | 5 | ul.contents { 6 | padding: 0 ; 7 | } 8 | 9 | table { 10 | border: none ; 11 | border-spacing: 0 ; 12 | border-collapse: collapse ; 13 | } 14 | 15 | td { 16 | vertical-align: top ; 17 | padding: 0 ; 18 | text-align: left ; 19 | line-height: 1.25 ; 20 | width: 15% ; 21 | } 22 | -------------------------------------------------------------------------------- /build/lua-5.3.5/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.5/doc/logo.gif -------------------------------------------------------------------------------- /build/lua-5.3.5/doc/manual.css: -------------------------------------------------------------------------------- 1 | h3 code { 2 | font-family: inherit ; 3 | font-size: inherit ; 4 | } 5 | 6 | pre, code { 7 | font-size: 12pt ; 8 | } 9 | 10 | span.apii { 11 | color: gray ; 12 | float: right ; 13 | font-family: inherit ; 14 | font-style: normal ; 15 | font-size: small ; 16 | } 17 | 18 | h2:before { 19 | content: "" ; 20 | padding-right: 0em ; 21 | } 22 | -------------------------------------------------------------------------------- /build/lua-5.3.5/doc/osi-certified-72x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/lua-5.3.5/doc/osi-certified-72x60.png -------------------------------------------------------------------------------- /build/lua-5.3.5/src/lua.hpp: -------------------------------------------------------------------------------- 1 | // lua.hpp 2 | // Lua header files for C++ 3 | // <> not supplied automatically because Lua also compiles as C++ 4 | 5 | extern "C" { 6 | #include "lua.h" 7 | #include "lualib.h" 8 | #include "lauxlib.h" 9 | } 10 | -------------------------------------------------------------------------------- /build/luac/make_unix.sh: -------------------------------------------------------------------------------- 1 | mkdir -p build_unix && cd build_unix 2 | cmake -DLUAC_COMPATIBLE_FORMAT=ON ../ 3 | cd .. 4 | cmake --build build_unix --config Release 5 | 6 | -------------------------------------------------------------------------------- /build/luac/make_win32.bat: -------------------------------------------------------------------------------- 1 | mkdir build32 & pushd build32 2 | cmake -DLUAC_COMPATIBLE_FORMAT=ON -G "Visual Studio 14 2015" .. 3 | popd 4 | cmake --build build32 --config Release 5 | pause -------------------------------------------------------------------------------- /build/luac/make_win64.bat: -------------------------------------------------------------------------------- 1 | mkdir build64 & pushd build64 2 | cmake -DLUAC_COMPATIBLE_FORMAT=ON -G "Visual Studio 14 2015 Win64" .. 3 | popd 4 | cmake --build build64 --config Release 5 | pause -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/README: -------------------------------------------------------------------------------- 1 | README for LuaJIT 2.1.0-beta2 2 | ----------------------------- 3 | 4 | LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. 5 | 6 | Project Homepage: http://luajit.org/ 7 | 8 | LuaJIT is Copyright (C) 2005-2016 Mike Pall. 9 | LuaJIT is free software, released under the MIT license. 10 | See full Copyright Notice in the COPYRIGHT file or in luajit.h. 11 | 12 | Documentation for LuaJIT is available in HTML format. 13 | Please point your favorite browser to: 14 | 15 | doc/luajit.html 16 | 17 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/doc/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/luajit-2.1.0b2/doc/img/contact.png -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/host/README: -------------------------------------------------------------------------------- 1 | The files in this directory are only used during the build process of LuaJIT. 2 | For cross-compilation, they must be executed on the host, not on the target. 3 | 4 | These files should NOT be installed! 5 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/lj_alloc.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Bundled memory allocator. 3 | ** Donated to the public domain. 4 | */ 5 | 6 | #ifndef _LJ_ALLOC_H 7 | #define _LJ_ALLOC_H 8 | 9 | #include "lj_def.h" 10 | 11 | #ifndef LUAJIT_USE_SYSMALLOC 12 | LJ_FUNC void *lj_alloc_create(void); 13 | LJ_FUNC void lj_alloc_destroy(void *msp); 14 | LJ_FUNC void *lj_alloc_f(void *msp, void *ptr, size_t osize, size_t nsize); 15 | #endif 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/lj_asm.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** IR assembler (SSA IR -> machine code). 3 | ** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_ASM_H 7 | #define _LJ_ASM_H 8 | 9 | #include "lj_jit.h" 10 | 11 | #if LJ_HASJIT 12 | LJ_FUNC void lj_asm_trace(jit_State *J, GCtrace *T); 13 | LJ_FUNC void lj_asm_patchexit(jit_State *J, GCtrace *T, ExitNo exitno, 14 | MCode *target); 15 | #endif 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/lj_bc.c: -------------------------------------------------------------------------------- 1 | /* 2 | ** Bytecode instruction modes. 3 | ** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #define lj_bc_c 7 | #define LUA_CORE 8 | 9 | #include "lj_obj.h" 10 | #include "lj_bc.h" 11 | 12 | /* Bytecode offsets and bytecode instruction modes. */ 13 | #include "lj_bcdef.h" 14 | 15 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/lj_ff.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Fast function IDs. 3 | ** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_FF_H 7 | #define _LJ_FF_H 8 | 9 | /* Fast function ID. */ 10 | typedef enum { 11 | FF_LUA_ = FF_LUA, /* Lua function (must be 0). */ 12 | FF_C_ = FF_C, /* Regular C function (must be 1). */ 13 | #define FFDEF(name) FF_##name, 14 | #include "lj_ffdef.h" 15 | FF__MAX 16 | } FastFunc; 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/lj_gdbjit.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Client for the GDB JIT API. 3 | ** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_GDBJIT_H 7 | #define _LJ_GDBJIT_H 8 | 9 | #include "lj_obj.h" 10 | #include "lj_jit.h" 11 | 12 | #if LJ_HASJIT && defined(LUAJIT_USE_GDBJIT) 13 | 14 | LJ_FUNC void lj_gdbjit_addtrace(jit_State *J, GCtrace *T); 15 | LJ_FUNC void lj_gdbjit_deltrace(jit_State *J, GCtrace *T); 16 | 17 | #else 18 | #define lj_gdbjit_addtrace(J, T) UNUSED(T) 19 | #define lj_gdbjit_deltrace(J, T) UNUSED(T) 20 | #endif 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/lj_parse.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Lua parser (source code -> bytecode). 3 | ** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_PARSE_H 7 | #define _LJ_PARSE_H 8 | 9 | #include "lj_obj.h" 10 | #include "lj_lex.h" 11 | 12 | LJ_FUNC GCproto *lj_parse(LexState *ls); 13 | LJ_FUNC GCstr *lj_parse_keepstr(LexState *ls, const char *str, size_t l); 14 | #if LJ_HASFFI 15 | LJ_FUNC void lj_parse_keepcdata(LexState *ls, TValue *tv, GCcdata *cd); 16 | #endif 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/lj_profile.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Low-overhead profiling. 3 | ** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_PROFILE_H 7 | #define _LJ_PROFILE_H 8 | 9 | #include "lj_obj.h" 10 | 11 | #if LJ_HASPROFILE 12 | 13 | LJ_FUNC void LJ_FASTCALL lj_profile_interpreter(lua_State *L); 14 | #if !LJ_PROFILE_SIGPROF 15 | LJ_FUNC void LJ_FASTCALL lj_profile_hook_enter(global_State *g); 16 | LJ_FUNC void LJ_FASTCALL lj_profile_hook_leave(global_State *g); 17 | #endif 18 | 19 | #endif 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/lj_udata.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Userdata handling. 3 | ** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_UDATA_H 7 | #define _LJ_UDATA_H 8 | 9 | #include "lj_obj.h" 10 | 11 | LJ_FUNC GCudata *lj_udata_new(lua_State *L, MSize sz, GCtab *env); 12 | LJ_FUNC void LJ_FASTCALL lj_udata_free(global_State *g, GCudata *ud); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b2/src/lua.hpp: -------------------------------------------------------------------------------- 1 | // C++ wrapper for LuaJIT header files. 2 | 3 | extern "C" { 4 | #include "lua.h" 5 | #include "lauxlib.h" 6 | #include "lualib.h" 7 | #include "luajit.h" 8 | } 9 | 10 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/README: -------------------------------------------------------------------------------- 1 | README for LuaJIT 2.1.0-beta3 2 | ----------------------------- 3 | 4 | LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. 5 | 6 | Project Homepage: http://luajit.org/ 7 | 8 | LuaJIT is Copyright (C) 2005-2017 Mike Pall. 9 | LuaJIT is free software, released under the MIT license. 10 | See full Copyright Notice in the COPYRIGHT file or in luajit.h. 11 | 12 | Documentation for LuaJIT is available in HTML format. 13 | Please point your favorite browser to: 14 | 15 | doc/luajit.html 16 | 17 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/doc/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/build/luajit-2.1.0b3/doc/img/contact.png -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/host/README: -------------------------------------------------------------------------------- 1 | The files in this directory are only used during the build process of LuaJIT. 2 | For cross-compilation, they must be executed on the host, not on the target. 3 | 4 | These files should NOT be installed! 5 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/lj_alloc.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Bundled memory allocator. 3 | ** Donated to the public domain. 4 | */ 5 | 6 | #ifndef _LJ_ALLOC_H 7 | #define _LJ_ALLOC_H 8 | 9 | #include "lj_def.h" 10 | 11 | #ifndef LUAJIT_USE_SYSMALLOC 12 | LJ_FUNC void *lj_alloc_create(void); 13 | LJ_FUNC void lj_alloc_destroy(void *msp); 14 | LJ_FUNC void *lj_alloc_f(void *msp, void *ptr, size_t osize, size_t nsize); 15 | #endif 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/lj_asm.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** IR assembler (SSA IR -> machine code). 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_ASM_H 7 | #define _LJ_ASM_H 8 | 9 | #include "lj_jit.h" 10 | 11 | #if LJ_HASJIT 12 | LJ_FUNC void lj_asm_trace(jit_State *J, GCtrace *T); 13 | LJ_FUNC void lj_asm_patchexit(jit_State *J, GCtrace *T, ExitNo exitno, 14 | MCode *target); 15 | #endif 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/lj_bc.c: -------------------------------------------------------------------------------- 1 | /* 2 | ** Bytecode instruction modes. 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #define lj_bc_c 7 | #define LUA_CORE 8 | 9 | #include "lj_obj.h" 10 | #include "lj_bc.h" 11 | 12 | /* Bytecode offsets and bytecode instruction modes. */ 13 | #include "lj_bcdef.h" 14 | 15 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/lj_ff.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Fast function IDs. 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_FF_H 7 | #define _LJ_FF_H 8 | 9 | /* Fast function ID. */ 10 | typedef enum { 11 | FF_LUA_ = FF_LUA, /* Lua function (must be 0). */ 12 | FF_C_ = FF_C, /* Regular C function (must be 1). */ 13 | #define FFDEF(name) FF_##name, 14 | #include "lj_ffdef.h" 15 | FF__MAX 16 | } FastFunc; 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/lj_gdbjit.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Client for the GDB JIT API. 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_GDBJIT_H 7 | #define _LJ_GDBJIT_H 8 | 9 | #include "lj_obj.h" 10 | #include "lj_jit.h" 11 | 12 | #if LJ_HASJIT && defined(LUAJIT_USE_GDBJIT) 13 | 14 | LJ_FUNC void lj_gdbjit_addtrace(jit_State *J, GCtrace *T); 15 | LJ_FUNC void lj_gdbjit_deltrace(jit_State *J, GCtrace *T); 16 | 17 | #else 18 | #define lj_gdbjit_addtrace(J, T) UNUSED(T) 19 | #define lj_gdbjit_deltrace(J, T) UNUSED(T) 20 | #endif 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/lj_parse.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Lua parser (source code -> bytecode). 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_PARSE_H 7 | #define _LJ_PARSE_H 8 | 9 | #include "lj_obj.h" 10 | #include "lj_lex.h" 11 | 12 | LJ_FUNC GCproto *lj_parse(LexState *ls); 13 | LJ_FUNC GCstr *lj_parse_keepstr(LexState *ls, const char *str, size_t l); 14 | #if LJ_HASFFI 15 | LJ_FUNC void lj_parse_keepcdata(LexState *ls, TValue *tv, GCcdata *cd); 16 | #endif 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/lj_profile.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Low-overhead profiling. 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_PROFILE_H 7 | #define _LJ_PROFILE_H 8 | 9 | #include "lj_obj.h" 10 | 11 | #if LJ_HASPROFILE 12 | 13 | LJ_FUNC void LJ_FASTCALL lj_profile_interpreter(lua_State *L); 14 | #if !LJ_PROFILE_SIGPROF 15 | LJ_FUNC void LJ_FASTCALL lj_profile_hook_enter(global_State *g); 16 | LJ_FUNC void LJ_FASTCALL lj_profile_hook_leave(global_State *g); 17 | #endif 18 | 19 | #endif 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/lj_udata.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Userdata handling. 3 | ** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h 4 | */ 5 | 6 | #ifndef _LJ_UDATA_H 7 | #define _LJ_UDATA_H 8 | 9 | #include "lj_obj.h" 10 | 11 | LJ_FUNC GCudata *lj_udata_new(lua_State *L, MSize sz, GCtab *env); 12 | LJ_FUNC void LJ_FASTCALL lj_udata_free(global_State *g, GCudata *ud); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /build/luajit-2.1.0b3/src/lua.hpp: -------------------------------------------------------------------------------- 1 | // C++ wrapper for LuaJIT header files. 2 | 3 | extern "C" { 4 | #include "lua.h" 5 | #include "lauxlib.h" 6 | #include "lualib.h" 7 | #include "luajit.h" 8 | } 9 | 10 | -------------------------------------------------------------------------------- /build/make_ios_lua53.sh: -------------------------------------------------------------------------------- 1 | mkdir -p build_ios && cd build_ios 2 | cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/iOS.cmake -GXcode ../ 3 | cd .. 4 | cmake --build build_ios --config Release 5 | mkdir -p plugin_lua53/Plugins/iOS/ 6 | cp build_ios/Release-iphoneos/libxlua.a plugin_lua53/Plugins/iOS/libxlua.a 7 | 8 | -------------------------------------------------------------------------------- /build/make_linux32_lua53.sh: -------------------------------------------------------------------------------- 1 | mkdir -p build_linux32 && cd build_linux32 2 | cmake -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 -DCMAKE_SHARED_LINKER_FLAGS=-m32 ../ 3 | cd .. 4 | cmake --build build_linux32 --config Release 5 | 6 | -------------------------------------------------------------------------------- /build/make_linux32_luajit.sh: -------------------------------------------------------------------------------- 1 | cd luajit-2.1.0b3 2 | make clean 3 | make CC="gcc -m32" 4 | cd .. 5 | mkdir -p build_linux32_lj && cd build_linux32_lj 6 | cmake -DUSING_LUAJIT=ON -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 -DCMAKE_SHARED_LINKER_FLAGS=-m32 ../ 7 | cd .. 8 | cmake --build build_linux32_lj --config Release 9 | 10 | -------------------------------------------------------------------------------- /build/make_linux64_lua53.sh: -------------------------------------------------------------------------------- 1 | mkdir -p build_linux64 && cd build_linux64 2 | cmake ../ 3 | cd .. 4 | cmake --build build_linux64 --config Release 5 | 6 | -------------------------------------------------------------------------------- /build/make_linux64_luajit.sh: -------------------------------------------------------------------------------- 1 | cd luajit-2.1.0b3 2 | make clean 3 | make CFLAGS=-fPIC 4 | cd .. 5 | mkdir -p build_linux64_lj && cd build_linux64_lj 6 | cmake -DUSING_LUAJIT=ON ../ 7 | cd .. 8 | cmake --build build_linux64_lj --config Release 9 | 10 | -------------------------------------------------------------------------------- /build/make_osx_lua53.sh: -------------------------------------------------------------------------------- 1 | mkdir -p build_osx && cd build_osx 2 | cmake -GXcode ../ 3 | cd .. 4 | cmake --build build_osx --config Release 5 | mkdir -p plugin_lua53/Plugins/xlua.bundle/Contents/MacOS/ 6 | cp build_osx/Release/xlua.bundle/Contents/MacOS/xlua plugin_lua53/Plugins/xlua.bundle/Contents/MacOS/xlua 7 | 8 | -------------------------------------------------------------------------------- /build/make_osx_luajit.sh: -------------------------------------------------------------------------------- 1 | mkdir -p build_lj_osx && cd build_lj_osx 2 | cmake -DUSING_LUAJIT=ON -GXcode ../ 3 | cd .. 4 | cmake --build build_lj_osx --config Release 5 | mkdir -p plugin_luajit/Plugins/xlua.bundle/Contents/MacOS/ 6 | cp build_lj_osx/Release/xlua.bundle/Contents/MacOS/xlua plugin_luajit/Plugins/xlua.bundle/Contents/MacOS/xlua 7 | 8 | -------------------------------------------------------------------------------- /build/make_win32_lua53.bat: -------------------------------------------------------------------------------- 1 | mkdir build32 & pushd build32 2 | cmake -G "Visual Studio 14 2015" .. 3 | IF %ERRORLEVEL% NEQ 0 cmake -G "Visual Studio 15 2017" .. 4 | popd 5 | cmake --build build32 --config Release 6 | md plugin_lua53\Plugins\x86 7 | copy /Y build32\Release\xlua.dll plugin_lua53\Plugins\x86\xlua.dll 8 | pause -------------------------------------------------------------------------------- /build/make_win64_lua53.bat: -------------------------------------------------------------------------------- 1 | mkdir build64 & pushd build64 2 | cmake -G "Visual Studio 14 2015 Win64" .. 3 | IF %ERRORLEVEL% NEQ 0 cmake -G "Visual Studio 15 2017 Win64" .. 4 | popd 5 | cmake --build build64 --config Release 6 | md plugin_lua53\Plugins\x86_64 7 | copy /Y build64\Release\xlua.dll plugin_lua53\Plugins\x86_64\xlua.dll 8 | pause -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | db.json 4 | *.log 5 | node_modules/ 6 | .deploy*/ -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | XLua 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/public/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/public/images/github.png -------------------------------------------------------------------------------- /docs/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/public/images/logo.png -------------------------------------------------------------------------------- /docs/public/images/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/public/images/power.png -------------------------------------------------------------------------------- /docs/public/images/quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/public/images/quick.png -------------------------------------------------------------------------------- /docs/public/images/reliable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/public/images/reliable.png -------------------------------------------------------------------------------- /docs/public/images/search.focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/public/images/search.focus.png -------------------------------------------------------------------------------- /docs/public/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/public/images/search.png -------------------------------------------------------------------------------- /docs/public/images/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/public/images/simple.png -------------------------------------------------------------------------------- /docs/source/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | db.json 4 | *.log 5 | node_modules/ 6 | public/ 7 | .deploy*/ -------------------------------------------------------------------------------- /docs/source/README.md: -------------------------------------------------------------------------------- 1 | # XLua 教程文档 2 | 3 | 这是XLua的教程文档网站,文档是使用[hexo](http://hexo.io/)构建的。 文档内容在[src](src)文件夹中,使用Markdown格式编写。 4 | 5 | ## 搭建本地文档环境 6 | 7 | * 首先您必须安装[nodejs](http://nodejs.cn/)及[npm](https://www.npmjs.com/) 8 | 9 | * 安装hexo,在docs/source下执行 10 | 11 | ``` 12 | $ npm install -g hexo-cli 13 | $ npm install 14 | ``` 15 | 16 | * 如下指令在 `localhost:4000` 启动文档网站: 17 | 18 | ``` 19 | $ hexo server 20 | ``` 21 | 22 | 23 | ## 修改Markdown后生成静态网页 24 | 25 | * 已经安装了hexo的话,执行如下指令: 26 | 27 | ``` 28 | $ hexo g 29 | ``` 30 | 31 | -------------------------------------------------------------------------------- /docs/source/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hexo-site", 3 | "version": "0.0.0", 4 | "private": true, 5 | "hexo": { 6 | "version": "3.3.7" 7 | }, 8 | "dependencies": { 9 | "hexo": "^3.3.7", 10 | "hexo-cli": "^1.0.3", 11 | "hexo-generator-archive": "^0.1.4", 12 | "hexo-generator-category": "^0.1.3", 13 | "hexo-generator-index": "^0.2.0", 14 | "hexo-generator-tag": "^0.2.0", 15 | "hexo-renderer-ejs": "^0.2.0", 16 | "hexo-renderer-marked": "^0.2.10", 17 | "hexo-renderer-stylus": "^0.3.1", 18 | "hexo-server": "^0.2.1" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /docs/source/patch.ps1: -------------------------------------------------------------------------------- 1 | $path = Split-Path -Parent $MyInvocation.MyCommand.Definition 2 | rm $path/node_modules/highlight.js/lib/languages/cs.js 3 | cp $path/patch/highlight.js/lib/languages/cs.js $path/node_modules/highlight.js/lib/languages/cs.js -------------------------------------------------------------------------------- /docs/source/src/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: XLua 3 | type: index 4 | order: 0 5 | --- -------------------------------------------------------------------------------- /docs/source/src/v1/guide/crtdel-3rd.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 添加删除第三方库 3 | type: guide 4 | order: 101 5 | --- 6 | 7 | ## 添加删除第三方库 8 | 9 | > Todo:请在此处输入内容 -------------------------------------------------------------------------------- /docs/source/src/v1/guide/gc-optimization.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: GC优化指南 3 | type: guide 4 | order: 102 5 | --- 6 | 7 | ## GC优化指南 8 | 9 | > Todo:请在此处输入内容 -------------------------------------------------------------------------------- /docs/source/src/v1/guide/performance-analysis.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 性能分析工具 3 | type: guide 4 | order: 103 5 | --- 6 | 7 | ## 性能分析工具 8 | 9 | > Todo:请在此处输入内容 -------------------------------------------------------------------------------- /docs/source/src/v1/guide/signature.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 数字签名 3 | type: guide 4 | order: 104 5 | --- 6 | 7 | ## 数字签名 8 | 9 | > Todo:请在此处输入内容 -------------------------------------------------------------------------------- /docs/source/src/v1/guide/tutorial.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 从零开始 3 | type: guide 4 | order: 100 5 | --- 6 | 7 | ## 从零开始 8 | 9 | > 文章等待完善 -------------------------------------------------------------------------------- /docs/source/src/v1/guide/use.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 商业案例 3 | type: guide 4 | order: 2 5 | --- 6 | 7 | ## 商业案例 8 | 9 | > 这份文档等待您进行完善 -------------------------------------------------------------------------------- /docs/source/src/v1/guide/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 更新记录 3 | type: guide 4 | order: 1 5 | --- 6 | 7 | ## 更新记录 8 | 9 | > 这份文档等待您进行完善 -------------------------------------------------------------------------------- /docs/source/themes/catlib/_config.yml: -------------------------------------------------------------------------------- 1 | site_description: "XLua" 2 | github: https://github.com/Tencent/xLua 3 | modify_github: https://github.com/Tencent/xLua/tree/master/docs/source/src/ 4 | copyright: © Copyright 2017 Tencent All Rights Reserved 5 | copyright_desc: Tencent 2017 -------------------------------------------------------------------------------- /docs/source/themes/catlib/layout/index.ejs: -------------------------------------------------------------------------------- 1 | 11 | 12 | -------------------------------------------------------------------------------- /docs/source/themes/catlib/layout/partials/article.ejs: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/source/themes/catlib/source/css/_settings.styl: -------------------------------------------------------------------------------- 1 | // font faces 2 | $body-font = 'Source Sans Pro', 'Helvetica Neue', "微软雅黑", "黑体", serif , Arial, sans-serif 3 | $code-font = 'Roboto Mono', Monaco, courier, monospace 4 | 5 | // font sizes 6 | $body-font-size = 15px 7 | 8 | // colors 9 | $main-color = #3d9cff 10 | $contrast-color = #ffffff 11 | $main-bg-color = #fafafa 12 | 13 | $main-font-color = #2c3e50 14 | $sub-font-color = rgb(200,200,200) 15 | 16 | //header 17 | $heading-padding-vertical = 6px 18 | $header-height = 32px -------------------------------------------------------------------------------- /docs/source/themes/catlib/source/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/source/themes/catlib/source/images/github.png -------------------------------------------------------------------------------- /docs/source/themes/catlib/source/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/source/themes/catlib/source/images/logo.png -------------------------------------------------------------------------------- /docs/source/themes/catlib/source/images/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/source/themes/catlib/source/images/power.png -------------------------------------------------------------------------------- /docs/source/themes/catlib/source/images/quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/source/themes/catlib/source/images/quick.png -------------------------------------------------------------------------------- /docs/source/themes/catlib/source/images/reliable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/source/themes/catlib/source/images/reliable.png -------------------------------------------------------------------------------- /docs/source/themes/catlib/source/images/search.focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/source/themes/catlib/source/images/search.focus.png -------------------------------------------------------------------------------- /docs/source/themes/catlib/source/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/source/themes/catlib/source/images/search.png -------------------------------------------------------------------------------- /docs/source/themes/catlib/source/images/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/docs/source/themes/catlib/source/images/simple.png -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp-Editor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e6fb437039c7d656db33484a069e178711b1a9b3 2 | -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp-Editor.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/obj/Debug/Assembly-CSharp-Editor.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c620c402e4b7c40d2238445b25c28a72fa4e293f 2 | -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoOneOne/xLua_FairyGui_Demo/f2935d67de0cd4e7076143129d769b30b5d6d1fd/obj/Debug/Assembly-CSharp.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/project.razor.json: -------------------------------------------------------------------------------- 1 | { 2 | "ProjectFilePath": "e:\\Work\\xLua_FairyGui_Demo\\Assembly-CSharp-Editor.csproj", 3 | "TargetFramework": "v3.5", 4 | "TagHelpers": [], 5 | "Configuration": { 6 | "ConfigurationName": "UnsupportedRazor", 7 | "LanguageVersion": "1.0", 8 | "Extensions": [ 9 | { 10 | "ExtensionName": "UnsupportedRazorExtension" 11 | } 12 | ] 13 | } 14 | } --------------------------------------------------------------------------------