├── .github ├── ISSUE_TEMPLATE │ └── bug-report---bug反馈.md └── workflows │ └── auto_gen_toc.yml ├── .gitignore ├── .obsidian ├── app.json ├── appearance.json ├── community-plugins.json ├── core-plugins.json ├── hotkeys.json ├── plugins │ ├── copy-url-in-preview │ │ ├── main.js │ │ └── manifest.json │ └── obsidian-git │ │ ├── data.json │ │ ├── main.js │ │ ├── manifest.json │ │ └── styles.css └── workspace.json ├── Editor.meta ├── Editor ├── AssetProcessor.meta ├── AssetProcessor │ ├── ExcludeFromBuild.cs │ ├── ExcludeFromBuild.cs.meta │ ├── ShaderModifyListener.cs │ └── ShaderModifyListener.cs.meta ├── CustomGUISample.meta ├── CustomGUISample │ ├── CustomFooter.cs │ ├── CustomFooter.cs.meta │ ├── CustomHeader.cs │ ├── CustomHeader.cs.meta │ ├── CustomMaterialAssetFinder.cs │ └── CustomMaterialAssetFinder.cs.meta ├── Helper.meta ├── Helper │ ├── ContextMenuHelper.cs │ ├── ContextMenuHelper.cs.meta │ ├── GUIStyles.cs │ ├── GUIStyles.cs.meta │ ├── Helper.cs │ ├── Helper.cs.meta │ ├── IOHelper.cs │ ├── IOHelper.cs.meta │ ├── MetaDataHelper.cs │ ├── MetaDataHelper.cs.meta │ ├── PresetHelper.cs │ ├── PresetHelper.cs.meta │ ├── RampHelper.cs │ ├── RampHelper.cs.meta │ ├── RevertableHelper.cs │ ├── RevertableHelper.cs.meta │ ├── ToolbarHelper.cs │ ├── ToolbarHelper.cs.meta │ ├── VersionControlHelper.cs │ └── VersionControlHelper.cs.meta ├── Icon.meta ├── Icon │ ├── Checkout.png │ ├── Checkout.png.meta │ ├── Collapse.png │ ├── Collapse.png.meta │ ├── Copy.png │ ├── Copy.png.meta │ ├── Expand.png │ ├── Expand.png.meta │ ├── Logo.png │ ├── Logo.png.meta │ ├── Logo2.png │ ├── Logo2.png.meta │ ├── Paste.png │ ├── Paste.png.meta │ ├── RevertIcon.png │ ├── RevertIcon.png.meta │ ├── SelectMaterialAsset.png │ ├── SelectMaterialAsset.png.meta │ ├── Stats.png │ ├── Stats.png.meta │ ├── Visibility.png │ └── Visibility.png.meta ├── LWGUI.asmdef ├── LWGUI.asmdef.meta ├── LWGUI.cs ├── LWGUI.cs.meta ├── MetaData.meta ├── MetaData │ ├── PerInspectorData.cs │ ├── PerInspectorData.cs.meta │ ├── PerMaterialData.cs │ ├── PerMaterialData.cs.meta │ ├── PerShaderData.cs │ └── PerShaderData.cs.meta ├── PerformanceMonitor.meta ├── PerformanceMonitor │ ├── ShaderCompiler.meta │ ├── ShaderCompiler │ │ ├── Fxc.meta │ │ ├── Fxc │ │ │ ├── ShaderCompilerDefaultFxc.cs │ │ │ ├── ShaderCompilerDefaultFxc.cs.meta │ │ │ ├── fxc.exe │ │ │ └── fxc.exe.meta │ │ ├── IShaderCompiler.cs │ │ ├── IShaderCompiler.cs.meta │ │ ├── Mali.meta │ │ └── Mali │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ ├── DynamicValue.cs │ │ │ ├── DynamicValue.cs.meta │ │ │ ├── JsonMaliocOutput.cs │ │ │ ├── JsonMaliocOutput.cs.meta │ │ │ ├── RuntimeMaliocShader.cs │ │ │ └── RuntimeMaliocShader.cs.meta │ │ │ ├── Parsing.meta │ │ │ ├── Parsing │ │ │ ├── MaliocOutputParser.cs │ │ │ └── MaliocOutputParser.cs.meta │ │ │ ├── ShaderCompilerMali.cs │ │ │ └── ShaderCompilerMali.cs.meta │ ├── ShaderPerfData.cs │ ├── ShaderPerfData.cs.meta │ ├── ShaderPerfMonitor.cs │ └── ShaderPerfMonitor.cs.meta ├── ScriptableObject.meta ├── ScriptableObject │ ├── GradientObject.cs │ ├── GradientObject.cs.meta │ ├── LwguiRampAtlas.cs │ ├── LwguiRampAtlas.cs.meta │ ├── LwguiShaderPropertyPreset.cs │ └── LwguiShaderPropertyPreset.cs.meta ├── ShaderDrawer.cs ├── ShaderDrawer.cs.meta ├── Timeline.meta └── Timeline │ ├── Editor.meta │ ├── Editor │ ├── LWGUI.Timeline.Editor.asmdef │ ├── LWGUI.Timeline.Editor.asmdef.meta │ ├── MaterialKeywordToggleTrackEditor.cs │ └── MaterialKeywordToggleTrackEditor.cs.meta │ ├── LWGUI.Timeline.asmdef │ ├── LWGUI.Timeline.asmdef.meta │ ├── TimelineHelper.cs │ └── TimelineHelper.cs.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── README_CN.md ├── README_CN.md.meta ├── Runtime.meta ├── Runtime ├── LWGUI.Runtime.asmdef ├── LWGUI.Runtime.asmdef.meta ├── LwguiGradient.meta ├── LwguiGradient │ ├── LwguiGradient.cs │ ├── LwguiGradient.cs.meta │ ├── LwguiGradientHelper.cs │ └── LwguiGradientHelper.cs.meta ├── RuntimeHelper.cs ├── RuntimeHelper.cs.meta ├── Timeline.meta └── Timeline │ ├── LWGUI.Runtime.Timeline.asmdef │ ├── LWGUI.Runtime.Timeline.asmdef.meta │ ├── MaterialKeywordToggle.meta │ └── MaterialKeywordToggle │ ├── MaterialKeywordTogglePlayableAsset.cs │ ├── MaterialKeywordTogglePlayableAsset.cs.meta │ ├── MaterialKeywordTogglePlayableBehaviour.cs │ ├── MaterialKeywordTogglePlayableBehaviour.cs.meta │ ├── MaterialKeywordToggleTrack.cs │ ├── MaterialKeywordToggleTrack.cs.meta │ ├── MaterialKeywordToggleTrackBehaviour.cs │ └── MaterialKeywordToggleTrackBehaviour.cs.meta ├── Test.meta ├── Test ├── .ShowEditorIcons.cs ├── .ShowEditorStyles.cs ├── LWGUI_KeywordTest 1.mat ├── LWGUI_KeywordTest 1.mat.meta ├── LWGUI_KeywordTest Variant.mat ├── LWGUI_KeywordTest Variant.mat.meta ├── LWGUI_KeywordTest.mat ├── LWGUI_KeywordTest.mat.meta ├── LWGUI_Preset_BlendMode.asset ├── LWGUI_Preset_BlendMode.asset.meta ├── LWGUI_Preset_Toggle.asset ├── LWGUI_Preset_Toggle.asset.meta ├── LWGUI_RampAtlas.asset ├── LWGUI_RampAtlas.asset.meta ├── LWGUI_RampAtlas.tga ├── LWGUI_RampAtlas.tga.meta ├── LWGUI_SampleAmplifyShader.mat ├── LWGUI_SampleAmplifyShader.mat.meta ├── LWGUI_SampleDrawerA.mat ├── LWGUI_SampleDrawerA.mat.meta ├── LWGUI_SampleDrawerA1.mat ├── LWGUI_SampleDrawerA1.mat.meta ├── LWGUI_SampleDrawerB.mat ├── LWGUI_SampleDrawerB.mat.meta ├── LWGUI_SampleDrawerB1.mat ├── LWGUI_SampleDrawerB1.mat.meta ├── LWGUI_ShaderPropertyPreset.asset ├── LWGUI_ShaderPropertyPreset.asset.meta ├── LWGUI_ShaderPropertyPreset1.asset ├── LWGUI_ShaderPropertyPreset1.asset.meta ├── LWGUI_ShaderPropertyPreset2.asset ├── LWGUI_ShaderPropertyPreset2.asset.meta ├── RampMap_Linear.png ├── RampMap_Linear.png.meta ├── RampMap_Test.png ├── RampMap_Test.png.meta ├── RampMap_sRGB.png ├── RampMap_sRGB.png.meta ├── SampleAmplifyShader.shader ├── SampleAmplifyShader.shader.meta ├── SampleDrawerA.shader ├── SampleDrawerA.shader.meta ├── SampleDrawerB.shader ├── SampleDrawerB.shader.meta ├── SampleKeyword.shader └── SampleKeyword.shader.meta ├── UnityEditorExtension.meta ├── UnityEditorExtension ├── LwguiGradientEditor.meta ├── LwguiGradientEditor │ ├── LwguiGradientDrawer.cs │ ├── LwguiGradientDrawer.cs.meta │ ├── LwguiGradientEditor.cs │ ├── LwguiGradientEditor.cs.meta │ ├── LwguiGradientEditorHelper.cs │ ├── LwguiGradientEditorHelper.cs.meta │ ├── LwguiGradientPresetLibrary.cs │ ├── LwguiGradientPresetLibrary.cs.meta │ ├── LwguiGradientPresetLibraryInspector.cs │ ├── LwguiGradientPresetLibraryInspector.cs.meta │ ├── LwguiGradientWindow.cs │ └── LwguiGradientWindow.cs.meta ├── README.md ├── README.md.meta ├── ReflectionHelper.cs ├── ReflectionHelper.cs.meta ├── Unity.InternalAPIEditorBridge.020.asmdef ├── Unity.InternalAPIEditorBridge.020.asmdef.meta ├── UnityEditorExtension.cs └── UnityEditorExtension.cs.meta ├── assets~ ├── 723ddce6-fb86-48ff-9683-a12cf6cff7a0.jpg ├── 809c4a1c-ce80-48b1-b415-7e8d4bea716e-16616214059841.png ├── LWGUI.png ├── Pasted image 20250321174432.png ├── Pasted image 20250522183200.png ├── Pasted image 20250523120309.png ├── image-20220822010511978.png ├── image-20220828003026556.png ├── image-20220828003129588.png ├── image-20220828003507825.png ├── image-20220828003810353.png ├── image-20220926025611208.png ├── image-20221122231655378.png ├── image-20221122231816714.png ├── image-20221122232307362.png ├── image-20221122232354623.png ├── image-20221122232415972.png ├── image-20221122232425194.png ├── image-20221231221240686.png ├── image-20221231221254101.png ├── image-20230625185730363.png ├── image-20230821211652918.png ├── image-20231007163044176.png ├── image-20231023010137495.png ├── image-20231023010153213.png ├── image-20231023010204399.png ├── image-20240416142736663.png ├── image-20240716183800118.png ├── image-20240717104144821.png ├── image-20240717104206365.png ├── image-20241126105823397.png ├── image-20241126110012922.png ├── image-20241126112320151.png ├── image-20241127180711449.png └── image-20250314160119094.png ├── package.json └── package.json.meta /.github/ISSUE_TEMPLATE/bug-report---bug反馈.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.github/ISSUE_TEMPLATE/bug-report---bug反馈.md -------------------------------------------------------------------------------- /.github/workflows/auto_gen_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.github/workflows/auto_gen_toc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **HYG** 2 | -------------------------------------------------------------------------------- /.obsidian/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/app.json -------------------------------------------------------------------------------- /.obsidian/appearance.json: -------------------------------------------------------------------------------- 1 | { 2 | "monospaceFontFamily": "JetBrains Mono" 3 | } -------------------------------------------------------------------------------- /.obsidian/community-plugins.json: -------------------------------------------------------------------------------- 1 | [ 2 | "obsidian-git", 3 | "copy-url-in-preview" 4 | ] -------------------------------------------------------------------------------- /.obsidian/core-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/core-plugins.json -------------------------------------------------------------------------------- /.obsidian/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/hotkeys.json -------------------------------------------------------------------------------- /.obsidian/plugins/copy-url-in-preview/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/plugins/copy-url-in-preview/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/copy-url-in-preview/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/plugins/copy-url-in-preview/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-git/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/plugins/obsidian-git/data.json -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-git/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/plugins/obsidian-git/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-git/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/plugins/obsidian-git/manifest.json -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-git/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/plugins/obsidian-git/styles.css -------------------------------------------------------------------------------- /.obsidian/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/.obsidian/workspace.json -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/AssetProcessor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/AssetProcessor.meta -------------------------------------------------------------------------------- /Editor/AssetProcessor/ExcludeFromBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/AssetProcessor/ExcludeFromBuild.cs -------------------------------------------------------------------------------- /Editor/AssetProcessor/ExcludeFromBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/AssetProcessor/ExcludeFromBuild.cs.meta -------------------------------------------------------------------------------- /Editor/AssetProcessor/ShaderModifyListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/AssetProcessor/ShaderModifyListener.cs -------------------------------------------------------------------------------- /Editor/AssetProcessor/ShaderModifyListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/AssetProcessor/ShaderModifyListener.cs.meta -------------------------------------------------------------------------------- /Editor/CustomGUISample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1126f19081e143caa82b7f5ab01b9b6a 3 | timeCreated: 1688612154 -------------------------------------------------------------------------------- /Editor/CustomGUISample/CustomFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/CustomGUISample/CustomFooter.cs -------------------------------------------------------------------------------- /Editor/CustomGUISample/CustomFooter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 421a56cca25d486298053d5eeca0c669 3 | timeCreated: 1688612200 -------------------------------------------------------------------------------- /Editor/CustomGUISample/CustomHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/CustomGUISample/CustomHeader.cs -------------------------------------------------------------------------------- /Editor/CustomGUISample/CustomHeader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/CustomGUISample/CustomHeader.cs.meta -------------------------------------------------------------------------------- /Editor/CustomGUISample/CustomMaterialAssetFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/CustomGUISample/CustomMaterialAssetFinder.cs -------------------------------------------------------------------------------- /Editor/CustomGUISample/CustomMaterialAssetFinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d476ea1a49c64eb4a29bca60d1e97c01 3 | timeCreated: 1732872239 -------------------------------------------------------------------------------- /Editor/Helper.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4785143bf9124180a864e3e68ecefff6 3 | timeCreated: 1708067731 -------------------------------------------------------------------------------- /Editor/Helper/ContextMenuHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/ContextMenuHelper.cs -------------------------------------------------------------------------------- /Editor/Helper/ContextMenuHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aedae295d18e4884bc12b86aadfbab80 3 | timeCreated: 1760781897 -------------------------------------------------------------------------------- /Editor/Helper/GUIStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/GUIStyles.cs -------------------------------------------------------------------------------- /Editor/Helper/GUIStyles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09e9a4a53c4e4d36b20c466825f07a63 3 | timeCreated: 1760968069 -------------------------------------------------------------------------------- /Editor/Helper/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/Helper.cs -------------------------------------------------------------------------------- /Editor/Helper/Helper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc93109edd264b6aa0265609cb38cc58 3 | timeCreated: 1687336811 -------------------------------------------------------------------------------- /Editor/Helper/IOHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/IOHelper.cs -------------------------------------------------------------------------------- /Editor/Helper/IOHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d97df5d9f08d48ac9dedc5b421b936dc 3 | timeCreated: 1760615660 -------------------------------------------------------------------------------- /Editor/Helper/MetaDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/MetaDataHelper.cs -------------------------------------------------------------------------------- /Editor/Helper/MetaDataHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 481e689c921a4e138739b26b793b41f6 3 | timeCreated: 1687336811 -------------------------------------------------------------------------------- /Editor/Helper/PresetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/PresetHelper.cs -------------------------------------------------------------------------------- /Editor/Helper/PresetHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48e58de7087c42f88a2a18c52b6ce131 3 | timeCreated: 1687336811 -------------------------------------------------------------------------------- /Editor/Helper/RampHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/RampHelper.cs -------------------------------------------------------------------------------- /Editor/Helper/RampHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4581bed83f9b41e18444cb08b59ce839 3 | timeCreated: 1687336811 -------------------------------------------------------------------------------- /Editor/Helper/RevertableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/RevertableHelper.cs -------------------------------------------------------------------------------- /Editor/Helper/RevertableHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 259535769835488e9edaf21cbe36465d 3 | timeCreated: 1687336811 -------------------------------------------------------------------------------- /Editor/Helper/ToolbarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/ToolbarHelper.cs -------------------------------------------------------------------------------- /Editor/Helper/ToolbarHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a055ea55b4f0432d872562e7c2e2c296 3 | timeCreated: 1760781507 -------------------------------------------------------------------------------- /Editor/Helper/VersionControlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Helper/VersionControlHelper.cs -------------------------------------------------------------------------------- /Editor/Helper/VersionControlHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8e9e3181ad14421a67f641ab4aadc5c 3 | timeCreated: 1687333459 -------------------------------------------------------------------------------- /Editor/Icon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon.meta -------------------------------------------------------------------------------- /Editor/Icon/Checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Checkout.png -------------------------------------------------------------------------------- /Editor/Icon/Checkout.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Checkout.png.meta -------------------------------------------------------------------------------- /Editor/Icon/Collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Collapse.png -------------------------------------------------------------------------------- /Editor/Icon/Collapse.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Collapse.png.meta -------------------------------------------------------------------------------- /Editor/Icon/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Copy.png -------------------------------------------------------------------------------- /Editor/Icon/Copy.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Copy.png.meta -------------------------------------------------------------------------------- /Editor/Icon/Expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Expand.png -------------------------------------------------------------------------------- /Editor/Icon/Expand.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Expand.png.meta -------------------------------------------------------------------------------- /Editor/Icon/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Logo.png -------------------------------------------------------------------------------- /Editor/Icon/Logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Logo.png.meta -------------------------------------------------------------------------------- /Editor/Icon/Logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Logo2.png -------------------------------------------------------------------------------- /Editor/Icon/Logo2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Logo2.png.meta -------------------------------------------------------------------------------- /Editor/Icon/Paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Paste.png -------------------------------------------------------------------------------- /Editor/Icon/Paste.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Paste.png.meta -------------------------------------------------------------------------------- /Editor/Icon/RevertIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/RevertIcon.png -------------------------------------------------------------------------------- /Editor/Icon/RevertIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/RevertIcon.png.meta -------------------------------------------------------------------------------- /Editor/Icon/SelectMaterialAsset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/SelectMaterialAsset.png -------------------------------------------------------------------------------- /Editor/Icon/SelectMaterialAsset.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/SelectMaterialAsset.png.meta -------------------------------------------------------------------------------- /Editor/Icon/Stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Stats.png -------------------------------------------------------------------------------- /Editor/Icon/Stats.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Stats.png.meta -------------------------------------------------------------------------------- /Editor/Icon/Visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Visibility.png -------------------------------------------------------------------------------- /Editor/Icon/Visibility.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Icon/Visibility.png.meta -------------------------------------------------------------------------------- /Editor/LWGUI.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/LWGUI.asmdef -------------------------------------------------------------------------------- /Editor/LWGUI.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/LWGUI.asmdef.meta -------------------------------------------------------------------------------- /Editor/LWGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/LWGUI.cs -------------------------------------------------------------------------------- /Editor/LWGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/LWGUI.cs.meta -------------------------------------------------------------------------------- /Editor/MetaData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5f8961824834df0852f10a2fea19f0f 3 | timeCreated: 1708067874 -------------------------------------------------------------------------------- /Editor/MetaData/PerInspectorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/MetaData/PerInspectorData.cs -------------------------------------------------------------------------------- /Editor/MetaData/PerInspectorData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 820ab4831680478b916d54cd420f91a9 3 | timeCreated: 1708070515 -------------------------------------------------------------------------------- /Editor/MetaData/PerMaterialData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/MetaData/PerMaterialData.cs -------------------------------------------------------------------------------- /Editor/MetaData/PerMaterialData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d76759ec5f1a4d74ac8a13d6530c78a1 3 | timeCreated: 1708068833 -------------------------------------------------------------------------------- /Editor/MetaData/PerShaderData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/MetaData/PerShaderData.cs -------------------------------------------------------------------------------- /Editor/MetaData/PerShaderData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 894cf7673aa84e61a48b204c6acff149 3 | timeCreated: 1708068418 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 699d09d8caac43769acdfc186d37b21b 3 | timeCreated: 1760615698 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c48ecf063064446097c4da1c6ee1c085 3 | timeCreated: 1760615805 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Fxc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2edf52a23ac4bedb7dd9866bae7383a 3 | timeCreated: 1760616152 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Fxc/ShaderCompilerDefaultFxc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/Fxc/ShaderCompilerDefaultFxc.cs -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Fxc/ShaderCompilerDefaultFxc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b5553f7fbdc45d585e9ecd2c73d8539 3 | timeCreated: 1760616203 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Fxc/fxc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/Fxc/fxc.exe -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Fxc/fxc.exe.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/Fxc/fxc.exe.meta -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/IShaderCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/IShaderCompiler.cs -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/IShaderCompiler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/IShaderCompiler.cs.meta -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf6617caaa864ee6854c54d837967c6d 3 | timeCreated: 1761656115 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e21bdb269db343c6b20d39dda87981e3 3 | timeCreated: 1761656119 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Models/DynamicValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/Mali/Models/DynamicValue.cs -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Models/DynamicValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 082ebd2742584b6dbbfc47422310b203 3 | timeCreated: 1761656119 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Models/JsonMaliocOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/Mali/Models/JsonMaliocOutput.cs -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Models/JsonMaliocOutput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97b5dd9724dd4e16b4cd3fade5b6b26e 3 | timeCreated: 1761656120 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Models/RuntimeMaliocShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/Mali/Models/RuntimeMaliocShader.cs -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Models/RuntimeMaliocShader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d803c9bc0cc4f1d9b50cb06b05aacb1 3 | timeCreated: 1761656119 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Parsing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24c5b23d58934748abe6deaa63777dd0 3 | timeCreated: 1761656120 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Parsing/MaliocOutputParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/Mali/Parsing/MaliocOutputParser.cs -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/Parsing/MaliocOutputParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b9ef44e450a4f9e81fc0f0d35afc38a 3 | timeCreated: 1761656120 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/ShaderCompilerMali.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderCompiler/Mali/ShaderCompilerMali.cs -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderCompiler/Mali/ShaderCompilerMali.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40365616bf6b4d40bb751e848dba6105 3 | timeCreated: 1760616221 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderPerfData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderPerfData.cs -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderPerfData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6adc39ef525045bb86847fb8e69ddbaf 3 | timeCreated: 1760615788 -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderPerfMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/PerformanceMonitor/ShaderPerfMonitor.cs -------------------------------------------------------------------------------- /Editor/PerformanceMonitor/ShaderPerfMonitor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 626fb2fbefe34f578241fed5232ed380 3 | timeCreated: 1760615736 -------------------------------------------------------------------------------- /Editor/ScriptableObject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66b821ea747b4f2d9c899ea80349fb68 3 | timeCreated: 1708067817 -------------------------------------------------------------------------------- /Editor/ScriptableObject/GradientObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/ScriptableObject/GradientObject.cs -------------------------------------------------------------------------------- /Editor/ScriptableObject/GradientObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aff2e4cf84cc411195a546e04d7c2ee5 3 | timeCreated: 1702463134 -------------------------------------------------------------------------------- /Editor/ScriptableObject/LwguiRampAtlas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/ScriptableObject/LwguiRampAtlas.cs -------------------------------------------------------------------------------- /Editor/ScriptableObject/LwguiRampAtlas.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/ScriptableObject/LwguiRampAtlas.cs.meta -------------------------------------------------------------------------------- /Editor/ScriptableObject/LwguiShaderPropertyPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/ScriptableObject/LwguiShaderPropertyPreset.cs -------------------------------------------------------------------------------- /Editor/ScriptableObject/LwguiShaderPropertyPreset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/ScriptableObject/LwguiShaderPropertyPreset.cs.meta -------------------------------------------------------------------------------- /Editor/ShaderDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/ShaderDrawer.cs -------------------------------------------------------------------------------- /Editor/ShaderDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/ShaderDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/Timeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline.meta -------------------------------------------------------------------------------- /Editor/Timeline/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline/Editor.meta -------------------------------------------------------------------------------- /Editor/Timeline/Editor/LWGUI.Timeline.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline/Editor/LWGUI.Timeline.Editor.asmdef -------------------------------------------------------------------------------- /Editor/Timeline/Editor/LWGUI.Timeline.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline/Editor/LWGUI.Timeline.Editor.asmdef.meta -------------------------------------------------------------------------------- /Editor/Timeline/Editor/MaterialKeywordToggleTrackEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline/Editor/MaterialKeywordToggleTrackEditor.cs -------------------------------------------------------------------------------- /Editor/Timeline/Editor/MaterialKeywordToggleTrackEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline/Editor/MaterialKeywordToggleTrackEditor.cs.meta -------------------------------------------------------------------------------- /Editor/Timeline/LWGUI.Timeline.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline/LWGUI.Timeline.asmdef -------------------------------------------------------------------------------- /Editor/Timeline/LWGUI.Timeline.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline/LWGUI.Timeline.asmdef.meta -------------------------------------------------------------------------------- /Editor/Timeline/TimelineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline/TimelineHelper.cs -------------------------------------------------------------------------------- /Editor/Timeline/TimelineHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Editor/Timeline/TimelineHelper.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/README.md.meta -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/README_CN.md -------------------------------------------------------------------------------- /README_CN.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/README_CN.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime.meta -------------------------------------------------------------------------------- /Runtime/LWGUI.Runtime.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LWGUI.Runtime" 3 | } 4 | -------------------------------------------------------------------------------- /Runtime/LWGUI.Runtime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/LWGUI.Runtime.asmdef.meta -------------------------------------------------------------------------------- /Runtime/LwguiGradient.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/LwguiGradient.meta -------------------------------------------------------------------------------- /Runtime/LwguiGradient/LwguiGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/LwguiGradient/LwguiGradient.cs -------------------------------------------------------------------------------- /Runtime/LwguiGradient/LwguiGradient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/LwguiGradient/LwguiGradient.cs.meta -------------------------------------------------------------------------------- /Runtime/LwguiGradient/LwguiGradientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/LwguiGradient/LwguiGradientHelper.cs -------------------------------------------------------------------------------- /Runtime/LwguiGradient/LwguiGradientHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dacb09adca6c4f07b8f5fa5acdc7cbfd 3 | timeCreated: 1720172986 -------------------------------------------------------------------------------- /Runtime/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/RuntimeHelper.cs -------------------------------------------------------------------------------- /Runtime/RuntimeHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a19e5812ea8041189f11f71becdacc65 3 | timeCreated: 1747294166 -------------------------------------------------------------------------------- /Runtime/Timeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline.meta -------------------------------------------------------------------------------- /Runtime/Timeline/LWGUI.Runtime.Timeline.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/LWGUI.Runtime.Timeline.asmdef -------------------------------------------------------------------------------- /Runtime/Timeline/LWGUI.Runtime.Timeline.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/LWGUI.Runtime.Timeline.asmdef.meta -------------------------------------------------------------------------------- /Runtime/Timeline/MaterialKeywordToggle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/MaterialKeywordToggle.meta -------------------------------------------------------------------------------- /Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordTogglePlayableAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordTogglePlayableAsset.cs -------------------------------------------------------------------------------- /Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordTogglePlayableAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordTogglePlayableAsset.cs.meta -------------------------------------------------------------------------------- /Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordTogglePlayableBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordTogglePlayableBehaviour.cs -------------------------------------------------------------------------------- /Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordTogglePlayableBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordTogglePlayableBehaviour.cs.meta -------------------------------------------------------------------------------- /Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordToggleTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordToggleTrack.cs -------------------------------------------------------------------------------- /Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordToggleTrack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordToggleTrack.cs.meta -------------------------------------------------------------------------------- /Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordToggleTrackBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordToggleTrackBehaviour.cs -------------------------------------------------------------------------------- /Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordToggleTrackBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Runtime/Timeline/MaterialKeywordToggle/MaterialKeywordToggleTrackBehaviour.cs.meta -------------------------------------------------------------------------------- /Test.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test.meta -------------------------------------------------------------------------------- /Test/.ShowEditorIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/.ShowEditorIcons.cs -------------------------------------------------------------------------------- /Test/.ShowEditorStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/.ShowEditorStyles.cs -------------------------------------------------------------------------------- /Test/LWGUI_KeywordTest 1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_KeywordTest 1.mat -------------------------------------------------------------------------------- /Test/LWGUI_KeywordTest 1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_KeywordTest 1.mat.meta -------------------------------------------------------------------------------- /Test/LWGUI_KeywordTest Variant.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_KeywordTest Variant.mat -------------------------------------------------------------------------------- /Test/LWGUI_KeywordTest Variant.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_KeywordTest Variant.mat.meta -------------------------------------------------------------------------------- /Test/LWGUI_KeywordTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_KeywordTest.mat -------------------------------------------------------------------------------- /Test/LWGUI_KeywordTest.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_KeywordTest.mat.meta -------------------------------------------------------------------------------- /Test/LWGUI_Preset_BlendMode.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_Preset_BlendMode.asset -------------------------------------------------------------------------------- /Test/LWGUI_Preset_BlendMode.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_Preset_BlendMode.asset.meta -------------------------------------------------------------------------------- /Test/LWGUI_Preset_Toggle.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_Preset_Toggle.asset -------------------------------------------------------------------------------- /Test/LWGUI_Preset_Toggle.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_Preset_Toggle.asset.meta -------------------------------------------------------------------------------- /Test/LWGUI_RampAtlas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_RampAtlas.asset -------------------------------------------------------------------------------- /Test/LWGUI_RampAtlas.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_RampAtlas.asset.meta -------------------------------------------------------------------------------- /Test/LWGUI_RampAtlas.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_RampAtlas.tga -------------------------------------------------------------------------------- /Test/LWGUI_RampAtlas.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_RampAtlas.tga.meta -------------------------------------------------------------------------------- /Test/LWGUI_SampleAmplifyShader.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleAmplifyShader.mat -------------------------------------------------------------------------------- /Test/LWGUI_SampleAmplifyShader.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleAmplifyShader.mat.meta -------------------------------------------------------------------------------- /Test/LWGUI_SampleDrawerA.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleDrawerA.mat -------------------------------------------------------------------------------- /Test/LWGUI_SampleDrawerA.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleDrawerA.mat.meta -------------------------------------------------------------------------------- /Test/LWGUI_SampleDrawerA1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleDrawerA1.mat -------------------------------------------------------------------------------- /Test/LWGUI_SampleDrawerA1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleDrawerA1.mat.meta -------------------------------------------------------------------------------- /Test/LWGUI_SampleDrawerB.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleDrawerB.mat -------------------------------------------------------------------------------- /Test/LWGUI_SampleDrawerB.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleDrawerB.mat.meta -------------------------------------------------------------------------------- /Test/LWGUI_SampleDrawerB1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleDrawerB1.mat -------------------------------------------------------------------------------- /Test/LWGUI_SampleDrawerB1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_SampleDrawerB1.mat.meta -------------------------------------------------------------------------------- /Test/LWGUI_ShaderPropertyPreset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_ShaderPropertyPreset.asset -------------------------------------------------------------------------------- /Test/LWGUI_ShaderPropertyPreset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_ShaderPropertyPreset.asset.meta -------------------------------------------------------------------------------- /Test/LWGUI_ShaderPropertyPreset1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_ShaderPropertyPreset1.asset -------------------------------------------------------------------------------- /Test/LWGUI_ShaderPropertyPreset1.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_ShaderPropertyPreset1.asset.meta -------------------------------------------------------------------------------- /Test/LWGUI_ShaderPropertyPreset2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/LWGUI_ShaderPropertyPreset2.asset -------------------------------------------------------------------------------- /Test/LWGUI_ShaderPropertyPreset2.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e542cd9d244240b8a50cc9e63e4e06b3 3 | timeCreated: 1697965108 -------------------------------------------------------------------------------- /Test/RampMap_Linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/RampMap_Linear.png -------------------------------------------------------------------------------- /Test/RampMap_Linear.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/RampMap_Linear.png.meta -------------------------------------------------------------------------------- /Test/RampMap_Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/RampMap_Test.png -------------------------------------------------------------------------------- /Test/RampMap_Test.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/RampMap_Test.png.meta -------------------------------------------------------------------------------- /Test/RampMap_sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/RampMap_sRGB.png -------------------------------------------------------------------------------- /Test/RampMap_sRGB.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/RampMap_sRGB.png.meta -------------------------------------------------------------------------------- /Test/SampleAmplifyShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/SampleAmplifyShader.shader -------------------------------------------------------------------------------- /Test/SampleAmplifyShader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/SampleAmplifyShader.shader.meta -------------------------------------------------------------------------------- /Test/SampleDrawerA.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/SampleDrawerA.shader -------------------------------------------------------------------------------- /Test/SampleDrawerA.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/SampleDrawerA.shader.meta -------------------------------------------------------------------------------- /Test/SampleDrawerB.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/SampleDrawerB.shader -------------------------------------------------------------------------------- /Test/SampleDrawerB.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/SampleDrawerB.shader.meta -------------------------------------------------------------------------------- /Test/SampleKeyword.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/SampleKeyword.shader -------------------------------------------------------------------------------- /Test/SampleKeyword.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/Test/SampleKeyword.shader.meta -------------------------------------------------------------------------------- /UnityEditorExtension.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension.meta -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor.meta -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientDrawer.cs -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientDrawer.cs.meta -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientEditor.cs -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientEditor.cs.meta -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientEditorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientEditorHelper.cs -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientEditorHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientEditorHelper.cs.meta -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientPresetLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientPresetLibrary.cs -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientPresetLibrary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientPresetLibrary.cs.meta -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientPresetLibraryInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientPresetLibraryInspector.cs -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientPresetLibraryInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientPresetLibraryInspector.cs.meta -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientWindow.cs -------------------------------------------------------------------------------- /UnityEditorExtension/LwguiGradientEditor/LwguiGradientWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/LwguiGradientEditor/LwguiGradientWindow.cs.meta -------------------------------------------------------------------------------- /UnityEditorExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/README.md -------------------------------------------------------------------------------- /UnityEditorExtension/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/README.md.meta -------------------------------------------------------------------------------- /UnityEditorExtension/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/ReflectionHelper.cs -------------------------------------------------------------------------------- /UnityEditorExtension/ReflectionHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3451be150a8485bbd83e66540024f35 3 | timeCreated: 1687336811 -------------------------------------------------------------------------------- /UnityEditorExtension/Unity.InternalAPIEditorBridge.020.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/Unity.InternalAPIEditorBridge.020.asmdef -------------------------------------------------------------------------------- /UnityEditorExtension/Unity.InternalAPIEditorBridge.020.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/Unity.InternalAPIEditorBridge.020.asmdef.meta -------------------------------------------------------------------------------- /UnityEditorExtension/UnityEditorExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/UnityEditorExtension.cs -------------------------------------------------------------------------------- /UnityEditorExtension/UnityEditorExtension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/UnityEditorExtension/UnityEditorExtension.cs.meta -------------------------------------------------------------------------------- /assets~/723ddce6-fb86-48ff-9683-a12cf6cff7a0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/723ddce6-fb86-48ff-9683-a12cf6cff7a0.jpg -------------------------------------------------------------------------------- /assets~/809c4a1c-ce80-48b1-b415-7e8d4bea716e-16616214059841.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/809c4a1c-ce80-48b1-b415-7e8d4bea716e-16616214059841.png -------------------------------------------------------------------------------- /assets~/LWGUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/LWGUI.png -------------------------------------------------------------------------------- /assets~/Pasted image 20250321174432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/Pasted image 20250321174432.png -------------------------------------------------------------------------------- /assets~/Pasted image 20250522183200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/Pasted image 20250522183200.png -------------------------------------------------------------------------------- /assets~/Pasted image 20250523120309.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/Pasted image 20250523120309.png -------------------------------------------------------------------------------- /assets~/image-20220822010511978.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20220822010511978.png -------------------------------------------------------------------------------- /assets~/image-20220828003026556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20220828003026556.png -------------------------------------------------------------------------------- /assets~/image-20220828003129588.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20220828003129588.png -------------------------------------------------------------------------------- /assets~/image-20220828003507825.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20220828003507825.png -------------------------------------------------------------------------------- /assets~/image-20220828003810353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20220828003810353.png -------------------------------------------------------------------------------- /assets~/image-20220926025611208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20220926025611208.png -------------------------------------------------------------------------------- /assets~/image-20221122231655378.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20221122231655378.png -------------------------------------------------------------------------------- /assets~/image-20221122231816714.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20221122231816714.png -------------------------------------------------------------------------------- /assets~/image-20221122232307362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20221122232307362.png -------------------------------------------------------------------------------- /assets~/image-20221122232354623.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20221122232354623.png -------------------------------------------------------------------------------- /assets~/image-20221122232415972.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20221122232415972.png -------------------------------------------------------------------------------- /assets~/image-20221122232425194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20221122232425194.png -------------------------------------------------------------------------------- /assets~/image-20221231221240686.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20221231221240686.png -------------------------------------------------------------------------------- /assets~/image-20221231221254101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20221231221254101.png -------------------------------------------------------------------------------- /assets~/image-20230625185730363.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20230625185730363.png -------------------------------------------------------------------------------- /assets~/image-20230821211652918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20230821211652918.png -------------------------------------------------------------------------------- /assets~/image-20231007163044176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20231007163044176.png -------------------------------------------------------------------------------- /assets~/image-20231023010137495.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20231023010137495.png -------------------------------------------------------------------------------- /assets~/image-20231023010153213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20231023010153213.png -------------------------------------------------------------------------------- /assets~/image-20231023010204399.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20231023010204399.png -------------------------------------------------------------------------------- /assets~/image-20240416142736663.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20240416142736663.png -------------------------------------------------------------------------------- /assets~/image-20240716183800118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20240716183800118.png -------------------------------------------------------------------------------- /assets~/image-20240717104144821.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20240717104144821.png -------------------------------------------------------------------------------- /assets~/image-20240717104206365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20240717104206365.png -------------------------------------------------------------------------------- /assets~/image-20241126105823397.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20241126105823397.png -------------------------------------------------------------------------------- /assets~/image-20241126110012922.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20241126110012922.png -------------------------------------------------------------------------------- /assets~/image-20241126112320151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20241126112320151.png -------------------------------------------------------------------------------- /assets~/image-20241127180711449.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20241127180711449.png -------------------------------------------------------------------------------- /assets~/image-20250314160119094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/assets~/image-20250314160119094.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMa0012/LWGUI/HEAD/package.json.meta --------------------------------------------------------------------------------