├── .gitattributes ├── .gitignore ├── Assets ├── Art.meta ├── Art │ ├── TP.meta │ ├── TP │ │ ├── armyicon.png │ │ ├── armyicon.png.meta │ │ ├── armyicon.tpsheet │ │ ├── armyicon.tpsheet.meta │ │ ├── test.png │ │ ├── test.png.meta │ │ ├── test.tpsheet │ │ └── test.tpsheet.meta │ ├── UI.meta │ ├── matVariant.meta │ ├── matVariant │ │ ├── UI-Effect-Dissolve(RGB+A).meta │ │ ├── UI-Effect-Dissolve(RGB+A) │ │ │ ├── UI-Effect-Dissolve(RGB+A)-Add.mat │ │ │ ├── UI-Effect-Dissolve(RGB+A)-Add.mat.meta │ │ │ ├── UI-Effect-Dissolve(RGB+A)-Fill.mat │ │ │ ├── UI-Effect-Dissolve(RGB+A)-Fill.mat.meta │ │ │ ├── UI-Effect-Dissolve(RGB+A)-Subtract.mat │ │ │ ├── UI-Effect-Dissolve(RGB+A)-Subtract.mat.meta │ │ │ ├── UI-Effect-Dissolve(RGB+A).mat │ │ │ └── UI-Effect-Dissolve(RGB+A).mat.meta │ │ ├── UI-Effect-Dissolve.meta │ │ ├── UI-Effect-Dissolve │ │ │ ├── UI-Effect-Dissolve-Add.mat │ │ │ ├── UI-Effect-Dissolve-Add.mat.meta │ │ │ ├── UI-Effect-Dissolve-Fill.mat │ │ │ ├── UI-Effect-Dissolve-Fill.mat.meta │ │ │ ├── UI-Effect-Dissolve-Subtract.mat │ │ │ ├── UI-Effect-Dissolve-Subtract.mat.meta │ │ │ ├── UI-Effect-Dissolve.mat │ │ │ └── UI-Effect-Dissolve.mat.meta │ │ ├── UI-Effect-Shiny(RGB+A).meta │ │ ├── UI-Effect-Shiny(RGB+A) │ │ │ ├── UI-Effect-Shiny(RGB+A).mat │ │ │ └── UI-Effect-Shiny(RGB+A).mat.meta │ │ ├── UI-Effect-Shiny.meta │ │ ├── UI-Effect-Shiny │ │ │ ├── UI-Effect-Shiny.mat │ │ │ └── UI-Effect-Shiny.mat.meta │ │ ├── UI-EffectCapture-Blur.meta │ │ └── UI-EffectCapture-Blur │ │ │ ├── UI-EffectCapture-Blur-DetailBlur.mat │ │ │ ├── UI-EffectCapture-Blur-DetailBlur.mat.meta │ │ │ ├── UI-EffectCapture-Blur-FastBlur.mat │ │ │ ├── UI-EffectCapture-Blur-FastBlur.mat.meta │ │ │ ├── UI-EffectCapture-Blur-MediumBlur.mat │ │ │ ├── UI-EffectCapture-Blur-MediumBlur.mat.meta │ │ │ ├── UI-EffectCapture-Blur.mat │ │ │ └── UI-EffectCapture-Blur.mat.meta │ ├── ui │ │ ├── atlas.meta │ │ └── atlas │ │ │ ├── armyicon.meta │ │ │ ├── armyicon │ │ │ ├── armyicon_b_501.png │ │ │ ├── armyicon_b_501.png.meta │ │ │ ├── armyicon_b_512.png │ │ │ ├── armyicon_b_512.png.meta │ │ │ ├── armyicon_b_513.png │ │ │ ├── armyicon_b_513.png.meta │ │ │ ├── armyicon_b_514.png │ │ │ ├── armyicon_b_514.png.meta │ │ │ ├── armyicon_b_515.png │ │ │ └── armyicon_b_515.png.meta │ │ │ ├── other.meta │ │ │ ├── other │ │ │ ├── frame_equipment_hammer.png │ │ │ ├── frame_equipment_hammer.png.meta │ │ │ ├── frame_equipment_wall_03.png │ │ │ ├── frame_equipment_wall_03.png.meta │ │ │ ├── icon_alchemlab_lock_01.png │ │ │ ├── icon_alchemlab_lock_01.png.meta │ │ │ ├── icon_alliance_building_06.png │ │ │ ├── icon_alliance_building_06.png.meta │ │ │ ├── icon_equipment_decompose.png │ │ │ ├── icon_equipment_decompose.png.meta │ │ │ ├── icon_equipment_storagebox.png │ │ │ ├── icon_equipment_storagebox.png.meta │ │ │ ├── progress_alchemlab_02.png │ │ │ └── progress_alchemlab_02.png.meta │ │ │ ├── princess_k_bust_20001000.png │ │ │ ├── princess_k_bust_20001000.png.meta │ │ │ ├── search_k_horse.meta │ │ │ └── search_k_horse │ │ │ ├── horse_run_10001.png │ │ │ ├── horse_run_10001.png.meta │ │ │ ├── horse_run_10002.png │ │ │ ├── horse_run_10002.png.meta │ │ │ ├── horse_run_10003.png │ │ │ ├── horse_run_10003.png.meta │ │ │ ├── horse_run_10004.png │ │ │ ├── horse_run_10004.png.meta │ │ │ ├── horse_run_10005.png │ │ │ ├── horse_run_10005.png.meta │ │ │ ├── horse_run_10006.png │ │ │ ├── horse_run_10006.png.meta │ │ │ ├── horse_run_10007.png │ │ │ ├── horse_run_10007.png.meta │ │ │ ├── horse_run_10008.png │ │ │ ├── horse_run_10008.png.meta │ │ │ ├── horse_standby_10001.png │ │ │ ├── horse_standby_10001.png.meta │ │ │ ├── horse_standby_10002.png │ │ │ ├── horse_standby_10002.png.meta │ │ │ ├── horse_standby_10003.png │ │ │ ├── horse_standby_10003.png.meta │ │ │ ├── horse_standby_10004.png │ │ │ ├── horse_standby_10004.png.meta │ │ │ ├── horse_standby_10005.png │ │ │ ├── horse_standby_10005.png.meta │ │ │ ├── horse_standby_10006.png │ │ │ ├── horse_standby_10006.png.meta │ │ │ ├── horse_standby_10007.png │ │ │ ├── horse_standby_10007.png.meta │ │ │ ├── horse_standby_10008.png │ │ │ └── horse_standby_10008.png.meta │ ├── uieffect.meta │ └── uieffect │ │ ├── UIDissolveNoise.png │ │ ├── UIDissolveNoise.png.meta │ │ ├── UIDissolveNoise_Demo1.png │ │ ├── UIDissolveNoise_Demo1.png.meta │ │ ├── UIDissolveNoise_Demo2.png │ │ └── UIDissolveNoise_Demo2.png.meta ├── Data.meta ├── Data │ ├── ui.meta │ └── ui │ │ ├── atlas_tp.meta │ │ └── atlas_tp │ │ ├── AtlasMap.asset │ │ ├── AtlasMap.asset.meta │ │ ├── armyicon.meta │ │ ├── armyicon │ │ ├── armyicon.asset │ │ ├── armyicon.asset.meta │ │ ├── armyicon.png │ │ ├── armyicon.png.meta │ │ ├── armyicon.tpsheet │ │ ├── armyicon.tpsheet.meta │ │ ├── armyicon_a.png │ │ ├── armyicon_a.png.meta │ │ ├── armyicon_mat.mat │ │ └── armyicon_mat.mat.meta │ │ ├── other.meta │ │ ├── other │ │ ├── other.asset │ │ ├── other.asset.meta │ │ ├── other.png │ │ ├── other.png.meta │ │ ├── other.tpsheet │ │ ├── other.tpsheet.meta │ │ ├── other_a.png │ │ ├── other_a.png.meta │ │ ├── other_dis.mat │ │ ├── other_dis.mat.meta │ │ ├── other_mat.mat │ │ └── other_mat.mat.meta │ │ ├── search_k_horse.meta │ │ └── search_k_horse │ │ ├── search_k_horse.asset │ │ ├── search_k_horse.asset.meta │ │ ├── search_k_horse.png │ │ ├── search_k_horse.png.meta │ │ ├── search_k_horse.tpsheet │ │ ├── search_k_horse.tpsheet.meta │ │ ├── search_k_horse_a.png │ │ ├── search_k_horse_a.png.meta │ │ ├── search_k_horse_mat.mat │ │ └── search_k_horse_mat.mat.meta ├── Editor.meta ├── Editor │ ├── 3Party.meta │ ├── 3Party │ │ ├── TP.meta │ │ └── TP │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── SettingsTexturePackerImporter.txt │ │ │ ├── SettingsTexturePackerImporter.txt.meta │ │ │ ├── TexturePackerImporter.dll │ │ │ └── TexturePackerImporter.dll.meta │ │ │ ├── Readme.txt │ │ │ └── Readme.txt.meta │ ├── TPPacker.meta │ ├── TPPacker │ │ ├── TPAtlasHelper.cs │ │ ├── TPAtlasHelper.cs.meta │ │ ├── TPAtlasPacker.cs │ │ └── TPAtlasPacker.cs.meta │ ├── UI.meta │ ├── UI │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── LImageEditor.cs │ │ │ ├── LImageEditor.cs.meta │ │ │ ├── LImageExtensionEditor.cs │ │ │ ├── LImageExtensionEditor.cs.meta │ │ │ ├── LImageForTPEditor.cs │ │ │ ├── LImageForTPEditor.cs.meta │ │ │ ├── LRawImageForCapScreenEditor.cs │ │ │ └── LRawImageForCapScreenEditor.cs.meta │ │ ├── Effect.meta │ │ ├── Effect │ │ │ ├── LUIBlurEffectEditor.cs │ │ │ ├── LUIBlurEffectEditor.cs.meta │ │ │ ├── LUIDissolveEditor.cs │ │ │ ├── LUIDissolveEditor.cs.meta │ │ │ ├── LUIShinyEditor.cs │ │ │ └── LUIShinyEditor.cs.meta │ │ ├── RangeAttribute.meta │ │ ├── RangeAttribute │ │ │ ├── VectorRangeAttributeDrawer.cs │ │ │ └── VectorRangeAttributeDrawer.cs.meta │ │ ├── UIMenuItem.cs │ │ ├── UIMenuItem.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ │ ├── DefaultControls.cs │ │ │ ├── DefaultControls.cs.meta │ │ │ ├── MenuOptions.cs │ │ │ ├── MenuOptions.cs.meta │ │ │ ├── SpriteDrawUtility.cs │ │ │ └── SpriteDrawUtility.cs.meta │ ├── Utility.meta │ └── Utility │ │ ├── AssetsFinder.meta │ │ ├── AssetsFinder │ │ ├── AssetObject.cs │ │ ├── AssetObject.cs.meta │ │ ├── EditorHelper.cs │ │ ├── EditorHelper.cs.meta │ │ ├── FindBase.cs │ │ └── FindBase.cs.meta │ │ ├── CMD.meta │ │ ├── CMD │ │ ├── CMDHelper.cs │ │ └── CMDHelper.cs.meta │ │ ├── Mat.meta │ │ └── Mat │ │ ├── MaterialUtility.cs │ │ └── MaterialUtility.cs.meta ├── Scene.meta ├── Scene │ ├── TestEffectImage.unity │ ├── TestEffectImage.unity.meta │ ├── TestPolyImage.unity │ ├── TestPolyImage.unity.meta │ ├── TestShapeImage.unity │ └── TestShapeImage.unity.meta ├── Scripts.meta ├── Scripts │ ├── UI.meta │ └── UI │ │ ├── Atlas.meta │ │ ├── Atlas │ │ ├── AtlasInfo.cs │ │ ├── AtlasInfo.cs.meta │ │ ├── AtlasManager.cs │ │ ├── AtlasManager.cs.meta │ │ ├── AtlasMap.cs │ │ └── AtlasMap.cs.meta │ │ ├── Core.meta │ │ ├── Core │ │ ├── LImage.cs │ │ ├── LImage.cs.meta │ │ ├── LImageForTP.cs │ │ ├── LImageForTP.cs.meta │ │ ├── LRawImageForCapScreen.cs │ │ └── LRawImageForCapScreen.cs.meta │ │ ├── Effect.meta │ │ ├── Effect │ │ ├── LUIEffectAreaExtensions.cs │ │ ├── LUIEffectAreaExtensions.cs.meta │ │ ├── LUIEffectEnum.cs │ │ ├── LUIEffectEnum.cs.meta │ │ ├── LUIEffect_Prop_CapScreen.cs │ │ ├── LUIEffect_Prop_CapScreen.cs.meta │ │ ├── MaterialCache.cs │ │ ├── MaterialCache.cs.meta │ │ ├── Matrix2x3.cs │ │ ├── Matrix2x3.cs.meta │ │ ├── Packer.cs │ │ ├── Packer.cs.meta │ │ ├── ParameterTexture.cs │ │ ├── ParameterTexture.cs.meta │ │ ├── com.meta │ │ └── com │ │ │ ├── LUIDissolve.cs │ │ │ ├── LUIDissolve.cs.meta │ │ │ ├── LUIEffectBase.cs │ │ │ ├── LUIEffectBase.cs.meta │ │ │ ├── LUIShiny.cs │ │ │ └── LUIShiny.cs.meta │ │ ├── RangeAttribute.meta │ │ ├── RangeAttribute │ │ ├── VectorRangeAttribute.cs │ │ └── VectorRangeAttribute.cs.meta │ │ ├── UIConfig.cs │ │ ├── UIConfig.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ ├── MathUtility.cs │ │ ├── MathUtility.cs.meta │ │ ├── SetPropertyUtility.cs │ │ └── SetPropertyUtility.cs.meta ├── Shader.meta ├── Shader │ ├── UI.meta │ └── UI │ │ ├── UI-Default(RGB+A).shader │ │ ├── UI-Default(RGB+A).shader.meta │ │ ├── UI-Effect-Shiny(RGB+A).shader │ │ ├── UI-Effect-Shiny(RGB+A).shader.meta │ │ ├── UI-Effect-Shiny.shader │ │ ├── UI-Effect-Shiny.shader.meta │ │ ├── UI-EffectCG.cginc │ │ ├── UI-EffectCG.cginc.meta │ │ ├── UI-EffectCapture-Base.shader │ │ ├── UI-EffectCapture-Base.shader.meta │ │ ├── UI-EffectCapture-Blur.shader │ │ ├── UI-EffectCapture-Blur.shader.meta │ │ ├── UI-Effect_Dissolve(RGB+A).shader │ │ ├── UI-Effect_Dissolve(RGB+A).shader.meta │ │ ├── UI-Effect_Dissolve.shader │ │ └── UI-Effect_Dissolve.shader.meta └── Temp.meta ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md ├── Tools └── TexturePacker │ ├── TexturePacker.app │ └── Contents │ │ ├── Frameworks │ │ ├── HQX.framework │ │ │ ├── HQX │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── 1.0.0 │ │ │ │ ├── HQX │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ ├── QtCore.framework │ │ │ └── Versions │ │ │ │ └── 4 │ │ │ │ └── QtCore │ │ ├── QtCreatorUtils.framework │ │ │ ├── QtCreatorUtils │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── 1.0.0 │ │ │ │ ├── QtCreatorUtils │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ ├── QtGui.framework │ │ │ ├── Resources │ │ │ │ └── qt_menu.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ └── Versions │ │ │ │ └── 4 │ │ │ │ └── QtGui │ │ ├── QtNetwork.framework │ │ │ └── Versions │ │ │ │ └── 4 │ │ │ │ └── QtNetwork │ │ ├── QtOpenGL.framework │ │ │ └── Versions │ │ │ │ └── 4 │ │ │ │ └── QtOpenGL │ │ ├── QtScript.framework │ │ │ └── Versions │ │ │ │ └── 4 │ │ │ │ └── QtScript │ │ ├── QtSvg.framework │ │ │ └── Versions │ │ │ │ └── 4 │ │ │ │ └── QtSvg │ │ ├── QtXml.framework │ │ │ └── Versions │ │ │ │ └── 4 │ │ │ │ └── QtXml │ │ ├── Sparkle.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Sparkle │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── SUAppcast.h │ │ │ │ │ ├── SUAppcastItem.h │ │ │ │ │ ├── SUUpdater.h │ │ │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ │ │ └── Sparkle.h │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── SUModelTranslation.plist │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── finish_installation.app │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── finish_installation │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ │ │ ├── Sparkle.icns │ │ │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ └── SUUpdatePermissionPrompt.nib │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt.lproj │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ └── SUUpdatePermissionPrompt.nib │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── Sparkle │ │ │ │ └── Sparkle.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Sparkle │ │ │ │ └── Current │ │ ├── grantlee_core.framework │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── 0.2.0 │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── grantlee_core │ │ │ │ └── Current │ │ │ └── grantlee_core │ │ └── translations │ │ │ ├── cawtools │ │ │ └── de.qm │ │ │ ├── corelib │ │ │ └── de.qm │ │ │ ├── imageloader │ │ │ └── de.qm │ │ │ ├── main │ │ │ └── de.qm │ │ │ └── updater │ │ │ └── de.qm │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── TexturePacker │ │ └── TexturePackerGUILauncher │ │ ├── PlugIns │ │ ├── accessible │ │ │ └── libqtaccessiblewidgets.dylib │ │ ├── bearer │ │ │ └── libqgenericbearer.dylib │ │ ├── codecs │ │ │ ├── libqcncodecs.dylib │ │ │ ├── libqjpcodecs.dylib │ │ │ ├── libqkrcodecs.dylib │ │ │ └── libqtwcodecs.dylib │ │ ├── grantlee │ │ │ └── 0.2 │ │ │ │ ├── grantlee_defaultfilters.so │ │ │ │ ├── grantlee_defaulttags.so │ │ │ │ ├── grantlee_i18ntags.so │ │ │ │ └── grantlee_loadertags.so │ │ ├── iconengines │ │ │ └── libqsvgicon.dylib │ │ └── imageformats │ │ │ ├── libqgif.dylib │ │ │ ├── libqico.dylib │ │ │ ├── libqjpeg.dylib │ │ │ ├── libqmng.dylib │ │ │ ├── libqsvg.dylib │ │ │ ├── libqtga.dylib │ │ │ └── libqtiff.dylib │ │ ├── Resources │ │ ├── TexturePacker.icns │ │ ├── TexturePackerDocument.icns │ │ ├── TexturePackerKey.icns │ │ ├── dsa_pub.pem │ │ ├── exporters │ │ │ ├── 2dtoolkit │ │ │ │ ├── exporter.xml │ │ │ │ └── tk2d.bytes │ │ │ ├── EaselJS │ │ │ │ ├── EaselJS.json │ │ │ │ └── exporter.xml │ │ │ ├── batterytech │ │ │ │ ├── batterytech_btx.txt │ │ │ │ └── exporter.xml │ │ │ ├── caat │ │ │ │ ├── exporter.xml │ │ │ │ └── template.json │ │ │ ├── corona-imagesheet │ │ │ │ ├── corona-imagesheet.lua │ │ │ │ └── exporter.xml │ │ │ ├── kwiksher2 │ │ │ │ ├── K2.lua │ │ │ │ └── exporter.xml │ │ │ ├── less │ │ │ │ ├── exporter.xml │ │ │ │ ├── grantlee │ │ │ │ │ └── 0.2 │ │ │ │ │ │ └── makecssselector.qs │ │ │ │ └── sprites.less │ │ │ ├── librocket │ │ │ │ ├── exporter.xml │ │ │ │ └── libRocket.rcss │ │ │ ├── orx │ │ │ │ ├── exporter.xml │ │ │ │ └── orx.ini │ │ │ ├── plain │ │ │ │ ├── exporter.xml │ │ │ │ ├── grantlee │ │ │ │ │ └── 0.2 │ │ │ │ │ │ └── makecssselector.qs │ │ │ │ └── plain.txt │ │ │ ├── sass-mixins │ │ │ │ ├── exporter.xml │ │ │ │ └── mixins.sass │ │ │ ├── shiva3d │ │ │ │ ├── exporter.xml │ │ │ │ └── shiva.xml │ │ │ ├── tresensa │ │ │ │ ├── TreSensa.js │ │ │ │ └── exporter.xml │ │ │ ├── uikit │ │ │ │ ├── exporter.xml │ │ │ │ └── uikit.plist │ │ │ └── x2d │ │ │ │ ├── exporter.xml │ │ │ │ └── template.xml │ │ └── qt.conf │ │ └── _CodeSignature │ │ └── CodeResources │ ├── TexturePacker_Win32 │ ├── bin │ │ ├── HQX.dll │ │ ├── PVRTexLib.dll │ │ ├── Qt5Concurrent.dll │ │ ├── Qt5Core.dll │ │ ├── Qt5Gui.dll │ │ ├── Qt5Network.dll │ │ ├── Qt5Qml.dll │ │ ├── Qt5Quick.dll │ │ ├── Qt5Script.dll │ │ ├── Qt5Svg.dll │ │ ├── Qt5Widgets.dll │ │ ├── Qt5Xml.dll │ │ ├── QtCreatorUtils.dll │ │ ├── QtGraphicalEffects │ │ │ ├── Blend.qml │ │ │ ├── BrightnessContrast.qml │ │ │ ├── ColorOverlay.qml │ │ │ ├── Colorize.qml │ │ │ ├── ConicalGradient.qml │ │ │ ├── Desaturate.qml │ │ │ ├── DirectionalBlur.qml │ │ │ ├── Displace.qml │ │ │ ├── DropShadow.qml │ │ │ ├── FastBlur.qml │ │ │ ├── GammaAdjust.qml │ │ │ ├── GaussianBlur.qml │ │ │ ├── Glow.qml │ │ │ ├── HueSaturation.qml │ │ │ ├── InnerShadow.qml │ │ │ ├── LevelAdjust.qml │ │ │ ├── LinearGradient.qml │ │ │ ├── MaskedBlur.qml │ │ │ ├── OpacityMask.qml │ │ │ ├── RadialBlur.qml │ │ │ ├── RadialGradient.qml │ │ │ ├── RectangularGlow.qml │ │ │ ├── RecursiveBlur.qml │ │ │ ├── ThresholdMask.qml │ │ │ ├── ZoomBlur.qml │ │ │ ├── private │ │ │ │ ├── DropShadowBase.qml │ │ │ │ ├── FastGlow.qml │ │ │ │ ├── FastInnerShadow.qml │ │ │ │ ├── FastMaskedBlur.qml │ │ │ │ ├── GaussianDirectionalBlur.qml │ │ │ │ ├── GaussianGlow.qml │ │ │ │ ├── GaussianInnerShadow.qml │ │ │ │ ├── GaussianMaskedBlur.qml │ │ │ │ ├── qmldir │ │ │ │ └── qtgraphicaleffectsprivate.dll │ │ │ ├── qmldir │ │ │ └── qtgraphicaleffectsplugin.dll │ │ ├── QtQml │ │ │ └── Models.2 │ │ │ │ ├── modelsplugin.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ ├── QtQuick.2 │ │ │ ├── plugins.qmltypes │ │ │ ├── qmldir │ │ │ └── qtquick2plugin.dll │ │ ├── QtQuick │ │ │ ├── Controls │ │ │ │ ├── Styles │ │ │ │ │ ├── Flat │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qtquickextrasflatplugin.dll │ │ │ │ │ └── qmldir │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ └── qtquickcontrolsplugin.dll │ │ │ ├── Extras │ │ │ │ ├── Private │ │ │ │ │ ├── CircularButton.qml │ │ │ │ │ ├── CircularButtonStyleHelper.qml │ │ │ │ │ ├── CircularTickmarkLabel.qml │ │ │ │ │ ├── Handle.qml │ │ │ │ │ ├── PieMenuIcon.qml │ │ │ │ │ ├── TextSingleton.qml │ │ │ │ │ └── qmldir │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ └── qtquickextrasplugin.dll │ │ │ ├── Layouts │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ └── qquicklayoutsplugin.dll │ │ │ ├── PrivateWidgets │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ └── widgetsplugin.dll │ │ │ └── Window.2 │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ └── windowplugin.dll │ │ ├── TexturePacker.exe │ │ ├── TexturePacker.exe.BAK │ │ ├── TexturePackerGUI.exe │ │ ├── TexturePackerGUI.exe.BAK │ │ ├── TexturePackerGUI.exe.tmp │ │ ├── bearer │ │ │ ├── qgenericbearer.dll │ │ │ └── qnativewifibearer.dll │ │ ├── d3dcompiler_47.dll │ │ ├── exporters │ │ │ ├── 2dtoolkit │ │ │ │ ├── exporter.xml │ │ │ │ └── tk2d.bytes │ │ │ ├── EaselJS │ │ │ │ ├── EaselJS.json │ │ │ │ ├── exporter.xml │ │ │ │ └── grantlee │ │ │ │ │ └── 0.2 │ │ │ │ │ └── easeljs.qs │ │ │ ├── batterytech │ │ │ │ ├── batterytech_btx.txt │ │ │ │ └── exporter.xml │ │ │ ├── caat │ │ │ │ ├── exporter.xml │ │ │ │ └── template.json │ │ │ ├── corona-imagesheet │ │ │ │ ├── corona-imagesheet.lua │ │ │ │ └── exporter.xml │ │ │ ├── css │ │ │ │ ├── exporter.xml │ │ │ │ ├── grantlee │ │ │ │ │ └── 0.2 │ │ │ │ │ │ └── css.qs │ │ │ │ └── sprites.css │ │ │ ├── kwiksher2 │ │ │ │ ├── K2.lua │ │ │ │ └── exporter.xml │ │ │ ├── less │ │ │ │ ├── exporter.xml │ │ │ │ ├── grantlee │ │ │ │ │ └── 0.2 │ │ │ │ │ │ └── makecssselector.qs │ │ │ │ └── sprites.less │ │ │ ├── librocket │ │ │ │ ├── exporter.xml │ │ │ │ └── libRocket.rcss │ │ │ ├── molecule │ │ │ │ ├── exporter.xml │ │ │ │ └── molecule.json │ │ │ ├── monogame │ │ │ │ ├── exporter.xml │ │ │ │ ├── grantlee │ │ │ │ │ └── 0.2 │ │ │ │ │ │ ├── TransformCoords.qs │ │ │ │ │ │ └── TransformName.qs │ │ │ │ ├── monogame.cs │ │ │ │ └── monogame.txt │ │ │ ├── orx │ │ │ │ ├── exporter.xml │ │ │ │ └── orx.ini │ │ │ ├── panda │ │ │ │ ├── exporter.png │ │ │ │ ├── exporter.xml │ │ │ │ ├── exporter@2x.png │ │ │ │ └── panda.json │ │ │ ├── plain │ │ │ │ ├── exporter.xml │ │ │ │ ├── grantlee │ │ │ │ │ └── 0.2 │ │ │ │ │ │ └── makecssselector.qs │ │ │ │ ├── plain.h │ │ │ │ └── plain.txt │ │ │ ├── sass-mixins │ │ │ │ ├── exporter.xml │ │ │ │ └── mixins.sass │ │ │ ├── shiva3d │ │ │ │ ├── exporter.xml │ │ │ │ └── shiva.xml │ │ │ ├── spritestudio │ │ │ │ ├── exporter.xml │ │ │ │ ├── grantlee │ │ │ │ │ └── 0.2 │ │ │ │ │ │ └── TransformCoords.qs │ │ │ │ └── template.xml │ │ │ ├── tresensa │ │ │ │ ├── TreSensa.js │ │ │ │ └── exporter.xml │ │ │ ├── uikit │ │ │ │ ├── exporter.xml │ │ │ │ └── uikit.plist │ │ │ ├── unity │ │ │ │ ├── exporter.xml │ │ │ │ ├── grantlee │ │ │ │ │ └── 0.2 │ │ │ │ │ │ └── TransformCoords.qs │ │ │ │ └── unity.tpsheet │ │ │ └── x2d │ │ │ │ ├── exporter.xml │ │ │ │ └── template.xml │ │ ├── grantlee │ │ │ ├── grantlee_defaultfilters.dll │ │ │ ├── grantlee_defaulttags.dll │ │ │ ├── grantlee_i18ntags.dll │ │ │ └── grantlee_loadertags.dll │ │ ├── grantlee_templates.dll │ │ ├── iconengines │ │ │ └── qsvgicon.dll │ │ ├── imageformats │ │ │ ├── qgif.dll │ │ │ ├── qicns.dll │ │ │ ├── qico.dll │ │ │ ├── qjpeg.dll │ │ │ ├── qsvg.dll │ │ │ ├── qtga.dll │ │ │ ├── qtiff.dll │ │ │ ├── qwbmp.dll │ │ │ └── qwebp.dll │ │ ├── libEGL.dll │ │ ├── libGLESv2.dll │ │ ├── libeay32.dll │ │ ├── msvcp120.dll │ │ ├── msvcr120.dll │ │ ├── platforms │ │ │ └── qwindows.dll │ │ ├── qmltooling │ │ │ ├── qmldbg_debugger.dll │ │ │ ├── qmldbg_inspector.dll │ │ │ ├── qmldbg_local.dll │ │ │ ├── qmldbg_native.dll │ │ │ ├── qmldbg_profiler.dll │ │ │ ├── qmldbg_quickprofiler.dll │ │ │ ├── qmldbg_server.dll │ │ │ └── qmldbg_tcp.dll │ │ └── ssleay32.dll │ └── resources │ │ ├── documents │ │ ├── Acknowledgements.html │ │ ├── LicenseAgreement.html │ │ └── LicenseAgreement.txt │ │ └── icons │ │ ├── Icon.ico │ │ └── TexturePackerDocument.ico │ ├── maker.bat │ └── maker.sh ├── UGUI_Extension.sln ├── UnityPackageManager └── manifest.json └── img-folder ├── LImage ├── LImageEditor_Shape.png └── LImage_PolyMesh.png └── UIEffect ├── CapScreen.png └── UIEffect.png /.gitattributes: -------------------------------------------------------------------------------- 1 | 2 | *.* linguist-language=C# 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Library/ 2 | obj/ 3 | Temp/ 4 | Assembly-CSharp-Editor.csproj 5 | .vscode/settings.json 6 | UGUI_Extention.sln 7 | Assembly-CSharp.csproj 8 | .vscode/launch.json 9 | -------------------------------------------------------------------------------- /Assets/Art.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccb9d48ef8a16984cab944e648bf33c7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/TP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 347b8b166ab3ec64bac07558b9f5d9b1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/TP/armyicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/TP/armyicon.png -------------------------------------------------------------------------------- /Assets/Art/TP/armyicon.tpsheet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53d96c098598dc94e8a4b3c8af6e4b46 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Art/TP/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/TP/test.png -------------------------------------------------------------------------------- /Assets/Art/TP/test.tpsheet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6edda2fcc7824254da6a32439f12048c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Art/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8469114f202e9e946a9f9ac5aa87a670 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d11def137dff30449e3fed11eb3f868 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve(RGB+A).meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1b18e4a8c4de9644ac828fa34360b59 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve(RGB+A)/UI-Effect-Dissolve(RGB+A)-Add.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be87873eb9917e645ad7e844ba9831d6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve(RGB+A)/UI-Effect-Dissolve(RGB+A)-Fill.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6eb75a8447dcf9c44bcd4187ea0f7381 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve(RGB+A)/UI-Effect-Dissolve(RGB+A)-Subtract.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04a9e0141ef706844addcd4fb5fe3cc2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve(RGB+A)/UI-Effect-Dissolve(RGB+A).mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e33085e7e04bb754c885b370d8d3276c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b4e18cdd5a55e94d856f686695ff005 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve/UI-Effect-Dissolve-Add.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 329de4cb86b209a4995b36670cb0e498 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve/UI-Effect-Dissolve-Fill.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c463460ce5b91c4098f1c840b7bfa09 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve/UI-Effect-Dissolve-Subtract.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbe320d416e438f4bb62adb2213b6b27 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Dissolve/UI-Effect-Dissolve.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5843e0db6dd8624a9a1f2deb9386e88 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Shiny(RGB+A).meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a66a27daf9e923f4dacb995b20a7d8fb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Shiny(RGB+A)/UI-Effect-Shiny(RGB+A).mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7552fe6f07199d645a9e1d6b1dfb97b2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Shiny.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcc0710771a87ec4a959deb495ff1267 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-Effect-Shiny/UI-Effect-Shiny.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae055155e337217419af82e2ca66dc2d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-EffectCapture-Blur.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4ca6351e8256324daf4330be53eb8f4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-EffectCapture-Blur/UI-EffectCapture-Blur-DetailBlur.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: UI-EffectCapture-Blur-DetailBlur 10 | m_Shader: {fileID: 4800000, guid: c7c18ae112b32a04a9a4e53f0dc48e58, type: 3} 11 | m_ShaderKeywords: DETAILBLUR 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _MainTex: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | m_Floats: [] 26 | m_Colors: [] 27 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-EffectCapture-Blur/UI-EffectCapture-Blur-DetailBlur.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 827358b35ee73744da5825be4d45bd83 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-EffectCapture-Blur/UI-EffectCapture-Blur-FastBlur.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: UI-EffectCapture-Blur-FastBlur 10 | m_Shader: {fileID: 4800000, guid: c7c18ae112b32a04a9a4e53f0dc48e58, type: 3} 11 | m_ShaderKeywords: FASTBLUR 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _MainTex: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | m_Floats: [] 26 | m_Colors: [] 27 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-EffectCapture-Blur/UI-EffectCapture-Blur-FastBlur.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb8fdc5c718c0b349ac769c65dc970ee 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-EffectCapture-Blur/UI-EffectCapture-Blur-MediumBlur.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: UI-EffectCapture-Blur-MediumBlur 10 | m_Shader: {fileID: 4800000, guid: c7c18ae112b32a04a9a4e53f0dc48e58, type: 3} 11 | m_ShaderKeywords: MEDIUMBLUR 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _MainTex: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | m_Floats: [] 26 | m_Colors: [] 27 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-EffectCapture-Blur/UI-EffectCapture-Blur-MediumBlur.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10dc7b3521e5c154eba5e39b6b0c89dc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-EffectCapture-Blur/UI-EffectCapture-Blur.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: UI-EffectCapture-Blur 10 | m_Shader: {fileID: 4800000, guid: c7c18ae112b32a04a9a4e53f0dc48e58, type: 3} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _MainTex: 22 | m_Texture: {fileID: 0} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | m_Floats: [] 26 | m_Colors: [] 27 | -------------------------------------------------------------------------------- /Assets/Art/matVariant/UI-EffectCapture-Blur/UI-EffectCapture-Blur.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58ef4a80c3eb27145bced2f0fd12ff58 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/ui/atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 702e5c392824c0845a69418d854d1acf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/armyicon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67c17462a42e1634694a1e6b89fa41c2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/armyicon/armyicon_b_501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/armyicon/armyicon_b_501.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/armyicon/armyicon_b_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/armyicon/armyicon_b_512.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/armyicon/armyicon_b_513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/armyicon/armyicon_b_513.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/armyicon/armyicon_b_514.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/armyicon/armyicon_b_514.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/armyicon/armyicon_b_515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/armyicon/armyicon_b_515.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/other.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0f0926e9b11a0848a97fbb994fddcbf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/other/frame_equipment_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/other/frame_equipment_hammer.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/other/frame_equipment_wall_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/other/frame_equipment_wall_03.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/other/icon_alchemlab_lock_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/other/icon_alchemlab_lock_01.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/other/icon_alliance_building_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/other/icon_alliance_building_06.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/other/icon_equipment_decompose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/other/icon_equipment_decompose.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/other/icon_equipment_storagebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/other/icon_equipment_storagebox.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/other/progress_alchemlab_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/other/progress_alchemlab_02.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/princess_k_bust_20001000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/princess_k_bust_20001000.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d23ab9723fbbb924997e5e82b1d47e09 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_run_10001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_run_10001.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_run_10002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_run_10002.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_run_10003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_run_10003.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_run_10004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_run_10004.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_run_10005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_run_10005.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_run_10006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_run_10006.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_run_10007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_run_10007.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_run_10008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_run_10008.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_standby_10001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_standby_10001.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_standby_10002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_standby_10002.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_standby_10003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_standby_10003.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_standby_10004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_standby_10004.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_standby_10005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_standby_10005.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_standby_10006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_standby_10006.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_standby_10007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_standby_10007.png -------------------------------------------------------------------------------- /Assets/Art/ui/atlas/search_k_horse/horse_standby_10008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/ui/atlas/search_k_horse/horse_standby_10008.png -------------------------------------------------------------------------------- /Assets/Art/uieffect.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d5d72efa671bf9468bf2da1aa721f49 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Art/uieffect/UIDissolveNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/uieffect/UIDissolveNoise.png -------------------------------------------------------------------------------- /Assets/Art/uieffect/UIDissolveNoise_Demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/uieffect/UIDissolveNoise_Demo1.png -------------------------------------------------------------------------------- /Assets/Art/uieffect/UIDissolveNoise_Demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Art/uieffect/UIDissolveNoise_Demo2.png -------------------------------------------------------------------------------- /Assets/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bbbc14407431514f99760e1bb2f450f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abd8dced779622144b9318260aad6499 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f293f3506f6320349b71b5501728198a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/AtlasMap.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10f9b67b02bb13749aeec48f92e22ea2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/armyicon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b573e49a2828a1d48bc59c7349863f56 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/armyicon/armyicon.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d4cff8739fce6749b3b414ffae87adf 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/armyicon/armyicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Data/ui/atlas_tp/armyicon/armyicon.png -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/armyicon/armyicon.tpsheet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99e5ab61df50ac74cb4d5cb9797113b5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/armyicon/armyicon_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Data/ui/atlas_tp/armyicon/armyicon_a.png -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/armyicon/armyicon_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8aa569bb83c176442ac83c56a9376b1b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/other.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c5ada2e8af9e9d459232c3df3d38f9f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/other/other.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 889d4ee06ed324e469849a3945668398 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/other/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Data/ui/atlas_tp/other/other.png -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/other/other.tpsheet: -------------------------------------------------------------------------------- 1 | # 2 | # Sprite sheet data for Unity. 3 | # 4 | # To import these sprites into your Unity project, download "TexturePackerImporter": 5 | # http://www.codeandweb.com/texturepacker/unity 6 | # 7 | # $TexturePacker:SmartUpdate:d2cff3e1d39b83bf25774569f05456c1:d2ddc3eb447446dcc693bf85b0bb4f2f:13c56d5b53ee00998cf9e43a4b5a39ab$ 8 | # 9 | :format=40300 10 | :texture=other.png 11 | :size=512x512 12 | :pivotpoints=enabled 13 | :borders=disabled 14 | 15 | frame_equipment_hammer;1;7;120;109; 0.4875;0.4862385321100917; 0;0;0;0 16 | frame_equipment_wall_03;131;451;118;60; 0.5;0.5; 0;0;0;0 17 | icon_alchemlab_lock_01;131;393;47;56; 0.5;0.5; 0;0;0;0 18 | icon_alliance_building_06;1;263;128;248; 0.5078125;0.5080645161290323; 0;0;0;0 19 | icon_equipment_decompose;1;118;150;143; 0.5;0.5174825174825175; 0;0;0;0 20 | icon_equipment_storagebox;123;51;76;65; 0.5131578947368421;0.5384615384615384; 0;0;0;0 21 | progress_alchemlab_02;123;21;28;28; 0.5;0.5; 0;0;0;0 22 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/other/other.tpsheet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a70e5f91b79c194ea18b7babc38318d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/other/other_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Data/ui/atlas_tp/other/other_a.png -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/other/other_dis.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eb6c9b33d1e8af41b1e0d65aa932a55 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/other/other_mat.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: other_mat 10 | m_Shader: {fileID: 4800000, guid: bc019cab7ac4c114994088ea6f9d2d66, type: 3} 11 | m_ShaderKeywords: 12 | m_LightmapFlags: 4 13 | m_EnableInstancingVariants: 0 14 | m_DoubleSidedGI: 0 15 | m_CustomRenderQueue: -1 16 | stringTagMap: {} 17 | disabledShaderPasses: [] 18 | m_SavedProperties: 19 | serializedVersion: 3 20 | m_TexEnvs: 21 | - _AlphaTex: 22 | m_Texture: {fileID: 2800000, guid: 72ff2b46db5d58d4bb520d42e71ca082, type: 3} 23 | m_Scale: {x: 1, y: 1} 24 | m_Offset: {x: 0, y: 0} 25 | - _MainTex: 26 | m_Texture: {fileID: 2800000, guid: d9e5fd87c67d9244ab3a7ff3a01163b8, type: 3} 27 | m_Scale: {x: 1, y: 1} 28 | m_Offset: {x: 0, y: 0} 29 | m_Floats: 30 | - _ColorMask: 15 31 | - _Stencil: 0 32 | - _StencilComp: 8 33 | - _StencilOp: 0 34 | - _StencilReadMask: 255 35 | - _StencilWriteMask: 255 36 | m_Colors: 37 | - _Color: {r: 1, g: 1, b: 1, a: 1} 38 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/other/other_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebaf780074f5ff343a688c9008de47e1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/search_k_horse.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f153c4c4dd81e7145a686c179eff0555 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/search_k_horse/search_k_horse.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37b517baf6d9e784f97f5259f2e35e68 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/search_k_horse/search_k_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Data/ui/atlas_tp/search_k_horse/search_k_horse.png -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/search_k_horse/search_k_horse.tpsheet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 145f42778ef433f4f8b68e315195c2ee 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/search_k_horse/search_k_horse_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Data/ui/atlas_tp/search_k_horse/search_k_horse_a.png -------------------------------------------------------------------------------- /Assets/Data/ui/atlas_tp/search_k_horse/search_k_horse_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1041124792b4e124d8d7dd6b79c1986c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca6fa536537666747979d3fe34a9c026 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/3Party.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85e8024170f799148bb1c966d6e081a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/3Party/TP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 486c5361609ad194f94a7cec1dd1797d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/3Party/TP/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cefa10e3b187349cd99fd7f9b9634943 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Editor/3Party/TP/Editor/SettingsTexturePackerImporter.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6fa11622e3134f2db6f030521e939d4 3 | timeCreated: 1449754790 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/3Party/TP/Editor/TexturePackerImporter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Assets/Editor/3Party/TP/Editor/TexturePackerImporter.dll -------------------------------------------------------------------------------- /Assets/Editor/3Party/TP/Editor/TexturePackerImporter.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98b6c1804f4a04425b029daa48d60214 3 | labels: 4 | - Atlas 5 | - Mesh 6 | - Normal 7 | - Normalmap 8 | - Packer 9 | - Packing 10 | - Polygon 11 | - Sprite 12 | - Spritesheet 13 | - Texture 14 | - TexturePacker 15 | timeCreated: 1449136926 16 | licenseType: Store 17 | PluginImporter: 18 | serializedVersion: 1 19 | iconMap: {} 20 | executionOrder: {} 21 | isPreloaded: 0 22 | isOverridable: 0 23 | platformData: 24 | Any: 25 | enabled: 0 26 | settings: {} 27 | Editor: 28 | enabled: 1 29 | settings: 30 | DefaultValueInitialized: true 31 | WindowsStoreApps: 32 | enabled: 0 33 | settings: 34 | CPU: AnyCPU 35 | userData: 36 | assetBundleName: 37 | assetBundleVariant: 38 | -------------------------------------------------------------------------------- /Assets/Editor/3Party/TP/Readme.txt: -------------------------------------------------------------------------------- 1 | The TexturePacker Importer script (located in Assets/codeandweb.com/Editor) 2 | extends your Unity editor to read sprite atlas data created with TexturePacker. 3 | 4 | It automatically detects changed or newly added spritesheets written by TexturePacker 5 | and (re)imports them as native Unity 2D spritesheets, so that their sprites can directly 6 | be used in the editor. In your TexturePacker project you have to select the data format 7 | "Unity - Texture2D sprite sheet". 8 | 9 | Visit our tutorial page for more information: 10 | https://www.codeandweb.com/texturepacker/unity 11 | -------------------------------------------------------------------------------- /Assets/Editor/3Party/TP/Readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4526473fa125a4b8d8ebc4ccb62fdfc7 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Editor/TPPacker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df9660d773cea5340a393d6d8a2de12c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/TPPacker/TPAtlasHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f0505e82ce8b5a4e84138e98f739565 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/TPPacker/TPAtlasPacker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ee4cfc5026930645b7840dedfb355a8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adc671f1dc97dc5468518a0bba85ff47 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f7dfc83cc55c5f479e0ac254a7a8934 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Core/LImageEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a75ad8393a40c1c4382ff9ed2939ac5b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Core/LImageExtensionEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407ea0a955fa9f347859cfc15c51e50e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Core/LImageForTPEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c83e56a860c1694c860df197f348ff4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Core/LRawImageForCapScreenEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4b8561ac4349284eaf98a56ee9733ab 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Effect.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11a2d0e73abd4c24291af7c86a2971fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Effect/LUIBlurEffectEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc406352cad443144862bc764e94a983 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Effect/LUIDissolveEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d2e513ed3c30e94585ab4179abbb26d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Effect/LUIShinyEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a2855c1b193a5044a8716c2405e43c7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/RangeAttribute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1319f10342f93d4092b73065b795ea2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/UI/RangeAttribute/VectorRangeAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcde109c6a3f6de4bb40cf1eab57ffd4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/UIMenuItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1ec9d833a50fac43a2f8c350284b47f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 505205202ecb7614e936ed7aaebc6f4e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Utility/DefaultControls.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | 4 | namespace UnityEditor.UI 5 | { 6 | static class DefaultControls 7 | { 8 | private static Vector2 s_ImageElementSize = new Vector2(100f, 100f); 9 | 10 | public static GameObject CreateUIElementRoot(string name, Vector2 size) 11 | { 12 | GameObject child = new GameObject(name); 13 | RectTransform rectTransform = child.AddComponent(); 14 | rectTransform.sizeDelta = size; 15 | return child; 16 | } 17 | 18 | public static GameObject CreateLImage() 19 | { 20 | GameObject go = CreateUIElementRoot("LImage", s_ImageElementSize); 21 | go.AddComponent(); 22 | return go; 23 | } 24 | public static GameObject CreateLImageForTP() 25 | { 26 | GameObject go = CreateUIElementRoot("LImageForTP", s_ImageElementSize); 27 | go.AddComponent(); 28 | return go; 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /Assets/Editor/UI/Utility/DefaultControls.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b795d42763cc5bc45b7b21e76f14e2df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Utility/MenuOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdee5a9cc5d5f244bab6744079b4988e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/UI/Utility/SpriteDrawUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6826c2b17f76a1b4e8114ec09ea082b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e372a9d687ebe5a4ba88669cea86614e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/Utility/AssetsFinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 805279a9fb4637943a467218bf756f4e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/Utility/AssetsFinder/AssetObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c318bd5e8b8e5cd4d972272dec05499f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/Utility/AssetsFinder/EditorHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b19867a6d8f6934ca80adb7aeea4d4d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/Utility/AssetsFinder/FindBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7fdd5db16d7f97488f70a0b7611e85a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/Utility/CMD.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e39d9bb392ddb8e4f9953f65828564c4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/Utility/CMD/CMDHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1204398752694e42812b1e2db53770c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor/Utility/Mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba499fd444cba6d4186359ef54f54eef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/Utility/Mat/MaterialUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef92399ad6305974d968f817c8841671 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c740489075200f41b5e7ad8c2edab11 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scene/TestEffectImage.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 506d099e6606f1b4ebf105c7a744b886 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scene/TestPolyImage.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5087afee75c82a04290a75aec17e5937 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scene/TestShapeImage.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8783ca8df9735844861be9e13039600 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2809e7cd8cf1a754994615b0be8a2bc0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f77a617bdf9868409185e5fc2e2c201 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92fd70e535476f04394d5eab8bc41f7e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Atlas/AtlasInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54039b2759ae3f34cbadccbed7fb4cde 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Atlas/AtlasManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02c5265db38a4af4e9ab01270b680b7d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Atlas/AtlasMap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41cf2017eb2f1974aa23658673ef79e4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ace5858601eafb4aa55e554e4e3ee9c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Core/LImage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86f9b913edc7ae749a404e3b5abb30b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Core/LImageForTP.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c35b7de0fa22b943a820021e3368d4a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Core/LRawImageForCapScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b4db9e6048545042b5538b4cca1d7e8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e5e69be66279394e8de66bdb801fe1c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/LUIEffectAreaExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9af9083a816a78d4cbe6e8b33ee539e6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/LUIEffectEnum.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace UnityEngine.UI 3 | { 4 | /// 5 | /// Blur effect mode. 6 | /// 7 | public enum BlurMode 8 | { 9 | None = 0, 10 | FastBlur = 1, 11 | MediumBlur = 2, 12 | DetailBlur = 3, 13 | } 14 | /// 15 | /// Desampling rate. 16 | /// 17 | public enum DesamplingRate 18 | { 19 | None = 0, 20 | x1 = 1, 21 | x2 = 2, 22 | x4 = 4, 23 | x8 = 8, 24 | } 25 | /// 26 | /// Area for effect. 27 | /// 28 | public enum EffectArea 29 | { 30 | RectTransform, 31 | Fit, 32 | Character, 33 | } 34 | /// 35 | /// Color effect mode. 36 | /// 37 | public enum ColorMode 38 | { 39 | Multiply = 0, 40 | Fill = 1, 41 | Add = 2, 42 | Subtract = 3, 43 | } 44 | } -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/LUIEffectEnum.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ff5db9ce58925b44b7de1ab4364e046 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/LUIEffect_Prop_CapScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7004791c3fa4e544eae4fe4a52eba617 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/MaterialCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1d107c8c4647af45937db28a0a55114 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/Matrix2x3.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | /// 4 | /// Matrix2x3. 5 | /// 6 | public struct Matrix2x3 7 | { 8 | public float m00, m01, m02, m10, m11, m12; 9 | 10 | public Matrix2x3(Rect rect, float cos, float sin) 11 | { 12 | const float center = 0.5f; 13 | float dx = -rect.xMin / rect.width - center; 14 | float dy = -rect.yMin / rect.height - center; 15 | m00 = cos / rect.width; 16 | m01 = -sin / rect.height; 17 | m02 = dx * cos - dy * sin + center; 18 | m10 = sin / rect.width; 19 | m11 = cos / rect.height; 20 | m12 = dx * sin + dy * cos + center; 21 | } 22 | 23 | public static Vector2 operator *(Matrix2x3 m, Vector2 v) 24 | { 25 | return new Vector2( 26 | (m.m00 * v.x) + (m.m01 * v.y) + m.m02, 27 | (m.m10 * v.x) + (m.m11 * v.y) + m.m12 28 | ); 29 | } 30 | } -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/Matrix2x3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7898779e184e825468cc5e2af0cddf2d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/Packer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8874e0010d2fcb48a6ce068a1e78f19 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/ParameterTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c662995bf3c02af42ba602b417fd4185 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/com.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71e65a0d0f6b8714585922ac30c530c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/com/LUIDissolve.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d92d81d88cbb01648887153347719bdb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/com/LUIEffectBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1a65238126bc124b856ff5830f36d8b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Effect/com/LUIShiny.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c65e558b18773b548b267d888a690552 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/RangeAttribute.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b08b9ed69ae84846b7ae8f61d0ee9bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/RangeAttribute/VectorRangeAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | /* 3 | USAGE 4 | [VectorRange(minX, maxX, minY, maxY, clamped)] 5 | public Vector2 yourVector; 6 | */ 7 | public class VectorRangeAttribute : PropertyAttribute 8 | { 9 | public readonly float fMinX, fMaxX, fMinY, fMaxY; 10 | public readonly bool bClamp; 11 | public VectorRangeAttribute(float fMinX, float fMaxX, float fMinY, float fMaxY, bool bClamp) 12 | { 13 | this.fMinX = fMinX; 14 | this.fMaxX = fMaxX; 15 | this.fMinY = fMinY; 16 | this.fMaxY = fMaxY; 17 | this.bClamp = bClamp; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/RangeAttribute/VectorRangeAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c73a41d5195a8164bbffd5c698272a6d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIConfig.cs: -------------------------------------------------------------------------------- 1 | 2 | public class UIConfig 3 | { 4 | public const string PATH_ATLAS = "Assets/Art/ui"; 5 | public const string PATH_TP_TEMP = "Assets/Temp/TP/ui"; 6 | public const string PATH_ATLAS_TP = "Assets/Data/ui/atlas_tp"; 7 | public const string ATLAS_MAP_NAME = "AtlasMap"; 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9534084d26aae944b8d9c0c5e0f9bf3e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 484820d851fc5034ba7ca9f4d93e8cf0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Utility/MathUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fec9f88bc8e49a4fb17ac5e0b110c10 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Utility/SetPropertyUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fc7e803b38dd7f4dad63c26214ee958 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed6379a5a0b69874583002afeaba0b4c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shader/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3efa4342bf7f3904ba485555301faaac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shader/UI/UI-Default(RGB+A).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc019cab7ac4c114994088ea6f9d2d66 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shader/UI/UI-Effect-Shiny(RGB+A).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca89f22ce780a914fb67c9cd3278a5bd 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shader/UI/UI-Effect-Shiny.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 386bba68fd2ed4a49a65b0b1a676ee2e 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shader/UI/UI-EffectCG.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fa5226970a8a854c9040a4d3f1dc2d4 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shader/UI/UI-EffectCapture-Base.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca1c8aec377b594408b8c3992515f1ee 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shader/UI/UI-EffectCapture-Blur.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7c18ae112b32a04a9a4e53f0dc48e58 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shader/UI/UI-Effect_Dissolve(RGB+A).shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfff4feaa5f2f604a839ad98713c20cb 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shader/UI/UI-Effect_Dissolve.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78321d9e9b078e943bd5109ad97b362b 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Temp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8395f1018e356644787bcc12965c1265 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 1 23 | m_ClothInterCollisionSettingsToggle: 0 24 | m_ContactPairsMode: 0 25 | m_BroadphaseType: 0 26 | m_WorldBounds: 27 | m_Center: {x: 0, y: 0, z: 0} 28 | m_Extent: {x: 250, y: 250, z: 250} 29 | m_WorldSubdivisions: 8 30 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Scene/TestPolyImage.unity 10 | guid: 5087afee75c82a04290a75aec17e5937 11 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 7 7 | m_ExternalVersionControlSupport: Hidden Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 2 10 | m_DefaultBehaviorMode: 0 11 | m_SpritePackerMode: 4 12 | m_SpritePackerPaddingPower: 1 13 | m_EtcTextureCompressorBehavior: 1 14 | m_EtcTextureFastCompressor: 1 15 | m_EtcTextureNormalCompressor: 2 16 | m_EtcTextureBestCompressor: 4 17 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp 18 | m_ProjectGenerationRootNamespace: 19 | m_UserGeneratedProjectSuffix: 20 | m_CollabEditorSettings: 21 | inProgressEnabled: 1 22 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.4.23f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 1 7 | m_TestMode: 0 8 | m_TestEventUrl: 9 | m_TestConfigUrl: 10 | m_TestInitMode: 0 11 | CrashReportingSettings: 12 | m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes 13 | m_NativeEventUrl: https://perf-events.cloud.unity3d.com/symbolicate 14 | m_Enabled: 0 15 | m_CaptureEditorExceptions: 1 16 | UnityPurchasingSettings: 17 | m_Enabled: 0 18 | m_TestMode: 0 19 | UnityAnalyticsSettings: 20 | m_Enabled: 0 21 | m_InitializeOnStartup: 1 22 | m_TestMode: 0 23 | m_TestEventUrl: 24 | m_TestConfigUrl: 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/HQX.framework/HQX: -------------------------------------------------------------------------------- 1 | Versions/Current/HQX -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/HQX.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/HQX.framework/Versions/1.0.0/HQX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/HQX.framework/Versions/1.0.0/HQX -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/HQX.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | HQX 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 21 | CFBundleShortVersionString 22 | 23 | CSResourcesFileMapped 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/HQX.framework/Versions/1.0.0/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/Info.plist 8 | 9 | IttcfedImb9C6/dx3IF227HnMuc= 10 | 11 | 12 | rules 13 | 14 | ^Resources/ 15 | 16 | ^Resources/.*\.lproj/ 17 | 18 | optional 19 | 20 | weight 21 | 1000 22 | 23 | ^Resources/.*\.lproj/locversion.plist$ 24 | 25 | omit 26 | 27 | weight 28 | 1100 29 | 30 | ^version.plist$ 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/HQX.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtCreatorUtils.framework/QtCreatorUtils: -------------------------------------------------------------------------------- 1 | Versions/Current/QtCreatorUtils -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtCreatorUtils.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtCreatorUtils.framework/Versions/1.0.0/QtCreatorUtils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtCreatorUtils.framework/Versions/1.0.0/QtCreatorUtils -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtCreatorUtils.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | QtCreatorUtils 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 21 | CFBundleShortVersionString 22 | 23 | CSResourcesFileMapped 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtCreatorUtils.framework/Versions/1.0.0/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/Info.plist 8 | 9 | r2g7YRvLfpJEObb/p2c9HzNnQwA= 10 | 11 | 12 | rules 13 | 14 | ^Resources/ 15 | 16 | ^Resources/.*\.lproj/ 17 | 18 | optional 19 | 20 | weight 21 | 1000 22 | 23 | ^Resources/.*\.lproj/locversion.plist$ 24 | 25 | omit 26 | 27 | weight 28 | 1100 29 | 30 | ^version.plist$ 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtCreatorUtils.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/info.nib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IBFramework Version 6 | 672 7 | IBOldestOS 8 | 5 9 | IBOpenObjects 10 | 11 | 57 12 | 13 | IBSystem Version 14 | 9L31a 15 | targetFramework 16 | IBCocoaFramework 17 | 18 | 19 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtOpenGL.framework/Versions/4/QtOpenGL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtOpenGL.framework/Versions/4/QtOpenGL -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtScript.framework/Versions/4/QtScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtScript.framework/Versions/4/QtScript -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtSvg.framework/Versions/4/QtSvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtSvg.framework/Versions/4/QtSvg -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtXml.framework/Versions/4/QtXml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/QtXml.framework/Versions/4/QtXml -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUAppcast.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/12/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUAPPCAST_H 10 | #define SUAPPCAST_H 11 | 12 | @class SUAppcastItem; 13 | @interface SUAppcast : NSObject 14 | { 15 | @private 16 | NSArray *items; 17 | NSString *userAgentString; 18 | id delegate; 19 | NSString *downloadFilename; 20 | NSURLDownload *download; 21 | } 22 | 23 | - (void)fetchAppcastFromURL:(NSURL *)url; 24 | - (void)setDelegate:delegate; 25 | - (void)setUserAgentString:(NSString *)userAgentString; 26 | 27 | - (NSArray *)items; 28 | 29 | @end 30 | 31 | @interface NSObject (SUAppcastDelegate) 32 | - (void)appcastDidFinishLoading:(SUAppcast *)appcast; 33 | - (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error; 34 | @end 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionComparisonProtocol.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 12/21/07. 6 | // Copyright 2007 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUVERSIONCOMPARISONPROTOCOL_H 10 | #define SUVERSIONCOMPARISONPROTOCOL_H 11 | 12 | #import 13 | 14 | /*! 15 | @protocol 16 | @abstract Implement this protocol to provide version comparison facilities for Sparkle. 17 | */ 18 | @protocol SUVersionComparison 19 | 20 | /*! 21 | @method 22 | @abstract An abstract method to compare two version strings. 23 | @discussion Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent. 24 | */ 25 | - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; // *** MAY BE CALLED ON NON-MAIN THREAD! 26 | 27 | @end 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionDisplayProtocol.h 3 | // EyeTV 4 | // 5 | // Created by Uli Kusterer on 08.12.09. 6 | // Copyright 2009 Elgato Systems GmbH. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | /*! 13 | @protocol 14 | @abstract Implement this protocol to apply special formatting to the two 15 | version numbers. 16 | */ 17 | @protocol SUVersionDisplay 18 | 19 | /*! 20 | @method 21 | @abstract An abstract method to format two version strings. 22 | @discussion You get both so you can display important distinguishing 23 | information, but leave out unnecessary/confusing parts. 24 | */ 25 | -(void) formatVersion: (NSString**)inOutVersionA andVersion: (NSString**)inOutVersionB; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- 1 | // 2 | // Sparkle.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07) 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SPARKLE_H 10 | #define SPARKLE_H 11 | 12 | // This list should include the shared headers. It doesn't matter if some of them aren't shared (unless 13 | // there are name-space collisions) so we can list all of them to start with: 14 | 15 | #import 16 | 17 | #import 18 | #import 19 | #import 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/License.txt -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/MacOS/finish_installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/MacOS/finish_installation -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/Sparkle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/Sparkle.icns -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.andymatuschak.Sparkle 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.5 Beta (git) 17 | CFBundleVersion 18 | 290f64f 19 | 20 | 21 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle.dSYM/Contents/Resources/DWARF/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle.dSYM/Contents/Resources/DWARF/Sparkle -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/grantlee_core.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/grantlee_core.framework/Versions/0.2.0/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | grantlee_core 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 21 | CFBundleShortVersionString 22 | 23 | CSResourcesFileMapped 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/grantlee_core.framework/Versions/0.2.0/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/Info.plist 8 | 9 | s+iPBxUMDz23XYBUTYlF4GLPihQ= 10 | 11 | 12 | rules 13 | 14 | ^Resources/ 15 | 16 | ^Resources/.*\.lproj/ 17 | 18 | optional 19 | 20 | weight 21 | 1000 22 | 23 | ^Resources/.*\.lproj/locversion.plist$ 24 | 25 | omit 26 | 27 | weight 28 | 1100 29 | 30 | ^version.plist$ 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/grantlee_core.framework/Versions/0.2.0/grantlee_core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/grantlee_core.framework/Versions/0.2.0/grantlee_core -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/grantlee_core.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 0.2.0 -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/grantlee_core.framework/grantlee_core: -------------------------------------------------------------------------------- 1 | Versions/Current/grantlee_core -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/cawtools/de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/cawtools/de.qm -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/corelib/de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/corelib/de.qm -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/imageloader/de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/imageloader/de.qm -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/main/de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/main/de.qm -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/updater/de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Frameworks/translations/updater/de.qm -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/MacOS/TexturePacker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/MacOS/TexturePacker -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/MacOS/TexturePackerGUILauncher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/MacOS/TexturePackerGUILauncher -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/accessible/libqtaccessiblewidgets.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/accessible/libqtaccessiblewidgets.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/bearer/libqgenericbearer.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/bearer/libqgenericbearer.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/codecs/libqcncodecs.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/codecs/libqcncodecs.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/codecs/libqjpcodecs.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/codecs/libqjpcodecs.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/codecs/libqkrcodecs.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/codecs/libqkrcodecs.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/codecs/libqtwcodecs.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/codecs/libqtwcodecs.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/grantlee/0.2/grantlee_defaultfilters.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/grantlee/0.2/grantlee_defaultfilters.so -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/grantlee/0.2/grantlee_defaulttags.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/grantlee/0.2/grantlee_defaulttags.so -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/grantlee/0.2/grantlee_i18ntags.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/grantlee/0.2/grantlee_i18ntags.so -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/grantlee/0.2/grantlee_loadertags.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/grantlee/0.2/grantlee_loadertags.so -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/iconengines/libqsvgicon.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/iconengines/libqsvgicon.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqgif.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqgif.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqico.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqico.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqjpeg.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqjpeg.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqmng.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqmng.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqsvg.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqsvg.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqtga.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqtga.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqtiff.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/PlugIns/imageformats/libqtiff.dylib -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/TexturePacker.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Resources/TexturePacker.icns -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/TexturePackerDocument.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Resources/TexturePackerDocument.icns -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/TexturePackerKey.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker.app/Contents/Resources/TexturePackerKey.icns -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/2dtoolkit/tk2d.bytes: -------------------------------------------------------------------------------- 1 | i tk2d 1 2 | w {{texture.size.width}} 3 | h {{texture.size.height}} 4 | ~{% for sprite in allSprites %} 5 | n {{sprite.trimmedName}} 6 | s {{sprite.frameRect.x}} {{sprite.frameRect.y}} {{sprite.frameRect.width}} {{sprite.frameRect.height}}{% if sprite.trimmed %} 7 | o {{sprite.sourceRect.x}} {{sprite.sourceRect.y}} {{sprite.untrimmedSize.width}} {{sprite.untrimmedSize.height}}{% endif %}{% if sprite.rotated %} 8 | r 1{% endif %} 9 | ~{% endfor %} -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/EaselJS/EaselJS.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": ["{{settings.textureSubPath}}{{texture.fullName}}"], 3 | "frames": [ 4 | {% for sprite in allSprites %} 5 | [{{sprite.frameRect.x}}, {{sprite.frameRect.y}}, {{sprite.frameRect.width}}, {{sprite.frameRect.height}}]{% if not forloop.last %}, {% endif %}{% endfor %} 6 | ], 7 | "animations": { 8 | {% for sprite in allSprites %} 9 | "{{sprite.trimmedName}}":[{{ forloop.counter0 }}]{% if not forloop.last %}, {% endif %}{% endfor %} 10 | }, 11 | "texturepacker": [ 12 | "SmartUpdateHash: {{smartUpdateKey}}", 13 | "Created with TexturePacker (http://www.texturepacker.com) for EaselJS" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/caat/template.json: -------------------------------------------------------------------------------- 1 | { 2 | "sprites" : { {% for sprite in allSprites %} 3 | "{{sprite.trimmedName}}" : { 4 | "x" : {{sprite.frameRect.x}}, 5 | "y" : {{sprite.frameRect.y}}, 6 | "width" : {{sprite.frameRect.width}}, 7 | "height" : {{sprite.frameRect.height}} 8 | }{% if not forloop.last %}, {% endif %}{% endfor %} 9 | }, 10 | "texturepacker": [ 11 | "SmartUpdateHash: {{smartUpdateKey}}", 12 | "Created with TexturePacker (http://www.texturepacker.com) for CAAT" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/kwiksher2/K2.lua: -------------------------------------------------------------------------------- 1 | -- created with TexturePacker (http://www.texturepacker.com) 2 | frames = { 3 | {% for sprite in allSprites %} 4 | { x={{sprite.frameRect.x}}, y={{sprite.frameRect.y}}, width={{sprite.frameRect.width}}, height={{sprite.frameRect.height}} }, -- {{sprite.trimmedName}}{% endfor %} 5 | }, 6 | 7 | sheetContentWidth = {{texture.size.width}}, 8 | sheetContentHeight = {{texture.size.height}} 9 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/less/grantlee/0.2/makecssselector.qs: -------------------------------------------------------------------------------- 1 | var MakeSelectorFilter = function(input) 2 | { 3 | var input = input.rawString(); 4 | return input.replace("-hover",":hover"); 5 | }; 6 | MakeSelectorFilter.filterName = "makecssselector"; 7 | MakeSelectorFilter.isSafe = false; 8 | Library.addFilter("MakeSelectorFilter"); -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/less/sprites.less: -------------------------------------------------------------------------------- 1 | // 2 | // Created with TexturePacker http://www.codeandweb.com/texturepacker 3 | // 4 | // SmartUpdateHash: {{smartUpdateKey}} 5 | // 6 | {% load makecssselector %} 7 | .sprite-{{texture.trimmedName}} { display:inline-block; overflow: hidden; background-repeat: no-repeat; background-image: url('{{texture.fullName}}'); } 8 | {% for sprite in sprites %} 9 | .{{texture.trimmedName}}-{{sprite.trimmedName|makecssselector}} { width: {{sprite.frameRect.width}}px; height: {{sprite.frameRect.height}}px; background-position: -{{sprite.frameRect.x}}px -{{sprite.frameRect.y}}px; }{% endfor %} 10 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/librocket/libRocket.rcss: -------------------------------------------------------------------------------- 1 | {% for sprite in allSprites %} 2 | 3 | .{{sprite.trimmedName}} 4 | { 5 | width: {{sprite.frameRect.width}}px; 6 | height: {{sprite.frameRect.height}}px; 7 | background-decorator: image; 8 | background-image: {{texture.fullName}} {{sprite.frameRect.x}}px {{sprite.frameRect.y}}px {{sprite.frameRect.x|add:sprite.frameRect.width}}px {{sprite.frameRect.y|add:sprite.frameRect.height}}px; 9 | } 10 | 11 | {% endfor %} 12 | 13 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/orx/orx.ini: -------------------------------------------------------------------------------- 1 | ; Created with TexturePacker (http://www.texturepacker.com) 2 | ; {{smartUpdateKey}} 3 | 4 | [{{texture.trimmedName}}] 5 | Texture = {{texture.fullName}} 6 | {% for sprite in allSprites %} 7 | [{{sprite.trimmedName}}@{{texture.trimmedName}}] 8 | {% if sprite.trimmed %}Pivot = ({%ifequal sprite.cornerOffset.x 0 %}0{% else %}-{{sprite.cornerOffset.x}}{% endifequal %}, {%ifequal sprite.cornerOffset.y 0 %}0{% else %}-{{sprite.cornerOffset.y}}{% endifequal %}, 0) 9 | TextureOrigin = ({{sprite.frameRect.x}}, {{sprite.frameRect.y}}, 0) 10 | TextureSize = ({{sprite.frameRect.width}}, {{sprite.frameRect.height}}, 0){% else %}TextureOrigin = ({{sprite.frameRect.x}}, {{sprite.frameRect.y}}, 0) 11 | TextureSize = ({{sprite.frameRect.width}}, {{sprite.frameRect.height}}, 0){% endif %} 12 | {% endfor %} 13 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/sass-mixins/mixins.sass: -------------------------------------------------------------------------------- 1 | // 2 | // css sprite mixins - created with http://www.codeandweb.com/texturepacker 3 | // exporter created by Rob Moorman 4 | // 5 | // {{smartUpdateKey}} 6 | 7 | {% for sprite in allSprites %} 8 | @mixin sprite-{{sprite.trimmedName}}($path: './') 9 | display: inline-block 10 | overflow: hidden 11 | width: {{sprite.frameRect.width}}px 12 | height: {{sprite.frameRect.height}}px 13 | background: 14 | repeat: no-repeat 15 | image: url('#{$path}{{settings.textureSubPath}}{{texture.fullName}}') 16 | position: -{{sprite.frameRect.x}}px -{{sprite.frameRect.y}}px 17 | {% endfor %} 18 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/shiva3d/shiva.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | {% for sprite in allSprites %} 16 | {% endfor %} 17 | 18 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/tresensa/TreSensa.js: -------------------------------------------------------------------------------- 1 | // Created with TexturePacker http://www.codeandweb.com/texturepacker 2 | // {{smartUpdateKey}} 3 | TGE.AssetManager.SpriteSheets["{{texture.trimmedName}}"] = { 4 | {% for sprite in allSprites %} 5 | "{{sprite.trimmedName}}":[{{sprite.frameRect.x}}, {{sprite.frameRect.y}}, {{sprite.frameRect.width}}, {{sprite.frameRect.height}}]{% if not forloop.last %}, {% endif %}{% endfor %} 6 | }; 7 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/exporters/x2d/template.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {% for sprite in allSprites %} {% if not forloop.last %} 6 | {% endif %}{% endfor %} 7 | 8 | 9 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker.app/Contents/Resources/qt.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Plugins = PlugIns 3 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/HQX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/HQX.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/PVRTexLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/PVRTexLib.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Concurrent.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Core.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Gui.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Network.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Qml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Qml.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Quick.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Quick.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Script.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Script.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Svg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Svg.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Widgets.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/Qt5Xml.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtCreatorUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtCreatorUtils.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtGraphicalEffects/private/qmldir: -------------------------------------------------------------------------------- 1 | module QtGraphicalEffects.private 2 | plugin qtgraphicaleffectsprivate 3 | classname QtGraphicalEffectsPrivatePlugin 4 | FastGlow 1.0 FastGlow.qml 5 | FastInnerShadow 1.0 FastInnerShadow.qml 6 | FastMaskedBlur 1.0 FastMaskedBlur.qml 7 | GaussianDirectionalBlur 1.0 GaussianDirectionalBlur.qml 8 | GaussianGlow 1.0 GaussianGlow.qml 9 | GaussianInnerShadow 1.0 GaussianInnerShadow.qml 10 | GaussianMaskedBlur 1.0 GaussianMaskedBlur.qml 11 | DropShadowBase 1.0 DropShadowBase.qml 12 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtGraphicalEffects/private/qtgraphicaleffectsprivate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtGraphicalEffects/private/qtgraphicaleffectsprivate.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtGraphicalEffects/qmldir: -------------------------------------------------------------------------------- 1 | module QtGraphicalEffects 2 | plugin qtgraphicaleffectsplugin 3 | classname QtGraphicalEffectsPlugin 4 | Blend 1.0 Blend.qml 5 | BrightnessContrast 1.0 BrightnessContrast.qml 6 | Colorize 1.0 Colorize.qml 7 | ColorOverlay 1.0 ColorOverlay.qml 8 | ConicalGradient 1.0 ConicalGradient.qml 9 | Desaturate 1.0 Desaturate.qml 10 | DirectionalBlur 1.0 DirectionalBlur.qml 11 | Displace 1.0 Displace.qml 12 | DropShadow 1.0 DropShadow.qml 13 | FastBlur 1.0 FastBlur.qml 14 | GammaAdjust 1.0 GammaAdjust.qml 15 | GaussianBlur 1.0 GaussianBlur.qml 16 | Glow 1.0 Glow.qml 17 | HueSaturation 1.0 HueSaturation.qml 18 | InnerShadow 1.0 InnerShadow.qml 19 | LevelAdjust 1.0 LevelAdjust.qml 20 | LinearGradient 1.0 LinearGradient.qml 21 | MaskedBlur 1.0 MaskedBlur.qml 22 | OpacityMask 1.0 OpacityMask.qml 23 | RadialBlur 1.0 RadialBlur.qml 24 | RadialGradient 1.0 RadialGradient.qml 25 | RecursiveBlur 1.0 RecursiveBlur.qml 26 | RectangularGlow 1.0 RectangularGlow.qml 27 | ThresholdMask 1.0 ThresholdMask.qml 28 | ZoomBlur 1.0 ZoomBlur.qml 29 | designersupported 30 | depends QtGraphicalEffects/private 1.0 31 | 32 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtGraphicalEffects/qtgraphicaleffectsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtGraphicalEffects/qtgraphicaleffectsplugin.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQml/Models.2/modelsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtQml/Models.2/modelsplugin.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQml/Models.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQml.Models 2 | plugin modelsplugin 3 | classname QtQmlModelsPlugin 4 | designersupported 5 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick 2 | plugin qtquick2plugin 3 | classname QtQuick2Plugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick.2/qtquick2plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick.2/qtquick2plugin.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Controls/Styles/Flat/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Styles.Flat 2 | plugin qtquickextrasflatplugin 3 | classname QtQuickExtrasStylesPlugin 4 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Controls/Styles/Flat/qtquickextrasflatplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Controls/Styles/Flat/qtquickextrasflatplugin.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Controls/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls 2 | plugin qtquickcontrolsplugin 3 | classname QtQuickControls1Plugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | depends QtQuick.Window 2.2 7 | depends QtQuick.Layouts 1.0 8 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Controls/qtquickcontrolsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Controls/qtquickcontrolsplugin.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Extras/Private/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Extras.Private 2 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Extras/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Extras 2 | plugin qtquickextrasplugin 3 | classname QtQuickExtrasPlugin 4 | #typeinfo plugins.qmltypes 5 | 6 | depends QtGraphicalEffects 1.0 7 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Extras/qtquickextrasplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Extras/qtquickextrasplugin.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Layouts/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Layouts 2 | plugin qquicklayoutsplugin 3 | classname QtQuickLayoutsPlugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Layouts/qquicklayoutsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Layouts/qquicklayoutsplugin.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/PrivateWidgets/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.PrivateWidgets 2 | plugin widgetsplugin 3 | classname QtQuick2PrivateWidgetsPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/PrivateWidgets/widgetsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/PrivateWidgets/widgetsplugin.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Window.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Window 2 | plugin windowplugin 3 | classname QtQuick2WindowPlugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Window.2/windowplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/QtQuick/Window.2/windowplugin.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/TexturePacker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/TexturePacker.exe -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/TexturePacker.exe.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/TexturePacker.exe.BAK -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/TexturePackerGUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/TexturePackerGUI.exe -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/TexturePackerGUI.exe.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/TexturePackerGUI.exe.BAK -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/TexturePackerGUI.exe.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/TexturePackerGUI.exe.tmp -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/bearer/qgenericbearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/bearer/qgenericbearer.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/bearer/qnativewifibearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/bearer/qnativewifibearer.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/d3dcompiler_47.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/2dtoolkit/tk2d.bytes: -------------------------------------------------------------------------------- 1 | i tk2d 1 2 | w {{texture.size.width}} 3 | h {{texture.size.height}} 4 | ~{% for sprite in allSprites %} 5 | n {{sprite.trimmedName}} 6 | s {{sprite.frameRect.x}} {{sprite.frameRect.y}} {{sprite.frameRect.width}} {{sprite.frameRect.height}}{% if sprite.trimmed %} 7 | o {{sprite.sourceRect.x}} {{sprite.sourceRect.y}} {{sprite.untrimmedSize.width}} {{sprite.untrimmedSize.height}}{% endif %}{% if sprite.rotated %} 8 | r 1{% endif %} 9 | ~{% endfor %} -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/EaselJS/EaselJS.json: -------------------------------------------------------------------------------- 1 | { 2 | {% load easeljs %} 3 | {{tp|exportData}} 4 | 5 | "texturepacker": [ 6 | "SmartUpdateHash: {{smartUpdateKey}}", 7 | "Created with TexturePacker (https://www.codeandweb.com/texturepacker) for EaselJS" 8 | ] 9 | 10 | } 11 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/caat/template.json: -------------------------------------------------------------------------------- 1 | { 2 | "sprites" : { {% for sprite in allSprites %} 3 | "{{sprite.trimmedName}}" : { 4 | "x" : {{sprite.frameRect.x}}, 5 | "y" : {{sprite.frameRect.y}}, 6 | "width" : {{sprite.frameRect.width}}, 7 | "height" : {{sprite.frameRect.height}} 8 | }{% if not forloop.last %}, {% endif %}{% endfor %} 9 | }, 10 | "texturepacker": [ 11 | "SmartUpdateHash: {{smartUpdateKey}}", 12 | "Created with TexturePacker (http://www.texturepacker.com) for CAAT" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/css/sprites.css: -------------------------------------------------------------------------------- 1 | /* 2 | ------------------------------------------------------------------- 3 | Created with TexturePacker https://www.codeandweb.com/texturepacker 4 | ------------------------------------------------------------------- 5 | Inline: 6 | Responsive:
7 | */ 8 | {% load css %}{{tp|exportData|safe}} 9 | 10 | /* {{smartUpdateKey}} */ 11 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/kwiksher2/K2.lua: -------------------------------------------------------------------------------- 1 | -- created with TexturePacker (http://www.texturepacker.com) 2 | frames = { 3 | {% for sprite in allSprites %} 4 | { x={{sprite.frameRect.x}}, y={{sprite.frameRect.y}}, width={{sprite.frameRect.width}}, height={{sprite.frameRect.height}} }, -- {{sprite.trimmedName}}{% endfor %} 5 | }, 6 | 7 | sheetContentWidth = {{texture.size.width}}, 8 | sheetContentHeight = {{texture.size.height}} 9 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/less/grantlee/0.2/makecssselector.qs: -------------------------------------------------------------------------------- 1 | var MakeSelectorFilter = function(input) 2 | { 3 | var input = input.rawString(); 4 | input = input.replace(/\s+/g,"_"); 5 | return input.replace(/-hover/,":hover"); 6 | }; 7 | MakeSelectorFilter.filterName = "makecssselector"; 8 | MakeSelectorFilter.isSafe = false; 9 | Library.addFilter("MakeSelectorFilter"); 10 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/less/sprites.less: -------------------------------------------------------------------------------- 1 | // 2 | // Created with TexturePacker http://www.codeandweb.com/texturepacker 3 | // 4 | // SmartUpdateHash: {{smartUpdateKey}} 5 | // 6 | {% load makecssselector %} 7 | .sprite-{{texture.trimmedName}} { display:inline-block; overflow: hidden; background-repeat: no-repeat; background-image: url('{% if settings.textureSubPath %}{{settings.textureSubPath}}/{% endif %}{{texture.fullName}}'); } 8 | {% for sprite in sprites %} 9 | .{{texture.trimmedName}}-{{sprite.trimmedName|makecssselector}} { width: {{sprite.frameRect.width}}px; height: {{sprite.frameRect.height}}px; background-position: -{{sprite.frameRect.x}}px -{{sprite.frameRect.y}}px; }{% endfor %} 10 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/librocket/libRocket.rcss: -------------------------------------------------------------------------------- 1 | {% for sprite in allSprites %} 2 | 3 | .{{sprite.trimmedName}} 4 | { 5 | width: {{sprite.frameRect.width}}px; 6 | height: {{sprite.frameRect.height}}px; 7 | background-decorator: image; 8 | background-image: {{texture.fullName}} {{sprite.frameRect.x}}px {{sprite.frameRect.y}}px {{sprite.frameRect.x|add:sprite.frameRect.width}}px {{sprite.frameRect.y|add:sprite.frameRect.height}}px; 9 | } 10 | 11 | {% endfor %} 12 | 13 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/molecule/molecule.json: -------------------------------------------------------------------------------- 1 | { 2 | "frames": [{% for sprite in allSprites %} 3 | { 4 | "name": "{{sprite.fullName}}", 5 | "position": {"x": {{sprite.frameRect.x}}, "y": {{sprite.frameRect.y}}}, 6 | "size": {"w": {{sprite.frameRect.width}}, "h": {{sprite.frameRect.height}}} 7 | }{% if not forloop.last %}, {% endif %}{% endfor %}], 8 | "meta": { 9 | "app": "http://www.codeandweb.com/texturepacker", 10 | "description": "Json file for Molecule Framework", 11 | "version": "1.0", 12 | "image": "{{texture.fullName}}", 13 | "size": {"w":{{texture.size.width}},"h":{{texture.size.height}}}, 14 | "smartupdate": "{{smartUpdateKey}}" 15 | } 16 | } -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/monogame/grantlee/0.2/TransformCoords.qs: -------------------------------------------------------------------------------- 1 | textureHeight=1; 2 | 3 | var SetTextureHeight = function(input) 4 | { 5 | textureHeight = input; 6 | return ""; 7 | }; 8 | SetTextureHeight.filterName = "setTextureHeight"; 9 | Library.addFilter("SetTextureHeight"); 10 | 11 | 12 | var TrimmedPivotX = function(sprite) 13 | { 14 | var ppX = (sprite.pivotPoint.x - sprite.sourceRect.x) / sprite.sourceRect.width; 15 | return "" + ppX; 16 | }; 17 | TrimmedPivotX.filterName = "TrimmedPivotX"; 18 | Library.addFilter("TrimmedPivotX"); 19 | 20 | 21 | var TrimmedPivotY = function(sprite) 22 | { 23 | var ppY = (sprite.pivotPoint.y - sprite.sourceRect.y) / sprite.sourceRect.height; 24 | return "" + ppY; 25 | }; 26 | TrimmedPivotY.filterName = "TrimmedPivotY"; 27 | Library.addFilter("TrimmedPivotY"); 28 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/monogame/grantlee/0.2/TransformName.qs: -------------------------------------------------------------------------------- 1 | var StripPathSeparators = function(input) 2 | { 3 | var input = input.rawString(); 4 | input = input.replace(/\s+/g,"_"); 5 | input = input.replace(/\\+/g,"_"); 6 | input = input.replace(/\/+/g,"_"); 7 | return input.charAt(0).toUpperCase() + input.slice(1); 8 | }; 9 | StripPathSeparators.filterName = "stripPathSeparators"; 10 | StripPathSeparators.isSafe = false; 11 | Library.addFilter("StripPathSeparators"); 12 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/monogame/monogame.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Class auto generated by TexturePacker 3 | * 4 | * Contains references to each image within the sprite sheet. 5 | * 6 | * http://www.codeandweb.com/texturepacker 7 | * {{smartUpdateKey}} 8 | * 9 | */{% load TransformName %} 10 | namespace TexturePackerMonoGameDefinitions 11 | { 12 | public class {{settings.tpsName}} 13 | { 14 | {% for sprite in allSprites %} public const string {{sprite.trimmedName|stripPathSeparators}} = "{{sprite.trimmedName}}"; 15 | {% endfor %} } 16 | } -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/monogame/monogame.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Sprite sheet data for MonoGame. 3 | # 4 | # To learn how to import these sprites into your MonoGame project visit: 5 | # http://www.codeandweb.com/texturepacker/monogame 6 | # 7 | # Sprite sheet: {{texture.fullName}} ({{texture.size.width}} x {{texture.size.height}}) 8 | # {{smartUpdateKey}} 9 | # 10 | {% load TransformCoords %}{{texture.size.height|setTextureHeight}}{% for sprite in allSprites %} 11 | {{sprite.trimmedName}};{% if sprite.rotated %}1{% else %}0{% endif %};{{sprite.frameRect.x}};{{sprite.frameRect.y}};{{sprite.frameRect.width}};{{sprite.frameRect.height}};{{sprite.untrimmedSize.width}};{{sprite.untrimmedSize.height}};{{sprite|TrimmedPivotX}};{{sprite|TrimmedPivotY}}{% endfor %} -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/orx/orx.ini: -------------------------------------------------------------------------------- 1 | ; Created with TexturePacker (http://www.texturepacker.com) 2 | ; {{smartUpdateKey}} 3 | 4 | [{{texture.trimmedName}}] 5 | Texture = {{texture.fullName}} 6 | TextureSize = ({{texture.size.width}}, {{texture.size.height}}, 0) 7 | {% for sprite in allSprites %} 8 | [{{sprite.trimmedName}}@{{texture.trimmedName}}] 9 | {% if sprite.trimmed %}Pivot = ({%ifequal sprite.cornerOffset.x 0 %}0{% else %}-{{sprite.cornerOffset.x}}{% endifequal %}, {%ifequal sprite.cornerOffset.y 0 %}0{% else %}-{{sprite.cornerOffset.y}}{% endifequal %}, 0) 10 | TextureOrigin = ({{sprite.frameRect.x}}, {{sprite.frameRect.y}}, 0) 11 | TextureSize = ({{sprite.frameRect.width}}, {{sprite.frameRect.height}}, 0){% else %}TextureOrigin = ({{sprite.frameRect.x}}, {{sprite.frameRect.y}}, 0) 12 | TextureSize = ({{sprite.frameRect.width}}, {{sprite.frameRect.height}}, 0){% endif %} 13 | {% endfor %} 14 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/panda/exporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/exporters/panda/exporter.png -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/panda/exporter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/exporters/panda/exporter@2x.png -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/panda/panda.json: -------------------------------------------------------------------------------- 1 | { 2 | "frames": { {% for sprite in allSprites %} 3 | "{{sprite.fullName}}": { 4 | "x": {{sprite.frameRect.x}}, 5 | "y": {{sprite.frameRect.y}}, 6 | "w": {{sprite.frameRect.width}}, 7 | "h": {{sprite.frameRect.height}} 8 | }{% if not forloop.last %}, {% endif %}{% endfor %} 9 | }, 10 | "meta": { 11 | "app": "http://www.codeandweb.com/texturepacker", 12 | "image": "{{texture.fullName}}", 13 | "smartupdate": "{{smartUpdateKey}}" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/plain/plain.h: -------------------------------------------------------------------------------- 1 | Simple plain text exporter for demo purposes 2 | 3 | This file might contain additional information 4 | 5 | SmartUpdateHash: {{smartUpdateKey}} 6 | 7 | {% for result in allResults %} 8 | RESULT = { {% for texture in result.textures %} 9 | TEXURE = { 10 | area = {{texture.area}} 11 | size = {{texture.size.width}} x {{texture.size.height}} 12 | absoluteFileName = "{{texture.absoluteFileName}}" 13 | trimmedName = "{{texture.trimmedName}}" 14 | fullName = "{{texture.fullName}}" 15 | ALL_SPRITES = { {% for sprite in texture.allSprites %} 16 | "{{sprite.trimmedName}}" x={{sprite.frameRect.x}} y={{sprite.frameRect.y}} w={{sprite.frameRect.width}} h={{sprite.frameRect.height}} {% endfor %} 17 | } 18 | {% endfor %} 19 | NON_FITTING_SPRITES = { {% for sprite in result.notFittingSprites %} 20 | {{sprite.trimmedName}}{% endfor %} 21 | } 22 | } 23 | {% endfor %} 24 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/sass-mixins/mixins.sass: -------------------------------------------------------------------------------- 1 | // 2 | // css sprite mixins - created with http://www.codeandweb.com/texturepacker 3 | // exporter created by Rob Moorman 4 | // 5 | // {{smartUpdateKey}} 6 | 7 | {% for sprite in allSprites %} 8 | @mixin sprite-{{sprite.trimmedName}}($path: './') 9 | display: inline-block 10 | overflow: hidden 11 | width: {{sprite.frameRect.width}}px 12 | height: {{sprite.frameRect.height}}px 13 | background: 14 | repeat: no-repeat 15 | image: url('#{$path}{{settings.textureSubPath}}{{texture.fullName}}') 16 | position: -{{sprite.frameRect.x}}px -{{sprite.frameRect.y}}px 17 | {% endfor %} 18 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/shiva3d/shiva.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | {% for sprite in allSprites %} 16 | {% endfor %} 17 | 18 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/spritestudio/grantlee/0.2/TransformCoords.qs: -------------------------------------------------------------------------------- 1 | var TrimmedPivotX = function(sprite) 2 | { 3 | if(sprite.untrimmedSize.width === 0) 4 | { 5 | return "" + 0; 6 | } 7 | 8 | var ppX = -0.5 + (sprite.pivotPoint.x - sprite.sourceRect.x) / sprite.untrimmedSize.width; 9 | return "" + ppX; 10 | }; 11 | TrimmedPivotX.filterName = "TrimmedPivotX"; 12 | Library.addFilter("TrimmedPivotX"); 13 | 14 | var TrimmedMirroredPivotY = function(sprite) 15 | { 16 | if(sprite.untrimmedSize.height === 0) 17 | { 18 | return "" + 0; 19 | } 20 | 21 | var ppY = 0.5 + (sprite.pivotPoint.y - sprite.sourceRect.y) / sprite.untrimmedSize.height; 22 | return "" + (1 - ppY); 23 | }; 24 | TrimmedMirroredPivotY.filterName = "TrimmedMirroredPivotY"; 25 | Library.addFilter("TrimmedMirroredPivotY"); 26 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/tresensa/TreSensa.js: -------------------------------------------------------------------------------- 1 | // Created with TexturePacker http://www.codeandweb.com/texturepacker 2 | // {{smartUpdateKey}} 3 | TGE.AssetManager.SpriteSheets["{{texture.trimmedName}}"] = { 4 | {% for sprite in allSprites %} 5 | "{{sprite.trimmedName}}":[{{sprite.frameRect.x}}, {{sprite.frameRect.y}}, {{sprite.frameRect.width}}, {{sprite.frameRect.height}}{% if sprite.trimmed %}, {{sprite.sourceRect.x}}, {{sprite.sourceRect.y}}, {{sprite.untrimmedSize.width}}, {{sprite.untrimmedSize.height}}{% endif %}]{% if not forloop.last %}, {% endif %}{% endfor %} 6 | }; 7 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/unity/unity.tpsheet: -------------------------------------------------------------------------------- 1 | # 2 | # Sprite sheet data for Unity. 3 | # 4 | # To import these sprites into your Unity project, download "TexturePackerImporter": 5 | # http://www.codeandweb.com/texturepacker/unity 6 | # 7 | # {{smartUpdateKey}} 8 | # 9 | {% load TransformCoords %}{{tp|ExportData|safe}} 10 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/exporters/x2d/template.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {% for sprite in allSprites %} {% if not forloop.last %} 6 | {% endif %}{% endfor %} 7 | 8 | 9 | -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/grantlee/grantlee_defaultfilters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/grantlee/grantlee_defaultfilters.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/grantlee/grantlee_defaulttags.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/grantlee/grantlee_defaulttags.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/grantlee/grantlee_i18ntags.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/grantlee/grantlee_i18ntags.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/grantlee/grantlee_loadertags.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/grantlee/grantlee_loadertags.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/grantlee_templates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/grantlee_templates.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/iconengines/qsvgicon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/iconengines/qsvgicon.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qgif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qgif.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qicns.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qicns.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qico.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qico.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qjpeg.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qsvg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qsvg.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qtga.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qtga.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qtiff.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qwbmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qwbmp.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/imageformats/qwebp.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/libEGL.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/libGLESv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/libGLESv2.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/libeay32.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/msvcp120.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/msvcr120.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/platforms/qwindows.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_debugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_debugger.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_inspector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_inspector.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_local.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_native.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_profiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_profiler.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_quickprofiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_quickprofiler.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_server.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_tcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/qmltooling/qmldbg_tcp.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/bin/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/bin/ssleay32.dll -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/resources/icons/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/resources/icons/Icon.ico -------------------------------------------------------------------------------- /Tools/TexturePacker/TexturePacker_Win32/resources/icons/TexturePackerDocument.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/Tools/TexturePacker/TexturePacker_Win32/resources/icons/TexturePackerDocument.ico -------------------------------------------------------------------------------- /Tools/TexturePacker/maker.bat: -------------------------------------------------------------------------------- 1 | @echo on 2 | 3 | rem SET TexturePacker="C:/Program Files/TexturePacker/TexturePacker.exe" 4 | SET TexturePacker="./Tools/TexturePacker/TexturePacker_Win32/bin/TexturePacker.exe" 5 | 6 | SET PATH_SRC=%~1 7 | SET PATH_DST=%~2 8 | SET ARGS=%~3 9 | 10 | SET DATA_FILE=%PATH_DST%.tpsheet 11 | SET SHEET_FILE=%PATH_DST%.png 12 | 13 | rem %TexturePacker% --smart-update %PATH_SRC% --data %DATA_FILE% --format unity-texture2d --sheet %SHEET_FILE% --max-size 2048 --force-squared --size-constraints POT --disable-rotation --trim-mode %TRIN_MODE% --algorithm Polygon --trim-margin 0 --extrude 1 --border-padding 0 --shape-padding %SHAPE_PADDING% 14 | %TexturePacker% --smart-update %PATH_SRC% --data %DATA_FILE% --format unity-texture2d --sheet %SHEET_FILE% %ARGS% 15 | 16 | -------------------------------------------------------------------------------- /Tools/TexturePacker/maker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | TexturePacker="/Applications/TexturePacker.app/Contents/MacOS/TexturePacker" 4 | 5 | PATH_SRC=$1 6 | PATH_DST=$2 7 | TRIN_MODE=Polygon 8 | 9 | SHAPE_PADDING=$3 10 | 11 | DATA_FILE=${PATH_DST}.txt 12 | SHEET_FILE=${PATH_DST}.png 13 | 14 | $TexturePacker --smart-update $PATH_SRC --data $DATA_FILE --format unity-texture2d --sheet $SHEET_FILE --max-size 2048 --size-constraints POT --force-squared --disable-rotation --trim-mode $TRIN_MODE --algorithm Polygon --trim-margin 0 --extrude 1 --border-padding 0 --shape-padding $SHAPE_PADDING 15 | -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /img-folder/LImage/LImageEditor_Shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/img-folder/LImage/LImageEditor_Shape.png -------------------------------------------------------------------------------- /img-folder/LImage/LImage_PolyMesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/img-folder/LImage/LImage_PolyMesh.png -------------------------------------------------------------------------------- /img-folder/UIEffect/CapScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/img-folder/UIEffect/CapScreen.png -------------------------------------------------------------------------------- /img-folder/UIEffect/UIEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyback/UGUI_Extension/712282b93cc814c4f2601ad18fb688cb5ac6f3ea/img-folder/UIEffect/UIEffect.png --------------------------------------------------------------------------------