├── .DS_Store ├── .gitattributes ├── .gitignore ├── README.md └── psd2ugui ├── .DS_Store ├── Assets ├── PSD2UGUI.meta ├── PSD2UGUI │ ├── CustomTab.meta │ ├── CustomTab │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── TabEditor.cs │ │ │ └── TabEditor.cs.meta │ │ ├── Image.meta │ │ ├── Image │ │ │ ├── tabSel.png │ │ │ ├── tabSel.png.meta │ │ │ ├── tabUnSel.png │ │ │ └── tabUnSel.png.meta │ │ ├── Prefab.meta │ │ ├── Prefab │ │ │ ├── Tab.prefab │ │ │ ├── Tab.prefab.meta │ │ │ ├── TabGroup.prefab │ │ │ └── TabGroup.prefab.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Page.cs │ │ │ ├── Page.cs.meta │ │ │ ├── Tab.cs │ │ │ ├── Tab.cs.meta │ │ │ ├── TabGroup.cs │ │ │ ├── TabGroup.cs.meta │ │ │ ├── TabTest.cs │ │ │ └── TabTest.cs.meta │ │ ├── tab.unity │ │ └── tab.unity.meta │ ├── Doc.meta │ ├── Doc │ │ ├── unity读取XML数据生成预设规则.doc │ │ ├── unity读取XML数据生成预设规则.doc.meta │ │ ├── version.txt │ │ ├── version.txt.meta │ │ ├── 使用说明及UI命名规则.docx │ │ └── 使用说明及UI命名规则.docx.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Const.meta │ │ ├── Const │ │ │ ├── PSD2UGUIConfig.cs │ │ │ ├── PSD2UGUIConfig.cs.meta │ │ │ ├── PSD2UGUISettingWizard.cs │ │ │ ├── PSD2UGUISettingWizard.cs.meta │ │ │ ├── PSDImporterConst.cs │ │ │ └── PSDImporterConst.cs.meta │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── PSDImportCtrl.cs │ │ │ ├── PSDImportCtrl.cs.meta │ │ │ ├── PSDImportMenu.cs │ │ │ ├── PSDImportMenu.cs.meta │ │ │ ├── PSDImportUtility.cs │ │ │ └── PSDImportUtility.cs.meta │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── Image.cs │ │ │ ├── Image.cs.meta │ │ │ ├── Layer.cs │ │ │ ├── Layer.cs.meta │ │ │ ├── PSDUI.cs │ │ │ ├── PSDUI.cs.meta │ │ │ ├── Position.cs │ │ │ ├── Position.cs.meta │ │ │ ├── Size.cs │ │ │ └── Size.cs.meta │ │ ├── Effects.meta │ │ ├── Effects │ │ │ ├── MirrorEditor.cs │ │ │ └── MirrorEditor.cs.meta │ │ ├── Enum.meta │ │ ├── Enum │ │ │ ├── ImageSource.cs │ │ │ ├── ImageSource.cs.meta │ │ │ ├── ImageType.cs │ │ │ ├── ImageType.cs.meta │ │ │ ├── LayerType.cs │ │ │ └── LayerType.cs.meta │ │ ├── ImageImports.meta │ │ ├── ImageImports │ │ │ ├── HalfSpriteImport.cs │ │ │ ├── HalfSpriteImport.cs.meta │ │ │ ├── SliceSpriteImport.cs │ │ │ ├── SliceSpriteImport.cs.meta │ │ │ ├── SpriteImport.cs │ │ │ ├── SpriteImport.cs.meta │ │ │ ├── TextImport.cs │ │ │ ├── TextImport.cs.meta │ │ │ ├── TextureImport.cs │ │ │ └── TextureImport.cs.meta │ │ ├── Interface.meta │ │ ├── Interface │ │ │ ├── IImageImport.cs │ │ │ ├── IImageImport.cs.meta │ │ │ ├── ILayerImport.cs │ │ │ └── ILayerImport.cs.meta │ │ ├── LayerImport.meta │ │ └── LayerImport │ │ │ ├── ButtonLayerImport.cs │ │ │ ├── ButtonLayerImport.cs.meta │ │ │ ├── DefultLayerImport.cs │ │ │ ├── DefultLayerImport.cs.meta │ │ │ ├── DropDownLayerImport.cs │ │ │ ├── DropDownLayerImport.cs.meta │ │ │ ├── GridLayerImport.cs │ │ │ ├── GridLayerImport.cs.meta │ │ │ ├── GroupLayerImport.cs │ │ │ ├── GroupLayerImport.cs.meta │ │ │ ├── InputFieldLayerImport.cs │ │ │ ├── InputFieldLayerImport.cs.meta │ │ │ ├── LayoutElementLayerImport.cs │ │ │ ├── LayoutElementLayerImport.cs.meta │ │ │ ├── PanelLayerImport.cs │ │ │ ├── PanelLayerImport.cs.meta │ │ │ ├── ScrollBarLayerImport.cs │ │ │ ├── ScrollBarLayerImport.cs.meta │ │ │ ├── ScrollViewLayerImport.cs │ │ │ ├── ScrollViewLayerImport.cs.meta │ │ │ ├── SliderLayerImport.cs │ │ │ ├── SliderLayerImport.cs.meta │ │ │ ├── TabGroupLayerImport.cs │ │ │ ├── TabGroupLayerImport.cs.meta │ │ │ ├── ToggleLayerImport.cs │ │ │ └── ToggleLayerImport.cs.meta │ ├── Effects.meta │ ├── Effects │ │ ├── Collections.meta │ │ ├── Collections │ │ │ ├── ListPool.cs │ │ │ ├── ListPool.cs.meta │ │ │ ├── Pool.cs │ │ │ └── Pool.cs.meta │ │ ├── Mirror.cs │ │ └── Mirror.cs.meta │ ├── Font.meta │ ├── Font │ │ ├── MicrosoftYaHei-Bold.ttf │ │ ├── MicrosoftYaHei-Bold.ttf.meta │ │ ├── StaticFont.meta │ │ └── StaticFont │ │ │ ├── MicrosoftYaHei-Bold_Static.ttf │ │ │ └── MicrosoftYaHei-Bold_Static.ttf.meta │ ├── JSCode.meta │ ├── JSCode │ │ ├── Export PSDUI.jsx │ │ ├── Export PSDUI.jsx.meta │ │ ├── ReadMe.txt │ │ └── ReadMe.txt.meta │ ├── Samples.meta │ ├── Samples │ │ ├── 9slice.meta │ │ ├── 9slice │ │ │ ├── 9slice.psd │ │ │ ├── 9slice.psd.meta │ │ │ ├── 9slice.xml │ │ │ ├── 9slice.xml.meta │ │ │ ├── Mask_1.png │ │ │ ├── Mask_1.png.meta │ │ │ ├── TopInfoBg_2.png │ │ │ └── TopInfoBg_2.png.meta │ │ ├── button.meta │ │ ├── button │ │ │ ├── ButtonTemp.psd │ │ │ ├── ButtonTemp.psd.meta │ │ │ ├── Close_Disabled_3.png │ │ │ ├── Close_Disabled_3.png.meta │ │ │ ├── Close_HighLighted_4.png │ │ │ ├── Close_HighLighted_4.png.meta │ │ │ ├── Close_Normal_2.png │ │ │ ├── Close_Normal_2.png.meta │ │ │ ├── Close_Pressed_5.png │ │ │ ├── Close_Pressed_5.png.meta │ │ │ ├── GreenBg_Normal_7.png │ │ │ ├── GreenBg_Normal_7.png.meta │ │ │ ├── YelBg_Normal_LeftHalf_8.png │ │ │ ├── YelBg_Normal_LeftHalf_8.png.meta │ │ │ ├── background_1.png │ │ │ ├── background_1.png.meta │ │ │ ├── button.xml │ │ │ └── button.xml.meta │ │ ├── grid.meta │ │ ├── grid │ │ │ ├── background2_2.png │ │ │ ├── background2_2.png.meta │ │ │ ├── backgroundBorder2_3.png │ │ │ ├── backgroundBorder2_3.png.meta │ │ │ ├── backgroundBorder_4.png │ │ │ ├── backgroundBorder_4.png.meta │ │ │ ├── background_1.png │ │ │ ├── background_1.png.meta │ │ │ ├── grid.psd │ │ │ ├── grid.psd.meta │ │ │ ├── grid.xml │ │ │ ├── grid.xml.meta │ │ │ ├── heroHead.png │ │ │ ├── heroHead.png.meta │ │ │ ├── leftTopBackground_14.png │ │ │ ├── leftTopBackground_14.png.meta │ │ │ ├── normal_11.png │ │ │ ├── normal_11.png.meta │ │ │ ├── rewardProp.png │ │ │ ├── rewardProp.png.meta │ │ │ ├── rightBackground1_6.png │ │ │ ├── rightBackground1_6.png.meta │ │ │ ├── rightBackground2_7.png │ │ │ ├── rightBackground2_7.png.meta │ │ │ ├── rightBackground3_8.png │ │ │ ├── rightBackground3_8.png.meta │ │ │ ├── rightBackground5_9.png │ │ │ ├── rightBackground5_9.png.meta │ │ │ ├── rightBackground_5.png │ │ │ ├── rightBackground_5.png.meta │ │ │ ├── rightbackground4_10.png │ │ │ ├── rightbackground4_10.png.meta │ │ │ ├── topLeftBackground2_13.png │ │ │ ├── topLeftBackground2_13.png.meta │ │ │ ├── topLeftBackground_12.png │ │ │ └── topLeftBackground_12.png.meta │ │ ├── halftest.meta │ │ ├── halftest │ │ │ ├── halftest.xml │ │ │ ├── halftest.xml.meta │ │ │ ├── haltest.psd │ │ │ ├── haltest.psd.meta │ │ │ ├── house_BottomHalf_2.png │ │ │ ├── house_BottomHalf_2.png.meta │ │ │ ├── house_LeftHalf_1.png │ │ │ ├── house_LeftHalf_1.png.meta │ │ │ ├── plus_Quarter_3.png │ │ │ └── plus_Quarter_3.png.meta │ │ ├── scrollpanel.meta │ │ ├── scrollpanel │ │ │ ├── BattlePreparePanel.psd │ │ │ ├── BattlePreparePanel.psd.meta │ │ │ ├── background2_2.png │ │ │ ├── background2_2.png.meta │ │ │ ├── backgroundBorder2_3.png │ │ │ ├── backgroundBorder2_3.png.meta │ │ │ ├── backgroundBorder_4.png │ │ │ ├── backgroundBorder_4.png.meta │ │ │ ├── background_1.png │ │ │ ├── background_1.png.meta │ │ │ ├── heroHead.png │ │ │ ├── heroHead.png.meta │ │ │ ├── leftTopBackground_14.png │ │ │ ├── leftTopBackground_14.png.meta │ │ │ ├── normal_11.png │ │ │ ├── normal_11.png.meta │ │ │ ├── rewardProp.png │ │ │ ├── rewardProp.png.meta │ │ │ ├── rightBackground1_6.png │ │ │ ├── rightBackground1_6.png.meta │ │ │ ├── rightBackground2_7.png │ │ │ ├── rightBackground2_7.png.meta │ │ │ ├── rightBackground3_8.png │ │ │ ├── rightBackground3_8.png.meta │ │ │ ├── rightBackground5_9.png │ │ │ ├── rightBackground5_9.png.meta │ │ │ ├── rightBackground_5.png │ │ │ ├── rightBackground_5.png.meta │ │ │ ├── rightbackground4_10.png │ │ │ ├── rightbackground4_10.png.meta │ │ │ ├── scrollpanel.xml │ │ │ ├── scrollpanel.xml.meta │ │ │ ├── topLeftBackground2_13.png │ │ │ ├── topLeftBackground2_13.png.meta │ │ │ ├── topLeftBackground_12.png │ │ │ └── topLeftBackground_12.png.meta │ │ ├── slider.meta │ │ ├── slider │ │ │ ├── Background_1.png │ │ │ ├── Background_1.png.meta │ │ │ ├── Bg_2.png │ │ │ ├── Bg_2.png.meta │ │ │ ├── Fill_3.png │ │ │ ├── Fill_3.png.meta │ │ │ ├── Handle_4.png │ │ │ ├── Handle_4.png.meta │ │ │ ├── _Bg_2.png │ │ │ ├── _Bg_2.png.meta │ │ │ ├── _Fill_3.png │ │ │ ├── _Fill_3.png.meta │ │ │ ├── _Handle_4.png │ │ │ ├── _Handle_4.png.meta │ │ │ ├── slider.psd │ │ │ ├── slider.psd.meta │ │ │ ├── slider.xml │ │ │ └── slider.xml.meta │ │ ├── tab.meta │ │ ├── tab │ │ │ ├── BG1_TabSel.png │ │ │ ├── BG1_TabSel.png.meta │ │ │ ├── BG2_TabUnSel.png │ │ │ ├── BG2_TabUnSel.png.meta │ │ │ ├── BG_2.png │ │ │ ├── BG_2.png.meta │ │ │ ├── BG_4.png │ │ │ ├── BG_4.png.meta │ │ │ ├── BG_6.png │ │ │ ├── BG_6.png.meta │ │ │ ├── tab.xml │ │ │ ├── tab.xml.meta │ │ │ ├── tabtest.psd │ │ │ └── tabtest.psd.meta │ │ ├── texttest.meta │ │ ├── texttest │ │ │ ├── TextTemp.psd │ │ │ ├── TextTemp.psd.meta │ │ │ ├── background_1.png │ │ │ ├── background_1.png.meta │ │ │ ├── text5_ArtStatic_4.png │ │ │ ├── text5_ArtStatic_4.png.meta │ │ │ ├── texttest.xml │ │ │ └── texttest.xml.meta │ │ ├── toggle.meta │ │ └── toggle │ │ │ ├── BG_1.png │ │ │ ├── BG_1.png.meta │ │ │ ├── Bg_Background_2.png │ │ │ ├── Bg_Background_2.png.meta │ │ │ ├── Finish_Checkmark_3.png │ │ │ ├── Finish_Checkmark_3.png.meta │ │ │ ├── toggle.xml │ │ │ ├── toggle.xml.meta │ │ │ ├── toggletest.psd │ │ │ └── toggletest.psd.meta │ ├── Template.meta │ └── Template │ │ ├── UI.meta │ │ └── UI │ │ ├── Button.prefab │ │ ├── Button.prefab.meta │ │ ├── Canvas.prefab │ │ ├── Canvas.prefab.meta │ │ ├── Empty.prefab │ │ ├── Empty.prefab.meta │ │ ├── EventSystem.prefab │ │ ├── EventSystem.prefab.meta │ │ ├── Grid.prefab │ │ ├── Grid.prefab.meta │ │ ├── HalfImage.prefab │ │ ├── HalfImage.prefab.meta │ │ ├── HorizontalGroup.prefab │ │ ├── HorizontalGroup.prefab.meta │ │ ├── Image.prefab │ │ ├── Image.prefab.meta │ │ ├── InputField.prefab │ │ ├── InputField.prefab.meta │ │ ├── LayoutElement.prefab │ │ ├── LayoutElement.prefab.meta │ │ ├── RawImage.prefab │ │ ├── RawImage.prefab.meta │ │ ├── ScrollView.prefab │ │ ├── ScrollView.prefab.meta │ │ ├── Scrollbar.prefab │ │ ├── Scrollbar.prefab.meta │ │ ├── Slider.prefab │ │ ├── Slider.prefab.meta │ │ ├── Tab.prefab │ │ ├── Tab.prefab.meta │ │ ├── TabGroup.prefab │ │ ├── TabGroup.prefab.meta │ │ ├── Text.prefab │ │ ├── Text.prefab.meta │ │ ├── Toggle.prefab │ │ ├── Toggle.prefab.meta │ │ ├── VerticalGroup.prefab │ │ └── VerticalGroup.prefab.meta ├── Plugins.meta ├── Plugins │ ├── Packages.meta │ └── Packages │ │ ├── @rotorz.meta │ │ └── @rotorz │ │ ├── dotnet-exception-utils.meta │ │ ├── dotnet-exception-utils │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Source.meta │ │ ├── Source │ │ │ ├── ExceptionUtility.cs │ │ │ ├── ExceptionUtility.cs.meta │ │ │ ├── _assembly.asmdef │ │ │ └── _assembly.asmdef.meta │ │ ├── package.json │ │ └── package.json.meta │ │ ├── dotnet-type-utils.meta │ │ ├── dotnet-type-utils │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Source.meta │ │ ├── Source │ │ │ ├── DependencyAttribute.cs │ │ │ ├── DependencyAttribute.cs.meta │ │ │ ├── Reflection.meta │ │ │ ├── Reflection │ │ │ │ ├── TypeMeta.cs │ │ │ │ └── TypeMeta.cs.meta │ │ │ ├── _assembly.asmdef │ │ │ └── _assembly.asmdef.meta │ │ ├── package.json │ │ └── package.json.meta │ │ ├── unity3d-editor-menu.meta │ │ ├── unity3d-editor-menu │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── EditorMenu.cs │ │ │ ├── EditorMenu.cs.meta │ │ │ ├── EditorMenuCommandBinder.cs │ │ │ ├── EditorMenuCommandBinder.cs.meta │ │ │ ├── EditorMenuCommandEntry.cs │ │ │ ├── EditorMenuCommandEntry.cs.meta │ │ │ ├── EditorMenuEntry.cs │ │ │ ├── EditorMenuEntry.cs.meta │ │ │ ├── EditorMenuInternalUtility.cs │ │ │ ├── EditorMenuInternalUtility.cs.meta │ │ │ ├── EditorMenuPresenterUtility.cs │ │ │ ├── EditorMenuPresenterUtility.cs.meta │ │ │ ├── EditorMenuPresenter_GenericMenu.cs │ │ │ ├── EditorMenuPresenter_GenericMenu.cs.meta │ │ │ ├── EditorMenuSeparatorBinder.cs │ │ │ ├── EditorMenuSeparatorBinder.cs.meta │ │ │ ├── EditorMenuSeparatorEntry.cs │ │ │ ├── EditorMenuSeparatorEntry.cs.meta │ │ │ ├── EditorMenuSettings.cs │ │ │ ├── EditorMenuSettings.cs.meta │ │ │ ├── IEditorMenuEntry.cs │ │ │ ├── IEditorMenuEntry.cs.meta │ │ │ ├── IEditorMenuEntryParameter.cs │ │ │ ├── IEditorMenuEntryParameter.cs.meta │ │ │ ├── IEditorMenuPresenter.cs │ │ │ ├── IEditorMenuPresenter.cs.meta │ │ │ ├── _assembly.asmdef │ │ │ └── _assembly.asmdef.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── package.json │ │ └── package.json.meta │ │ ├── unity3d-package-utils.meta │ │ ├── unity3d-package-utils │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── PackageUtility.cs │ │ │ ├── PackageUtility.cs.meta │ │ │ ├── _assembly.asmdef │ │ │ └── _assembly.asmdef.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── package.json │ │ └── package.json.meta │ │ ├── unity3d-reorderable-list.meta │ │ ├── unity3d-reorderable-list │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Collections.meta │ │ │ ├── Collections │ │ │ │ ├── ElementAdderMenu.meta │ │ │ │ ├── ElementAdderMenu │ │ │ │ │ ├── ElementAdderMenuCommandAttribute.cs │ │ │ │ │ ├── ElementAdderMenuCommandAttribute.cs.meta │ │ │ │ │ ├── ElementAdderMenuCommandMeta.cs │ │ │ │ │ ├── ElementAdderMenuCommandMeta.cs.meta │ │ │ │ │ ├── ElementAdderMenuPopulator.cs │ │ │ │ │ ├── ElementAdderMenuPopulator.cs.meta │ │ │ │ │ ├── IElementAdder.cs │ │ │ │ │ ├── IElementAdder.cs.meta │ │ │ │ │ ├── IElementAdderMenuCommand.cs │ │ │ │ │ └── IElementAdderMenuCommand.cs.meta │ │ │ │ ├── GenericListAdaptor.cs │ │ │ │ ├── GenericListAdaptor.cs.meta │ │ │ │ ├── IReorderableListAdaptor.cs │ │ │ │ ├── IReorderableListAdaptor.cs.meta │ │ │ │ ├── IReorderableListDropTarget.cs │ │ │ │ ├── IReorderableListDropTarget.cs.meta │ │ │ │ ├── ReorderableListControl.cs │ │ │ │ ├── ReorderableListControl.cs.meta │ │ │ │ ├── ReorderableListEvents.cs │ │ │ │ ├── ReorderableListEvents.cs.meta │ │ │ │ ├── ReorderableListGUI.cs │ │ │ │ ├── ReorderableListGUI.cs.meta │ │ │ │ ├── ReorderableListPropertyDrawer.cs │ │ │ │ ├── ReorderableListPropertyDrawer.cs.meta │ │ │ │ ├── ReorderableListStyles.cs │ │ │ │ ├── ReorderableListStyles.cs.meta │ │ │ │ ├── SerializedPropertyAdaptor.cs │ │ │ │ ├── SerializedPropertyAdaptor.cs.meta │ │ │ │ ├── SerializedPropertyWithDropTargetAdaptor.cs │ │ │ │ └── SerializedPropertyWithDropTargetAdaptor.cs.meta │ │ │ ├── Skin.meta │ │ │ ├── Skin │ │ │ │ ├── ReorderableListStyles.asset │ │ │ │ ├── ReorderableListStyles.asset.meta │ │ │ │ ├── Source.meta │ │ │ │ ├── Source │ │ │ │ │ ├── dark_skin.psd │ │ │ │ │ ├── dark_skin.psd.meta │ │ │ │ │ ├── light_skin.psd │ │ │ │ │ └── light_skin.psd.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── Button2_Active.png │ │ │ │ │ ├── Button2_Active.png.meta │ │ │ │ │ ├── Button2_Active_Light.png │ │ │ │ │ ├── Button2_Active_Light.png.meta │ │ │ │ │ ├── Button2_Normal.png │ │ │ │ │ ├── Button2_Normal.png.meta │ │ │ │ │ ├── Button2_Normal_Light.png │ │ │ │ │ ├── Button2_Normal_Light.png.meta │ │ │ │ │ ├── Button_Active.png │ │ │ │ │ ├── Button_Active.png.meta │ │ │ │ │ ├── Button_Active_Light.png │ │ │ │ │ ├── Button_Active_Light.png.meta │ │ │ │ │ ├── Button_Normal.png │ │ │ │ │ ├── Button_Normal.png.meta │ │ │ │ │ ├── Button_Normal_Light.png │ │ │ │ │ ├── Button_Normal_Light.png.meta │ │ │ │ │ ├── Container2Background.png │ │ │ │ │ ├── Container2Background.png.meta │ │ │ │ │ ├── Container2Background_Light.png │ │ │ │ │ ├── Container2Background_Light.png.meta │ │ │ │ │ ├── ContainerBackground.png │ │ │ │ │ ├── ContainerBackground.png.meta │ │ │ │ │ ├── ContainerBackground_Light.png │ │ │ │ │ ├── ContainerBackground_Light.png.meta │ │ │ │ │ ├── GrabHandle.png │ │ │ │ │ ├── GrabHandle.png.meta │ │ │ │ │ ├── GrabHandle_Light.png │ │ │ │ │ ├── GrabHandle_Light.png.meta │ │ │ │ │ ├── Icon_AddMenu_Active.png │ │ │ │ │ ├── Icon_AddMenu_Active.png.meta │ │ │ │ │ ├── Icon_AddMenu_Active_Light.png │ │ │ │ │ ├── Icon_AddMenu_Active_Light.png.meta │ │ │ │ │ ├── Icon_AddMenu_Normal.png │ │ │ │ │ ├── Icon_AddMenu_Normal.png.meta │ │ │ │ │ ├── Icon_AddMenu_Normal_Light.png │ │ │ │ │ ├── Icon_AddMenu_Normal_Light.png.meta │ │ │ │ │ ├── Icon_Add_Active.png │ │ │ │ │ ├── Icon_Add_Active.png.meta │ │ │ │ │ ├── Icon_Add_Active_Light.png │ │ │ │ │ ├── Icon_Add_Active_Light.png.meta │ │ │ │ │ ├── Icon_Add_Normal.png │ │ │ │ │ ├── Icon_Add_Normal.png.meta │ │ │ │ │ ├── Icon_Add_Normal_Light.png │ │ │ │ │ ├── Icon_Add_Normal_Light.png.meta │ │ │ │ │ ├── Icon_Menu_Active.png │ │ │ │ │ ├── Icon_Menu_Active.png.meta │ │ │ │ │ ├── Icon_Menu_Active_Light.png │ │ │ │ │ ├── Icon_Menu_Active_Light.png.meta │ │ │ │ │ ├── Icon_Menu_Normal.png │ │ │ │ │ ├── Icon_Menu_Normal.png.meta │ │ │ │ │ ├── Icon_Menu_Normal_Light.png │ │ │ │ │ ├── Icon_Menu_Normal_Light.png.meta │ │ │ │ │ ├── Icon_Remove_Active.png │ │ │ │ │ ├── Icon_Remove_Active.png.meta │ │ │ │ │ ├── Icon_Remove_Active_Light.png │ │ │ │ │ ├── Icon_Remove_Active_Light.png.meta │ │ │ │ │ ├── Icon_Remove_Normal.png │ │ │ │ │ ├── Icon_Remove_Normal.png.meta │ │ │ │ │ ├── Icon_Remove_Normal_Light.png │ │ │ │ │ ├── Icon_Remove_Normal_Light.png.meta │ │ │ │ │ ├── ItemButton_Active.png │ │ │ │ │ ├── ItemButton_Active.png.meta │ │ │ │ │ ├── ItemButton_Active_Light.png │ │ │ │ │ ├── ItemButton_Active_Light.png.meta │ │ │ │ │ ├── SelectionBackground.png │ │ │ │ │ ├── SelectionBackground.png.meta │ │ │ │ │ ├── SelectionBackground_Light.png │ │ │ │ │ ├── SelectionBackground_Light.png.meta │ │ │ │ │ ├── TitleBackground.png │ │ │ │ │ ├── TitleBackground.png.meta │ │ │ │ │ ├── TitleBackground_Light.png │ │ │ │ │ └── TitleBackground_Light.png.meta │ │ │ ├── _assembly.asmdef │ │ │ └── _assembly.asmdef.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Source.meta │ │ ├── Source │ │ │ ├── Collections.meta │ │ │ ├── Collections │ │ │ │ ├── ReorderableListAttribute.cs │ │ │ │ ├── ReorderableListAttribute.cs.meta │ │ │ │ ├── ReorderableListFlags.cs │ │ │ │ └── ReorderableListFlags.cs.meta │ │ │ ├── _assembly.asmdef │ │ │ └── _assembly.asmdef.meta │ │ ├── package.json │ │ └── package.json.meta │ │ ├── unity3d-utils.meta │ │ └── unity3d-utils │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── Skin.meta │ │ ├── Skin │ │ │ ├── ExtraEditorStyles.asset │ │ │ ├── ExtraEditorStyles.asset.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── TrailingTipBackground.png │ │ │ │ ├── TrailingTipBackground.png.meta │ │ │ │ ├── TrailingTipBackground_Light.png │ │ │ │ ├── TrailingTipBackground_Light.png.meta │ │ │ │ ├── UnderlineBackground.png │ │ │ │ └── UnderlineBackground.png.meta │ │ ├── UnityEditorExtensions.meta │ │ ├── UnityEditorExtensions │ │ │ ├── AssetUtility.cs │ │ │ ├── AssetUtility.cs.meta │ │ │ ├── ControlContent.cs │ │ │ ├── ControlContent.cs.meta │ │ │ ├── EditorSingletonScriptableObject.cs │ │ │ ├── EditorSingletonScriptableObject.cs.meta │ │ │ ├── EditorSingletonUtility.cs │ │ │ ├── EditorSingletonUtility.cs.meta │ │ │ ├── ExtraEditorGUI.cs │ │ │ ├── ExtraEditorGUI.cs.meta │ │ │ ├── ExtraEditorStyles.cs │ │ │ ├── ExtraEditorStyles.cs.meta │ │ │ ├── IEditorSingleton.cs │ │ │ ├── IEditorSingleton.cs.meta │ │ │ ├── SerializedPropertyUtility.cs │ │ │ └── SerializedPropertyUtility.cs.meta │ │ ├── _assembly.asmdef │ │ └── _assembly.asmdef.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Source.meta │ │ ├── Source │ │ ├── DontDestroyOnLoad.cs │ │ ├── DontDestroyOnLoad.cs.meta │ │ ├── UnityExceptionUtility.cs │ │ ├── UnityExceptionUtility.cs.meta │ │ ├── _assembly.asmdef │ │ └── _assembly.asmdef.meta │ │ ├── package.json │ │ └── package.json.meta ├── QuickCode.meta └── QuickCode │ ├── Editor.meta │ ├── Editor │ ├── Images.meta │ ├── Images │ │ ├── icon.png │ │ └── icon.png.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── CodeConfig.cs │ │ ├── CodeConfig.cs.meta │ │ ├── GenerateCodeWindow.cs │ │ └── GenerateCodeWindow.cs.meta │ ├── Scripts.meta │ ├── Scripts │ ├── CSharp.meta │ ├── CSharp │ │ ├── CodePanel.cs │ │ └── CodePanel.cs.meta │ ├── Lua.meta │ └── Lua │ │ ├── CodePanel.lua │ │ ├── CodePanel.lua.meta │ │ ├── class.lua │ │ └── class.lua.meta │ ├── demo.unity │ └── demo.unity.meta ├── PSCepExtension └── .DS_Store └── 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 /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | # unity library 4 | psd2ugui/Library/ 5 | psd2ugui/Temp/ 6 | psd2ugui/Packages/ 7 | 8 | #vs proj 9 | *.csproj 10 | psd2ugui.sln 11 | psd2ugui.v12.suo 12 | *.userprefs 13 | *LuaProject 14 | /psd2ugui/.vs 15 | /psd2ugui/Assets/PSD2UGUI/PSD2UGUIConfig.asset 16 | /psd2ugui/Assets/PSD2UGUI/PSD2UGUIConfig.asset.meta 17 | -------------------------------------------------------------------------------- /psd2ugui/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/.DS_Store -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c9ed342aa2dae746af1be946bd7e3b9 3 | folderAsset: yes 4 | timeCreated: 1484187010 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff204ade668ab454ab0a5bb4f1a38c95 3 | folderAsset: yes 4 | timeCreated: 1506763552 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fe3c7039d896344483203a38a3f91b8 3 | folderAsset: yes 4 | timeCreated: 1504344634 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Editor/TabEditor.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using UnityEditor; 4 | using Quick.UI; 5 | using UnityEditor.UI; 6 | 7 | [CustomEditor(typeof(Tab), true)] 8 | [CanEditMultipleObjects] 9 | public class TabEditor : ToggleEditor 10 | { 11 | 12 | SerializedProperty m_PageProperty; 13 | 14 | void OnEnable() 15 | { 16 | base.OnEnable(); 17 | m_PageProperty = serializedObject.FindProperty("m_Page"); 18 | } 19 | 20 | public override void OnInspectorGUI() 21 | { 22 | base.OnInspectorGUI(); 23 | 24 | Tab tab = target as Tab; 25 | tab.page.IsOn = tab.isOn; 26 | 27 | EditorGUILayout.Space(); 28 | EditorGUILayout.PropertyField(m_PageProperty); 29 | 30 | string tag = EditorGUILayout.TextField("Tag", tab.tag); 31 | if (tab.tag != tag) 32 | { 33 | tab.tag = tag; 34 | } 35 | 36 | EditorGUILayout.Space(); 37 | 38 | serializedObject.Update(); 39 | serializedObject.ApplyModifiedProperties(); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Editor/TabEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f6c0fc231b618e43972a590ac019386 3 | timeCreated: 1504344691 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Image.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20619dad5f56c46409829e409ff04453 3 | folderAsset: yes 4 | timeCreated: 1506760981 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Image/tabSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/CustomTab/Image/tabSel.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Image/tabUnSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/CustomTab/Image/tabUnSel.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bfcb88abde7de34bab510cc51538b67 3 | folderAsset: yes 4 | timeCreated: 1506332092 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Prefab/Tab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/CustomTab/Prefab/Tab.prefab -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Prefab/Tab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a00f2b0cd5b1c6145af971e1a2fcb776 3 | timeCreated: 1506676579 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Prefab/TabGroup.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/CustomTab/Prefab/TabGroup.prefab -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Prefab/TabGroup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19f5dc11d8f47fd4da1d8510a8c86dd8 3 | timeCreated: 1506760887 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/README.md: -------------------------------------------------------------------------------- 1 | ## 自定义页签组件 2 | 具体使用见 https://github.com/zs9024/quick_tab 3 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1919e56415eed824ab8cd7371e005944 3 | timeCreated: 1507630455 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 725d36a14f6585a4caf95664abcd05dc 3 | folderAsset: yes 4 | timeCreated: 1506760318 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Scripts/Page.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | using UnityEngine.UI; 4 | using UnityEngine.EventSystems; 5 | 6 | namespace Quick.UI 7 | { 8 | [AddComponentMenu("UI/Page")] 9 | [System.Serializable] 10 | public class Page : UIBehaviour 11 | { 12 | // 摘要: 13 | // Is the Page on. 14 | private bool isOn; 15 | public bool IsOn 16 | { 17 | get{return isOn;} 18 | set 19 | { 20 | isOn = value; 21 | gameObject.SetActive(isOn); 22 | } 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Scripts/Page.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c7136b95dadfdb41b18dc3b363f3720 3 | timeCreated: 1504339291 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Scripts/Tab.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db3e1ff479134e94793ac2f9861fc485 3 | timeCreated: 1504339281 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Scripts/TabGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 950700f169787624cb65ea26fa003f07 3 | timeCreated: 1504339588 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/Scripts/TabTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2065409d4a8db44eb4bd96fb774b936 3 | timeCreated: 1504338314 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/tab.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/CustomTab/tab.unity -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/CustomTab/tab.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d14729a7ee31d0d4ba2ebdde76678145 3 | timeCreated: 1506331604 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff197d3006a211540b474e7c5b219f65 3 | folderAsset: yes 4 | timeCreated: 1484192848 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Doc/unity读取XML数据生成预设规则.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Doc/unity读取XML数据生成预设规则.doc -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Doc/unity读取XML数据生成预设规则.doc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4596d1816e9fa3e4ab7203eb5d39af0d 3 | timeCreated: 1484638882 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Doc/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Doc/version.txt -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Doc/version.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44b8e0c4494fd1e47a4cbb503392f080 3 | timeCreated: 1484275479 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Doc/使用说明及UI命名规则.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Doc/使用说明及UI命名规则.docx -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Doc/使用说明及UI命名规则.docx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0de6096a71760b04fb2b2996752357f6 3 | timeCreated: 1484192848 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d133ed2f8da01544faaa533b074a6ce0 3 | folderAsset: yes 4 | timeCreated: 1478827254 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Const.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7ad3a9b419ab954f9a71b6523eff979 3 | folderAsset: yes 4 | timeCreated: 1478826124 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Const/PSD2UGUIConfig.cs: -------------------------------------------------------------------------------- 1 | using PSDUIImporter; 2 | using UnityEngine; 3 | 4 | [CreateAssetMenu(fileName = "PSD2UGUIConfig", menuName = "Creat PSD2UGUIConfig Asset")] 5 | public class PSD2UGUIConfig : ScriptableObject 6 | { 7 | [Header("通用配置路径")] 8 | public string m_configAssetPath = PSDImporterConst.__CONFIG_PATH; 9 | 10 | [Header("通用图集路径")] 11 | public string m_commonAtlasPath = PSDImporterConst.Globle_BASE_FOLDER; 12 | 13 | [Space(10)] 14 | [Header("图集名")] 15 | public string m_commonAtlasName = PSDImporterConst.Globle_FOLDER_NAME; 16 | 17 | [Header("字体资源路径")] 18 | public string m_fontPath = PSDImporterConst.FONT_FOLDER; 19 | 20 | [Header("静态字体资源路径")] 21 | public string m_staticFontPath = PSDImporterConst.FONT_STATIC_FOLDER; 22 | 23 | [Header("资源模板加载路径")] 24 | public string m_psduiTemplatePath = PSDImporterConst.PSDUI_PATH; 25 | } -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Const/PSD2UGUIConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe765dcf892709b4b9967b2544378ac7 3 | timeCreated: 1536053174 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Const/PSD2UGUISettingWizard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0366bffdcd8e32a48a18703de803310e 3 | timeCreated: 1536113487 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Const/PSDImporterConst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2361049c1c17f46e0ae4fd7fac51b6a8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7be1f86b28835d04aaab142bc3a0a610 3 | folderAsset: yes 4 | timeCreated: 1479091812 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Core/PSDImportCtrl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ad95c2c509fc48459d0661d0fbf9336 3 | timeCreated: 1478845085 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Core/PSDImportMenu.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEditor; 3 | using UnityEngine; 4 | 5 | namespace PSDUIImporter 6 | { 7 | //------------------------------------------------------------------------------ 8 | // class definition 9 | //------------------------------------------------------------------------------ 10 | public class PSDImportMenu : Editor 11 | { 12 | [MenuItem("QuickTool/PSDImport ...", false, 1)] 13 | static public void ImportPSD() 14 | { 15 | string inputFile = EditorUtility.OpenFilePanel("Choose PSDUI File to Import", Application.dataPath, "xml"); 16 | 17 | if (!string.IsNullOrEmpty(inputFile) && 18 | inputFile.StartsWith(Application.dataPath)) 19 | { 20 | PSDImporterConst.LoadConfig(); //重载wizard配置 21 | 22 | PSDImportCtrl import = new PSDUIImporter.PSDImportCtrl(inputFile); 23 | import.BeginDrawUILayers(); 24 | import.BeginSetUIParents(); 25 | } 26 | 27 | GC.Collect(); 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Core/PSDImportMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2a2d9b181de45540b7542840a0ddf6e 3 | timeCreated: 1478843516 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Core/PSDImportUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e7148f00bdc30f48a4437d9be51886d 3 | timeCreated: 1478843267 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a15e9ab1a4d33c4ab71e5993c42e91c 3 | folderAsset: yes 4 | timeCreated: 1478825293 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/Image.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | namespace PSDUIImporter 4 | { 5 | public class PSImage 6 | { 7 | public ImageType imageType; 8 | public ImageSource imageSource; 9 | public string name; 10 | public Position position; 11 | public Size size; 12 | 13 | public string[] arguments; 14 | 15 | public string CustomImageName 16 | { 17 | get 18 | { 19 | return customFolder != "" ? customFolder + "/" + name : name; 20 | } 21 | } 22 | 23 | /// 24 | /// 图层透明度 25 | /// 26 | public float opacity = -1; 27 | 28 | /// 29 | /// 渐变,这个需要自己写脚本支持,这里只是提供接口 30 | /// 31 | public string gradient = ""; 32 | 33 | /// 34 | /// 描边 35 | /// 36 | public string outline = ""; 37 | 38 | /// 39 | /// 指定目录,相对xml的路径 40 | /// 41 | public string customFolder = ""; 42 | } 43 | } -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/Image.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14789b8ca1d156648bd9fe7517c31dc6 3 | timeCreated: 1478825616 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/Layer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.Events; 4 | using System.Collections; 5 | using System.Collections.Generic; 6 | 7 | namespace PSDUIImporter 8 | { 9 | public class Layer 10 | { 11 | public string name; 12 | public LayerType type; 13 | public Layer[] layers; 14 | public string[] arguments; 15 | //public PSImage[] images; 16 | public PSImage image; 17 | public Size size; 18 | public Position position; 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/Layer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61b590b44beade947bb2e39fb663c3ff 3 | timeCreated: 1478825408 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/PSDUI.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | 8 | namespace PSDUIImporter 9 | { 10 | public class PSDUI 11 | { 12 | public Size psdSize; 13 | public Layer[] layers; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/PSDUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a01e67100d0c1c149ace0b2f2d641874 3 | timeCreated: 1478825844 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/Position.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | namespace PSDUIImporter 8 | { 9 | public class Position 10 | { 11 | public float x; 12 | public float y; 13 | } 14 | } -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/Position.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 748459ad37bc6064cace0d208d7e6a14 3 | timeCreated: 1478825966 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/Size.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | namespace PSDUIImporter 8 | { 9 | public class Size 10 | { 11 | public float width; 12 | public float height; 13 | } 14 | } -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Data/Size.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 475e79c444641ce4c948570eccbb8a7e 3 | timeCreated: 1478825947 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e18df75f59f8bd347992ad8b532ca0a8 3 | folderAsset: yes 4 | timeCreated: 1486174641 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Effects/MirrorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f38fce6b2a9a7a4cba217bee3a8ec37 3 | timeCreated: 1486174738 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Enum.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91a845b7f20e75142b973b2cab83e528 3 | folderAsset: yes 4 | timeCreated: 1478826118 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Enum/ImageSource.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | namespace PSDUIImporter 8 | { 9 | public enum ImageSource 10 | { 11 | Common, 12 | Custom, 13 | Global, 14 | 15 | /// 16 | /// 自定义图集 17 | /// 18 | CustomAtlas, 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Enum/ImageSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09e892510b9e11c40b8796141336cf46 3 | timeCreated: 1478825711 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Enum/ImageType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | 8 | namespace PSDUIImporter 9 | { 10 | public enum ImageType 11 | { 12 | Image, 13 | Texture, 14 | Label, 15 | SliceImage, 16 | LeftHalfImage, 17 | BottomHalfImage, 18 | QuarterImage, 19 | } 20 | } -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Enum/ImageType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d9e50b5e575f3f4da7f4249426d3321 3 | timeCreated: 1478825763 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Enum/LayerType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | 8 | namespace PSDUIImporter 9 | { 10 | public enum LayerType 11 | { 12 | Panel, 13 | Normal, 14 | ScrollView, 15 | Grid, 16 | Button, 17 | Lable, 18 | Toggle, 19 | Slider, 20 | Group, 21 | InputField, 22 | ScrollBar, 23 | LayoutElement, 24 | TabGroup, 25 | } 26 | } -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Enum/LayerType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41142419e48957744bf4b44b9d1c06aa 3 | timeCreated: 1478825583 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/ImageImports.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74380596d48513a488b90e8ddd8836f1 3 | folderAsset: yes 4 | timeCreated: 1478845021 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/ImageImports/HalfSpriteImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33f72c9ad0af98f489432a3b2edafa0b 3 | timeCreated: 1484103566 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/ImageImports/SliceSpriteImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7e7145c125548944bcb482a5f88eefc 3 | timeCreated: 1478847268 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/ImageImports/SpriteImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9df3e026e17e904e93a396386b100de 3 | timeCreated: 1478843833 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/ImageImports/TextImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30956e66724a95f44a5254fc6e67685f 3 | timeCreated: 1478843796 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/ImageImports/TextureImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55243d337e5401d4a9ba6237dafc6ca2 3 | timeCreated: 1478843841 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Interface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70a16ed2643234b468b677c4ff6e5c0c 3 | folderAsset: yes 4 | timeCreated: 1478843166 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Interface/IImageImport.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | 8 | 9 | namespace PSDUIImporter 10 | { 11 | public interface IImageImport 12 | { 13 | void DrawImage(PSImage image, GameObject parent, GameObject ownObj = null); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Interface/IImageImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f7cbd8a0291a0740aa4d2731c245e7b 3 | timeCreated: 1478843149 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Interface/ILayerImport.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | 8 | 9 | namespace PSDUIImporter 10 | { 11 | public interface ILayerImport 12 | { 13 | void DrawLayer(Layer layer, GameObject parent); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/Interface/ILayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cccecbaec608ee4eb8402e243793bff 3 | timeCreated: 1478843159 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2853b5233eee4e041a77980fbf545788 3 | folderAsset: yes 4 | timeCreated: 1478845046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/ButtonLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e93f1d08e65133148972f2a1860dfffd 3 | timeCreated: 1478843854 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/DefultLayerImport.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | 8 | namespace PSDUIImporter 9 | { 10 | public class DefultLayerImport : ILayerImport 11 | { 12 | PSDImportCtrl ctrl; 13 | public DefultLayerImport(PSDImportCtrl ctrl) 14 | { 15 | this.ctrl = ctrl; 16 | } 17 | public void DrawLayer(Layer layer, GameObject parent) 18 | { 19 | RectTransform obj = PSDImportUtility.LoadAndInstant(PSDImporterConst.ASSET_PATH_EMPTY, layer.name, parent); 20 | obj.offsetMin = Vector2.zero; 21 | obj.offsetMax = Vector2.zero; 22 | obj.anchorMin = Vector2.zero; 23 | obj.anchorMax = Vector2.one; 24 | 25 | RectTransform rectTransform = parent.GetComponent(); 26 | obj.sizeDelta = rectTransform.sizeDelta; 27 | obj.anchoredPosition = rectTransform.anchoredPosition; 28 | 29 | if (layer.image != null) 30 | { 31 | PSImage image = layer.image; 32 | //ctrl.DrawImage(image, obj.gameObject); 33 | ctrl.DrawImage(image,parent, obj.gameObject); 34 | } 35 | 36 | ctrl.DrawLayers(layer.layers, obj.gameObject); 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/DefultLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc3cbfefdd8d3d6449af4d4c4632745a 3 | timeCreated: 1478846666 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/DropDownLayerImport.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using UnityEngine.Events; 5 | using System.Collections; 6 | using System.Collections.Generic; 7 | 8 | namespace PSDUIImporter 9 | { 10 | public class DropDownLayerImport : ILayerImport 11 | { 12 | PSDImportCtrl ctrl; 13 | public DropDownLayerImport(PSDImportCtrl ctrl) 14 | { 15 | this.ctrl = ctrl; 16 | } 17 | public void DrawLayer(Layer layer, GameObject parent) 18 | { 19 | throw new NotImplementedException(); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/DropDownLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 301ba37bb5ea7a84f9b6991aa924c818 3 | timeCreated: 1478846440 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/GridLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ea435b6610587d46b46ead2ad1c2246 3 | timeCreated: 1478846629 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/GroupLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a8f54787a6ee6743bd77844d5a7deef 3 | timeCreated: 1478852430 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/InputFieldLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad317b052ccb81146a4b34688b6b1006 3 | timeCreated: 1478855612 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/LayoutElementLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d2536e1b49773c4aae68a01443fc97c 3 | timeCreated: 1484551655 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/PanelLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c17117d4c907f34c8fa8b1a5ca3beed 3 | timeCreated: 1478846287 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/ScrollBarLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe23793912ae8a84ea0410425001b185 3 | timeCreated: 1478846410 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/ScrollViewLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a09716bb0cfa1244fad68cad325cb686 3 | timeCreated: 1478846362 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/SliderLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da09ea19ec2225d4e9c196f80a460c63 3 | timeCreated: 1478846312 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/TabGroupLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f971baca9ed5cf4c871425053687789 3 | timeCreated: 1507547383 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Editor/LayerImport/ToggleLayerImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bb33cb09345fea43b2fc6d175a88a4d 3 | timeCreated: 1478843864 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c94ee146760c26148966c68256cac8e0 3 | folderAsset: yes 4 | timeCreated: 1494918440 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Effects/Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 277e80768a15caa46be2c67982a993aa 3 | folderAsset: yes 4 | timeCreated: 1494918526 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Effects/Collections/ListPool.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | 4 | namespace UGUI.Collections 5 | { 6 | internal static class ListPool 7 | { 8 | private static readonly Pool> _listPool = new Pool>(null, l => l.Clear()); 9 | 10 | public static List Get() 11 | { 12 | return _listPool.Get(); 13 | } 14 | 15 | public static void Recycle(List element) 16 | { 17 | _listPool.Recycle(element); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Effects/Collections/ListPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e45925eea4a843246be53091a0caaaea 3 | timeCreated: 1487670266 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Effects/Collections/Pool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bf865b41b11e2146ae2b0bf6a0f8596 3 | timeCreated: 1487670263 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Effects/Mirror.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 645d624fb0bb6a342ae3b4cbe052b595 3 | timeCreated: 1484798005 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Font.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a90321bc43f033142836cca7e98d3e70 3 | folderAsset: yes 4 | timeCreated: 1486364804 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Font/MicrosoftYaHei-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Font/MicrosoftYaHei-Bold.ttf -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Font/MicrosoftYaHei-Bold.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e385d59b2173604b8f35878f2698ac6 3 | timeCreated: 1486364843 4 | licenseType: Pro 5 | TrueTypeFontImporter: 6 | serializedVersion: 2 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 1 10 | characterPadding: 0 11 | includeFontData: 1 12 | use2xBehaviour: 0 13 | fontNames: [] 14 | fallbackFontReferences: [] 15 | customCharacters: 16 | fontRenderingMode: 0 17 | userData: 18 | assetBundleName: 19 | assetBundleVariant: 20 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Font/StaticFont.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cafa7ea612dfbb34997eeaf7282ddc69 3 | folderAsset: yes 4 | timeCreated: 1486364852 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Font/StaticFont/MicrosoftYaHei-Bold_Static.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Font/StaticFont/MicrosoftYaHei-Bold_Static.ttf -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Font/StaticFont/MicrosoftYaHei-Bold_Static.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cee776ef102ed9349ac1de13337425d8 3 | timeCreated: 1482409454 4 | licenseType: Pro 5 | TrueTypeFontImporter: 6 | serializedVersion: 2 7 | fontSize: 32 8 | forceTextureCase: 3 9 | characterSpacing: 1 10 | characterPadding: 0 11 | includeFontData: 1 12 | use2xBehaviour: 0 13 | fontNames: [] 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: 3e385d59b2173604b8f35878f2698ac6, type: 3} 16 | customCharacters: "0123456789zxcvbnm,./asdfghjkl;'\\qwertyuiopABCDEFGHIJKLMNOPQRSTUVWXYZ\u5546\u5E97[]?:\"|}{!@#$%^&*()-_=+\uFF0C\u3002\u3001\uFF1B\u2018\u3010\u3011\u89C2\u770B\u300A\u300B\uFF1F\u4E13\u5C5E\u5361\u724C\uFF1A\u201C\u2014\uFF01\uFFE5\u2026\uFF08\uFF09\u786E\u5B9A\u53D6\u6D88\u516C\u4F1A\u5BF9\u6218\u7ADE\u6280\u573A\u957F\u6B21\u8001\u90E8\u843D\u81EA\u7531\u4E4B\u6682\u65E0\u8BB0\u5F55\u672A\u53C2\u52A0\u6392\u4F4D\u8D5B\u73A9\u5BB6\u7B49\u7EA7\u51FA\u7EC4\u5E73\u5747\u82B1\u8D39\u5723\u6C34\u5347\u804C\u964D\u8E22\u79D2\u9884\u8BA1\u65F6\u95F4\u8054\u76DF\u5C0F\u5206\u524D\u641C\u7D22\u663E\u793A\u6D4F\u89C8\u521B\u5EFA\u590F\u5A03\u7A00\u6709\u5EA6\u7C7B\u578B\u666E\u901A\u961F\u804A\u5929" 17 | fontRenderingMode: 0 18 | userData: 19 | assetBundleName: 20 | assetBundleVariant: 21 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/JSCode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f847f4378a01f455bb2b82dfa03f1d8c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/JSCode/Export PSDUI.jsx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d288650cafb9b248b1f9bd0854bad25 3 | timeCreated: 1484187089 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/JSCode/ReadMe.txt: -------------------------------------------------------------------------------- 1 | Place "Export PSDUI.jsx" in the sub-directory Presets/Scripts inside the Photoshop application installation directory. -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/JSCode/ReadMe.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ae7ab0db33a34c67827e81fbf3d95f4 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1939d41eedd946c4c99724a4481ad81f 3 | folderAsset: yes 4 | timeCreated: 1484187297 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/9slice.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48ffdb328e59be245bd26437ebee7fb5 3 | folderAsset: yes 4 | timeCreated: 1484900915 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/9slice/9slice.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/9slice/9slice.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/9slice/9slice.psd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edf225f872426df48b985c871edd20b6 3 | timeCreated: 1484991372 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: -1 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/9slice/9slice.xml: -------------------------------------------------------------------------------- 1 | 2 | 12422208 3 | NormalSlicePanel 4 | NormalMask_1 5 | Mask_1 6 | Custom 7 | SliceImage 8 | 0.499999999999890124122082222 9 | NormalTopInfo 10 | NormalTopInfoBg_2 11 | TopInfoBg_2 12 | Custom 13 | SliceImage 14 | 0.499999999999661056.5119595300300 15 | 16 | 17 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/9slice/9slice.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d8778d9f9ff4514fb013bfbe5b34b85 3 | timeCreated: 1485052785 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/9slice/Mask_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/9slice/Mask_1.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/9slice/Mask_1.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28a87d009f477e0409ac647826a45433 3 | timeCreated: 1485052785 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 2, y: 2, z: 2, w: 2} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 9slice 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/9slice/TopInfoBg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/9slice/TopInfoBg_2.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1a479a7107bd124cbaa263be99e7238 3 | folderAsset: yes 4 | timeCreated: 1484969727 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/ButtonTemp.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/button/ButtonTemp.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/ButtonTemp.psd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c37707bf21472f46a7e1425a1ac5237 3 | timeCreated: 1497414185 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: -1 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/Close_Disabled_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/button/Close_Disabled_3.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/Close_HighLighted_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/button/Close_HighLighted_4.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/Close_Normal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/button/Close_Normal_2.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/Close_Pressed_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/button/Close_Pressed_5.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/GreenBg_Normal_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/button/GreenBg_Normal_7.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/YelBg_Normal_LeftHalf_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/button/YelBg_Normal_LeftHalf_8.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/button/background_1.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/button/button.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cba6172fa15fac24e89ff0c174852e9a 3 | timeCreated: 1497414185 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87455a1b340dac649971c112f15c50a2 3 | folderAsset: yes 4 | timeCreated: 1485072852 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/background2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/background2_2.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/backgroundBorder2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/backgroundBorder2_3.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/backgroundBorder_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/backgroundBorder_4.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/background_1.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/grid.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/grid.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/grid.psd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e36692b34225cc34d9167b6eaa59f4cf 3 | timeCreated: 1485072855 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: -1 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/grid.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9b42c0f4cc99c94b910b154c08eb5a1 3 | timeCreated: 1517371633 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/heroHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/heroHead.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/heroHead.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d3e8009ee0e98148961672c0baf0b34 3 | timeCreated: 1517371630 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: grid 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/leftTopBackground_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/leftTopBackground_14.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/normal_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/normal_11.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/normal_11.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 079c6281a0498ff43aa9059a2b49de4a 3 | timeCreated: 1517371629 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: grid 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/rewardProp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/rewardProp.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/rewardProp.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01e2e3b798527d4498b8eee9683b8c87 3 | timeCreated: 1517371629 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: grid 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground1_6.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground2_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground2_7.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground3_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground3_8.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground5_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground5_9.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/rightBackground_5.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/rightbackground4_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/rightbackground4_10.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/topLeftBackground2_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/topLeftBackground2_13.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/grid/topLeftBackground_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/grid/topLeftBackground_12.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/halftest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8899efc2eb188944e8d98487d2628d8e 3 | folderAsset: yes 4 | timeCreated: 1484189521 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/halftest/halftest.xml: -------------------------------------------------------------------------------- 1 | 2 | 12422208 3 | NormalHalfPanel 4 | Normalhouse_LeftHalf_1 5 | house_LeftHalf_1 6 | Custom 7 | LeftHalfImage 8 | -330.5-272317304 9 | 10 | Normalhouse_BottomHalf_2 11 | house_BottomHalf_2 12 | Custom 13 | BottomHalfImage 14 | 370.5678181158 15 | 16 | Normalplus_Quarter_3 17 | plus_Quarter_3 18 | Custom 19 | QuarterImage 20 | 1.13686837721616e-13-2220220 21 | 22 | 23 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/halftest/halftest.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8484309ffe34e5d478feaea93b4afe46 3 | timeCreated: 1497358162 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/halftest/haltest.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/halftest/haltest.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/halftest/haltest.psd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 843e59cc85061c941a5fd30d2d9f38ea 3 | timeCreated: 1497358162 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: -1 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/halftest/house_BottomHalf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/halftest/house_BottomHalf_2.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/halftest/house_LeftHalf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/halftest/house_LeftHalf_1.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/halftest/plus_Quarter_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/halftest/plus_Quarter_3.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcb46326549c4d943a766bf8f0633a29 3 | folderAsset: yes 4 | timeCreated: 1484815275 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/BattlePreparePanel.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/BattlePreparePanel.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/background2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/background2_2.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/backgroundBorder2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/backgroundBorder2_3.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/backgroundBorder_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/backgroundBorder_4.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/background_1.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/heroHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/heroHead.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/leftTopBackground_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/leftTopBackground_14.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/normal_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/normal_11.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rewardProp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rewardProp.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground1_6.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground2_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground2_7.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground3_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground3_8.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground5_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground5_9.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightBackground_5.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightbackground4_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/rightbackground4_10.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/scrollpanel.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19d14d7b9e0ef6640a134a083ecaf950 3 | timeCreated: 1508150285 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/topLeftBackground2_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/topLeftBackground2_13.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/topLeftBackground_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/scrollpanel/topLeftBackground_12.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9467f0c0088bd9e44a6977f59cb08b68 3 | folderAsset: yes 4 | timeCreated: 1485142901 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/Background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/slider/Background_1.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/Bg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/slider/Bg_2.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/Bg_2.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44a89d03bda65e74b84955455fe6dc17 3 | timeCreated: 1485145602 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: slider 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/Fill_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/slider/Fill_3.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/Fill_3.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efffdd635a1d3954ba781760654adeea 3 | timeCreated: 1485145603 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 2, y: 2, z: 2, w: 2} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: slider 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/Handle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/slider/Handle_4.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/_Bg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/slider/_Bg_2.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/_Bg_2.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6a1cc9314df407438296d2b67e75cd4 3 | timeCreated: 1485165845 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: slider 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/_Fill_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/slider/_Fill_3.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/_Fill_3.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c944c91c7e4c4e641bb1d2891ffb80bf 3 | timeCreated: 1485165845 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 2, y: 2, z: 2, w: 2} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: slider 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/_Handle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/slider/_Handle_4.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/slider.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/slider/slider.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/slider.psd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53f539e6650835b4bb290ca19955826e 3 | timeCreated: 1485142902 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: -1 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/slider/slider.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3544fc43ac0433542ab36757fbd615bf 3 | timeCreated: 1485145603 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/tab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb43d0f846b0373419f2d7f8309c6e53 3 | folderAsset: yes 4 | timeCreated: 1507544981 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/tab/BG1_TabSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/tab/BG1_TabSel.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/tab/BG2_TabUnSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/tab/BG2_TabUnSel.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/tab/BG_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/tab/BG_2.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/tab/BG_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/tab/BG_4.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/tab/BG_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/tab/BG_6.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/tab/tab.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae6ffca19303be24295330680f49e6d7 3 | timeCreated: 1507620925 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/tab/tabtest.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/tab/tabtest.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/tab/tabtest.psd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28fb96dc7967c6a4ea840a6bfe5e7c8a 3 | timeCreated: 1507620924 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: -1 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/texttest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b3371d8ad8876948a9779974c37a6b5 3 | folderAsset: yes 4 | timeCreated: 1484191487 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/texttest/TextTemp.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/texttest/TextTemp.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/texttest/background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/texttest/background_1.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/texttest/text5_ArtStatic_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/texttest/text5_ArtStatic_4.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/texttest/texttest.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c916ba0e2701a2147b0655cd347577b7 3 | timeCreated: 1484907685 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/toggle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ff9a921a17f809428f26da545796b0f 3 | folderAsset: yes 4 | timeCreated: 1507632202 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/toggle/BG_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/toggle/BG_1.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/toggle/Bg_Background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/toggle/Bg_Background_2.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/toggle/Finish_Checkmark_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/toggle/Finish_Checkmark_3.png -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/toggle/toggle.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51f13d8c4249a824696c88de4b3e7769 3 | timeCreated: 1507634174 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Samples/toggle/toggletest.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Samples/toggle/toggletest.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d7623480f5794080a71d899ebebdb0f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00823c0c0e01b4c2893832c0719fb290 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a94c0cbaca3a48468b0b1e51fefcbfb 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Canvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dec381fc4475a4a33bcfd41351b26fcc 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Empty.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1 &172186 4 | GameObject: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 100100000} 8 | serializedVersion: 4 9 | m_Component: 10 | - 224: {fileID: 22477726} 11 | m_Layer: 5 12 | m_Name: Empty 13 | m_TagString: Untagged 14 | m_Icon: {fileID: 0} 15 | m_NavMeshLayer: 0 16 | m_StaticEditorFlags: 0 17 | m_IsActive: 1 18 | --- !u!224 &22477726 19 | RectTransform: 20 | m_ObjectHideFlags: 1 21 | m_PrefabParentObject: {fileID: 0} 22 | m_PrefabInternal: {fileID: 100100000} 23 | m_GameObject: {fileID: 172186} 24 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 25 | m_LocalPosition: {x: 0, y: 0, z: 0} 26 | m_LocalScale: {x: 1, y: 1, z: 1} 27 | m_Children: [] 28 | m_Father: {fileID: 0} 29 | m_RootOrder: 0 30 | m_AnchorMin: {x: 0, y: 0} 31 | m_AnchorMax: {x: 1, y: 1} 32 | m_AnchoredPosition: {x: 0, y: 0} 33 | m_SizeDelta: {x: 0, y: 0} 34 | m_Pivot: {x: 0.5, y: 0.5} 35 | --- !u!1001 &100100000 36 | Prefab: 37 | m_ObjectHideFlags: 1 38 | serializedVersion: 2 39 | m_Modification: 40 | m_TransformParent: {fileID: 0} 41 | m_Modifications: [] 42 | m_RemovedComponents: [] 43 | m_ParentPrefab: {fileID: 0} 44 | m_RootGameObject: {fileID: 172186} 45 | m_IsPrefabParent: 1 46 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Empty.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a47d3ef1adf404641b6d23a93e59ee53 3 | timeCreated: 1478592103 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/EventSystem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9840a64b9fcf6a24ba3dd9a09659ffdf 3 | timeCreated: 1483590470 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Grid.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed417986c539a4fc7b09f220ff4ceef6 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/HalfImage.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1 &125284 4 | GameObject: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 100100000} 8 | serializedVersion: 4 9 | m_Component: 10 | - 224: {fileID: 22492154} 11 | m_Layer: 5 12 | m_Name: HalfImage 13 | m_TagString: Untagged 14 | m_Icon: {fileID: 0} 15 | m_NavMeshLayer: 0 16 | m_StaticEditorFlags: 0 17 | m_IsActive: 1 18 | --- !u!224 &22492154 19 | RectTransform: 20 | m_ObjectHideFlags: 1 21 | m_PrefabParentObject: {fileID: 0} 22 | m_PrefabInternal: {fileID: 100100000} 23 | m_GameObject: {fileID: 125284} 24 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 25 | m_LocalPosition: {x: 0, y: 0, z: 0} 26 | m_LocalScale: {x: 1, y: 1, z: 1} 27 | m_Children: [] 28 | m_Father: {fileID: 0} 29 | m_RootOrder: 0 30 | m_AnchorMin: {x: 0.5, y: 0.5} 31 | m_AnchorMax: {x: 0.5, y: 0.5} 32 | m_AnchoredPosition: {x: 0, y: 0} 33 | m_SizeDelta: {x: 100, y: 100} 34 | m_Pivot: {x: 0.5, y: 0.5} 35 | --- !u!1001 &100100000 36 | Prefab: 37 | m_ObjectHideFlags: 1 38 | serializedVersion: 2 39 | m_Modification: 40 | m_TransformParent: {fileID: 0} 41 | m_Modifications: [] 42 | m_RemovedComponents: [] 43 | m_ParentPrefab: {fileID: 0} 44 | m_RootGameObject: {fileID: 125284} 45 | m_IsPrefabParent: 1 46 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/HalfImage.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22818cd6c51f4e841b286296879c438e 3 | timeCreated: 1484120604 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/HorizontalGroup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dc3c5882f3c28540b6f7fdc2ca9ace0 3 | timeCreated: 1478851756 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Image.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d52d80f2b2a64fbe96cd04604170d32 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/InputField.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e48a2d5b2f2ccb439d0cf1eeba3e6dd 3 | timeCreated: 1478855404 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/LayoutElement.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b9acd72ac997b247899c2f11d294d1a 3 | timeCreated: 1484551749 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/RawImage.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c74a015002517d841b10635ffb1efba2 3 | timeCreated: 1483675535 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/ScrollView.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca7d801212b074407a4fc212216da328 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Scrollbar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b101ae8ff3e18e4eb5aca168965d85c 3 | timeCreated: 1478769099 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Slider.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95fdb08286306794583b6e1d19021aaa 3 | timeCreated: 1478841882 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Tab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Template/UI/Tab.prefab -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Tab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 941f0a5e086c51e4e9a5660918130062 3 | timeCreated: 1507545386 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/TabGroup.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Template/UI/TabGroup.prefab -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/TabGroup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55153ba8e62d3e547b2a962beb28f19e 3 | timeCreated: 1507621067 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Text.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f5f099613ddb4155b4c775d8db5984d 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Toggle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/PSD2UGUI/Template/UI/Toggle.prefab -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/Toggle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4c3d75106f0b944faa6f14731cec415 3 | timeCreated: 1478592997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/PSD2UGUI/Template/UI/VerticalGroup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25904f280417ef748977530a357b5fb0 3 | timeCreated: 1478851706 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe5779e33af314e478ffa2c4fee86f4d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0f50ae15348bcb4da60977ead007941 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e96714e779b734f4c8a4d73940e14fb5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b12d30f17f6a614087df7295ae2139c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013-2017 Rotorz Limited 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 821e956cc9b6da94fae7e84885529014 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils/README.md: -------------------------------------------------------------------------------- 1 | # dotnet-exception-utils 2 | 3 | Utility functionality for exceptions in .NET. 4 | 5 | ```sh 6 | $ yarn add rotorz/dotnet-exception-utils 7 | ``` 8 | 9 | This package is compatible with the [unity3d-package-syncer][tool] tool. Refer to the 10 | tools' [README][tool] for information on syncing packages into a Unity project. 11 | 12 | [tool]: https://github.com/rotorz/unity3d-package-syncer 13 | 14 | 15 | ## Contribution Agreement 16 | 17 | This project is licensed under the MIT license (see LICENSE). To be in the best 18 | position to enforce these licenses the copyright status of this project needs to 19 | be as simple as possible. To achieve this the following terms and conditions 20 | must be met: 21 | 22 | - All contributed content (including but not limited to source code, text, 23 | image, videos, bug reports, suggestions, ideas, etc.) must be the 24 | contributors own work. 25 | 26 | - The contributor disclaims all copyright and accepts that their contributed 27 | content will be released to the public domain. 28 | 29 | - The act of submitting a contribution indicates that the contributor agrees 30 | with this agreement. This includes (but is not limited to) pull requests, issues, 31 | tickets, e-mails, newsgroups, blogs, forums, etc. 32 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3367f7e30936aee48a1c1c2323960679 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7d8b99bbc29ed64f84690294c7dfc3f 3 | folderAsset: yes 4 | timeCreated: 1494534346 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils/Source/ExceptionUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 162bfa5664334a2488e916cd09729d79 3 | timeCreated: 1483670518 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils/Source/_assembly.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rotorz.dotnet-exception-utils" 3 | } 4 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils/Source/_assembly.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a420261d3de6414288ad92caa318801 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-exception-utils/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f2dd3f10f2687643b342d7ecfce1513 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5989c34c5721cd74b8d9d4edbfe3cb20 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016-2017 Rotorz Limited 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b3892a49d4daf64e9bf3808270d695c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/README.md: -------------------------------------------------------------------------------- 1 | # dotnet-type-utils 2 | 3 | Utility functionality for reflection and type discovery in .NET. 4 | 5 | ```sh 6 | $ yarn add rotorz/dotnet-type-utils 7 | ``` 8 | 9 | This package is compatible with the [unity3d-package-syncer][tool] tool. Refer to the 10 | tools' [README][tool] for information on syncing packages into a Unity project. 11 | 12 | [tool]: https://github.com/rotorz/unity3d-package-syncer 13 | 14 | 15 | ## Contribution Agreement 16 | 17 | This project is licensed under the MIT license (see LICENSE). To be in the best 18 | position to enforce these licenses the copyright status of this project needs to 19 | be as simple as possible. To achieve this the following terms and conditions 20 | must be met: 21 | 22 | - All contributed content (including but not limited to source code, text, 23 | image, videos, bug reports, suggestions, ideas, etc.) must be the 24 | contributors own work. 25 | 26 | - The contributor disclaims all copyright and accepts that their contributed 27 | content will be released to the public domain. 28 | 29 | - The act of submitting a contribution indicates that the contributor agrees 30 | with this agreement. This includes (but is not limited to) pull requests, issues, 31 | tickets, e-mails, newsgroups, blogs, forums, etc. 32 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcf0933079cf7db4fa3abd6d4bf4500a 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ffcab788f1e50f4cac6bfc758a90ecb 3 | folderAsset: yes 4 | timeCreated: 1494543959 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/Source/DependencyAttribute.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Rotorz Limited. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root. 3 | 4 | using System; 5 | 6 | namespace Rotorz.Games 7 | { 8 | /// 9 | /// Declares that the annotated class is dependent upon another class. 10 | /// 11 | [AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)] 12 | public sealed class DependencyAttribute : Attribute 13 | { 14 | /// 15 | /// Initializes a new instance of the class. 16 | /// 17 | /// Type that the annotated class is dependent upon. 18 | public DependencyAttribute(Type dependencyType) 19 | { 20 | this.DependencyType = dependencyType; 21 | } 22 | 23 | 24 | /// 25 | /// Gets the that the annotated class is dependent upon. 26 | /// 27 | public Type DependencyType { get; private set; } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/Source/DependencyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ed7255950a8c8b418203e93b78c8a90 3 | timeCreated: 1484664880 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/Source/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd3167c8ebab8d14b8904f1a999af50e 3 | folderAsset: yes 4 | timeCreated: 1487044722 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/Source/Reflection/TypeMeta.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c6f5e5023bd93c48bec20305afb90f2 3 | timeCreated: 1483574931 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/Source/_assembly.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rotorz.dotnet-type-utils" 3 | } 4 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/Source/_assembly.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4bc0a932ae719749bacfeb9ea7bea7b 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/dotnet-type-utils/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cf54fa1c0f43d64ab51902e5377ba2a 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ac8059b2c0b0b24d9d2196c98965258 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab2ce05f30975f94b8fd1f7e5698e8e1 3 | folderAsset: yes 4 | timeCreated: 1498840470 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c750dda6844d3140955b9876a607fe3 3 | timeCreated: 1499131236 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuCommandBinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f3fe14dcb073464c87353184ec95379 3 | timeCreated: 1499131236 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuCommandEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 781127b20ac35e8409fc3e35f3253346 3 | timeCreated: 1499131236 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d9cf34319d65eb49a5b9685e8ee73db 3 | timeCreated: 1499149384 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuInternalUtility.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Rotorz Limited. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root. 3 | 4 | using System; 5 | 6 | namespace Rotorz.Games.UnityEditorExtensions 7 | { 8 | /// 9 | internal static class EditorMenuInternalUtility 10 | { 11 | public static readonly Func AlwaysTruePredicate = () => true; 12 | public static readonly Func AlwaysFalsePredicate = () => false; 13 | 14 | 15 | public static void CheckPathArgument(string path, string argumentName) 16 | { 17 | if (path.StartsWith("/")) { 18 | throw new ArgumentException("Invalid menu path.", argumentName); 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuInternalUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56c51ceae99ce1d4d918fc89578284b4 3 | timeCreated: 1499176698 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuPresenterUtility.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Rotorz Limited. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root. 3 | 4 | using System; 5 | 6 | namespace Rotorz.Games.UnityEditorExtensions 7 | { 8 | /// 9 | /// Utility functions to help with usage. 10 | /// 11 | public static class EditorMenuPresenterUtility 12 | { 13 | /// 14 | /// Gets a default instance. 15 | /// 16 | /// 17 | /// Unless the end-user project has a settings file that overrides the 18 | /// default implementation; this will simply 19 | /// return an instance. 20 | /// 21 | /// 22 | /// A instance. 23 | /// 24 | /// 25 | public static IEditorMenuPresenter GetDefaultPresenterInstance() 26 | { 27 | return (IEditorMenuPresenter)Activator.CreateInstance(EditorMenuSettings.Instance.DefaultPresenterType); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuPresenterUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1abfe1c95f41a0741886f5a4754dfc4c 3 | timeCreated: 1499137498 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuPresenter_GenericMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e3d612c2e9f6024ea0de97731c1a387 3 | timeCreated: 1499131236 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuSeparatorBinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e11b305b6663a7440a2f0e6536f2da7f 3 | timeCreated: 1499131236 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuSeparatorEntry.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Rotorz Limited. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root. 3 | 4 | namespace Rotorz.Games.UnityEditorExtensions 5 | { 6 | /// 7 | /// An entry that describes a separator. 8 | /// 9 | public class EditorMenuSeparatorEntry : EditorMenuEntry 10 | { 11 | /// 12 | /// Initializes a new instance of the class. 13 | /// 14 | /// Path of the separator. 15 | /// 16 | /// If is null. 17 | /// 18 | /// 19 | /// If is an invalid full command path. 20 | /// 21 | public EditorMenuSeparatorEntry(string path) 22 | { 23 | ExceptionUtility.CheckArgumentNotNull(path, "path"); 24 | EditorMenuInternalUtility.CheckPathArgument(path, "path"); 25 | 26 | this.Path = path; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuSeparatorEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87d0e047c006d6e47b8f6d610beee6d1 3 | timeCreated: 1499131236 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/EditorMenuSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a6075af90352f34c893cc8c92b4ec60 3 | timeCreated: 1499155054 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/IEditorMenuEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4013033b12e28914fa3761c8c7481792 3 | timeCreated: 1499131235 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/IEditorMenuEntryParameter.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Rotorz Limited. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root. 3 | 4 | namespace Rotorz.Games.UnityEditorExtensions 5 | { 6 | /// 7 | /// The interface of a custom parameter. 8 | /// 9 | public interface IEditorMenuEntryParameter 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/IEditorMenuEntryParameter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 417ff7d17ca1c5043bf06a817e180b33 3 | timeCreated: 1499189102 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/IEditorMenuPresenter.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Rotorz Limited. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root. 3 | 4 | using UnityEngine; 5 | 6 | namespace Rotorz.Games.UnityEditorExtensions 7 | { 8 | /// 9 | /// The interface of an object that presents an data 10 | /// structure to the end-user. 11 | /// 12 | /// 13 | /// 14 | public interface IEditorMenuPresenter 15 | { 16 | /// 17 | /// Shows the as a context menu. 18 | /// 19 | /// The editor menu. 20 | void ShowAsContext(EditorMenu menu); 21 | 22 | /// 23 | /// Shows the as a drop-down from a GUI control. 24 | /// 25 | /// Absolute position of GUI drop-down control. 26 | /// The editor menu. 27 | void ShowAsDropdown(Rect position, EditorMenu menu); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/IEditorMenuPresenter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea20543eca4483743be9bd24364ce73f 3 | timeCreated: 1499131236 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/_assembly.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rotorz.unity3d-editor-menu.editor", 3 | "references": [ 4 | "rotorz.dotnet-exception-utils", 5 | "rotorz.unity3d-package-utils.editor" 6 | ], 7 | "optionalUnityReferences": [], 8 | "includePlatforms": [ 9 | "Editor" 10 | ], 11 | "excludePlatforms": [], 12 | "allowUnsafeCode": false 13 | } 14 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/Editor/_assembly.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5734e33e62533fa4cb5557c00cdba331 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014-2017 Rotorz Limited 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adfa7e506e677df429431cf77fc2012f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c20f598f2a14984bb9c7f2eda4f8cba 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-editor-menu/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b918acad2b16e1244ae6138dc39a5755 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-package-utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a46a70940c75114ba8071f7276e1065 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-package-utils/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2609ad07da44eb44695780b20e4d0c44 3 | folderAsset: yes 4 | timeCreated: 1497373384 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-package-utils/Editor/PackageUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c03117dbb8464fe4fb215c29bfc6eb2a 3 | timeCreated: 1497371558 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-package-utils/Editor/_assembly.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rotorz.unity3d-package-utils.editor", 3 | "optionalUnityReferences": [], 4 | "includePlatforms": [ 5 | "Editor" 6 | ], 7 | "excludePlatforms": [], 8 | "allowUnsafeCode": false 9 | } 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-package-utils/Editor/_assembly.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6ec05b6b839f0c43b42162d6d628618 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-package-utils/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016-2017 Rotorz Limited 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-package-utils/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08cf7eb1ee37fa04998c7900e1b42520 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-package-utils/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff183ad37bb13ff40a461014ac973309 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-package-utils/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63e5d62fcba6d924a921a391dcd751a1 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffc874a3f9e833942a427bd0ca716c43 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c5cca422c9f6c24a9923260bd1309e2 3 | folderAsset: yes 4 | timeCreated: 1487023990 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 922a0ed75a9861e45885847f1f98589d 3 | folderAsset: yes 4 | timeCreated: 1487026643 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ElementAdderMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05d5c8a17596c194a92bac654490770c 3 | folderAsset: yes 4 | timeCreated: 1487023990 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ElementAdderMenu/ElementAdderMenuCommandAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecf12d5ba57be65429579c92d0602481 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ElementAdderMenu/ElementAdderMenuCommandMeta.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdd994b0d6c10d7448ff6465030808f2 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ElementAdderMenu/ElementAdderMenuPopulator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee5c867e0b56a7747bd3df2afd646f1c 3 | timeCreated: 1487023992 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ElementAdderMenu/IElementAdder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e266cbd9f13722649b2229e751a82d22 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ElementAdderMenu/IElementAdderMenuCommand.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fb4e1935059bee459fced99947f0253 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/GenericListAdaptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbba913296c9aee4cb7c414f7f8d705f 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/IReorderableListAdaptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 805823c72540b5f42b0508ed21cd4444 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/IReorderableListDropTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d400e73fdbe2794984d928a2cc480a0 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ReorderableListControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef735e9a81bbbf54dbd63c13a3487169 3 | timeCreated: 1487023992 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ReorderableListEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f48dadfa381c794fbbf3f49f9bbf1c9 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ReorderableListGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e7cd36c1054dbb479bd838457419f45 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ReorderableListPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5c25ee766a4115439113d80fed1be98 3 | timeCreated: 1484356172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/ReorderableListStyles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18b235748fafbf04290c4ee3fc00dd6b 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/SerializedPropertyAdaptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62f4a6d191764dd44b732c74ae37f98f 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Collections/SerializedPropertyWithDropTargetAdaptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a47c582f838f0194d869d0deac8ce37b 3 | timeCreated: 1484373995 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6101c1ce6776bee4b8f93d2ddc084dc0 3 | folderAsset: yes 4 | timeCreated: 1487199530 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/ReorderableListStyles.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bcc63044298cc3459aad8dee411a4dd 3 | timeCreated: 1487199546 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f796042ec0bf7340a8ee140b27ecede 3 | folderAsset: yes 4 | timeCreated: 1487200250 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Source/dark_skin.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Source/dark_skin.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Source/light_skin.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Source/light_skin.psd -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3aa9d132bca8b44e859449f223c6921 3 | folderAsset: yes 4 | timeCreated: 1487200087 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button2_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button2_Active.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button2_Active_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button2_Active_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button2_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button2_Normal.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button2_Normal_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button2_Normal_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button_Active.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button_Active_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button_Active_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button_Normal.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button_Normal_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Button_Normal_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Container2Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Container2Background.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Container2Background_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Container2Background_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/ContainerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/ContainerBackground.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/ContainerBackground_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/ContainerBackground_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/GrabHandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/GrabHandle.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/GrabHandle_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/GrabHandle_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_AddMenu_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_AddMenu_Active.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_AddMenu_Active_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_AddMenu_Active_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_AddMenu_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_AddMenu_Normal.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_AddMenu_Normal_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_AddMenu_Normal_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Add_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Add_Active.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Add_Active_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Add_Active_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Add_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Add_Normal.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Add_Normal_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Add_Normal_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Menu_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Menu_Active.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Menu_Active_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Menu_Active_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Menu_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Menu_Normal.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Menu_Normal_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Menu_Normal_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Remove_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Remove_Active.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Remove_Active_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Remove_Active_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Remove_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Remove_Normal.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Remove_Normal_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/Icon_Remove_Normal_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/ItemButton_Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/ItemButton_Active.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/ItemButton_Active_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/ItemButton_Active_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/SelectionBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/SelectionBackground.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/SelectionBackground_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/SelectionBackground_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/TitleBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/TitleBackground.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/TitleBackground_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/Skin/Textures/TitleBackground_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/_assembly.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rotorz.unity3d-reorderable-list.editor", 3 | "references": [ 4 | "rotorz.unity3d-reorderable-list", 5 | "rotorz.dotnet-exception-utils", 6 | "rotorz.dotnet-type-utils", 7 | "rotorz.unity3d-editor-menu.editor", 8 | "rotorz.unity3d-utils.editor" 9 | ], 10 | "optionalUnityReferences": [], 11 | "includePlatforms": [ 12 | "Editor" 13 | ], 14 | "excludePlatforms": [], 15 | "allowUnsafeCode": false 16 | } 17 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Editor/_assembly.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b625c81c81a5f242b316c862b0a486c 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013-2017 Rotorz Limited 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 690ff3f017f5664448b803f3caa902e4 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd6c0242638ff954fbb69a4c1e8bbb5d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb3689ade60ae0940bdd5f20dc31f852 3 | folderAsset: yes 4 | timeCreated: 1487026167 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Source/Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58a0fbcc8ba1c814a86440c33cfa5c59 3 | folderAsset: yes 4 | timeCreated: 1487026205 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Source/Collections/ReorderableListAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4448b83811823c44fbb342ec93725e7a 3 | timeCreated: 1484356172 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Source/Collections/ReorderableListFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 853d66f672ca5aa448e70b92860e82d7 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Source/_assembly.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rotorz.unity3d-reorderable-list" 3 | } 4 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/Source/_assembly.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a5ebe34fd208874a9c501c300c1e63f 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-reorderable-list/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25256a9cab924f245a896c183872832b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f359f5275748acc45bfc64d6e16b2846 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 109cf8d5cc2d79b4aa9e8000457d6d37 3 | folderAsset: yes 4 | timeCreated: 1483574931 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/Skin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 694a951105f33da418e32667c2190275 3 | folderAsset: yes 4 | timeCreated: 1487390048 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/Skin/ExtraEditorStyles.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b2b1e4ebd65e0f4fa107d1dc5ca4132 3 | timeCreated: 1483733082 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/Skin/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ba86e455b0c42f47be1feca90133e6d 3 | folderAsset: yes 4 | timeCreated: 1487390232 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/Skin/Textures/TrailingTipBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/Skin/Textures/TrailingTipBackground.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/Skin/Textures/TrailingTipBackground_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/Skin/Textures/TrailingTipBackground_Light.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/Skin/Textures/UnderlineBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/Skin/Textures/UnderlineBackground.png -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b20d8b0ca8d084c4ea213f65bddd7458 3 | folderAsset: yes 4 | timeCreated: 1483670225 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions/AssetUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b1627b072dbd4842ac7cba60ae871e2 3 | timeCreated: 1483670225 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions/ControlContent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebe37e4cdc1491e4295673da6af85a27 3 | timeCreated: 1503365270 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions/EditorSingletonScriptableObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c91d5f06be6de548928a2bdf206aabf 3 | timeCreated: 1487198688 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions/EditorSingletonUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f511cf35a46bc84da0fd252a813b115 3 | timeCreated: 1487198688 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions/ExtraEditorGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b95d60e63861e924b92801be40bbf545 3 | timeCreated: 1483670225 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions/ExtraEditorStyles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 694e7ff2cc8d680419bad1683981a5de 3 | timeCreated: 1483670225 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions/IEditorSingleton.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Rotorz Limited. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root. 3 | 4 | namespace Rotorz.Games.UnityEditorExtensions 5 | { 6 | /// 7 | /// Interface of a Unity editor extension singleton. 8 | /// 9 | public interface IEditorSingleton 10 | { 11 | /// 12 | /// Gets a value indicating whether the singleton has already been initialized. 13 | /// 14 | bool HasInitialized { get; } 15 | 16 | 17 | /// 18 | /// Invoked to initialize the singleton. 19 | /// 20 | /// 21 | /// If the has already been initialized. 22 | /// 23 | void Initialize(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions/IEditorSingleton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90fc41b9b74ee26488e40eb564f8e2c0 3 | timeCreated: 1487198688 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/UnityEditorExtensions/SerializedPropertyUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cf2268642ccb6842ab11b851e41f5a7 3 | timeCreated: 1487023991 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/_assembly.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rotorz.unity3d-utils.editor", 3 | "references": [ 4 | "rotorz.unity3d-utils", 5 | "rotorz.dotnet-exception-utils" 6 | ], 7 | "optionalUnityReferences": [], 8 | "includePlatforms": [ 9 | "Editor" 10 | ], 11 | "excludePlatforms": [], 12 | "allowUnsafeCode": false 13 | } 14 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Editor/_assembly.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7924fa1e731ad6a43a51882a962b3b50 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013-2017 Rotorz Limited 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0494c68c7bbdefd439af67fa9c4a5e43 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/README.md: -------------------------------------------------------------------------------- 1 | # unity3d-utils 2 | 3 | Common utility functionality for Unity game projects. 4 | 5 | ```sh 6 | $ yarn add rotorz/unity3d-utils 7 | ``` 8 | 9 | This package is compatible with the [unity3d-package-syncer][tool] tool. Refer to the 10 | tools' [README][tool] for information on syncing packages into a Unity project. 11 | 12 | [tool]: https://github.com/rotorz/unity3d-package-syncer 13 | 14 | 15 | ## Contribution Agreement 16 | 17 | This project is licensed under the MIT license (see LICENSE). To be in the best 18 | position to enforce these licenses the copyright status of this project needs to 19 | be as simple as possible. To achieve this the following terms and conditions 20 | must be met: 21 | 22 | - All contributed content (including but not limited to source code, text, 23 | image, videos, bug reports, suggestions, ideas, etc.) must be the 24 | contributors own work. 25 | 26 | - The contributor disclaims all copyright and accepts that their contributed 27 | content will be released to the public domain. 28 | 29 | - The act of submitting a contribution indicates that the contributor agrees 30 | with this agreement. This includes (but is not limited to) pull requests, issues, 31 | tickets, e-mails, newsgroups, blogs, forums, etc. 32 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0ab20abe986e0f44a2855a917a03a97 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c92c3d1a23d9d7d4899f3745f3ec20e5 3 | folderAsset: yes 4 | timeCreated: 1487017945 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Source/DontDestroyOnLoad.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Rotorz Limited. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root. 3 | 4 | using UnityEngine; 5 | 6 | namespace Rotorz.Games 7 | { 8 | /// 9 | /// Marks a game object upon awakening so that it is not destroyed between scenes. 10 | /// 11 | public sealed class DontDestroyOnLoad : MonoBehaviour 12 | { 13 | private void Awake() 14 | { 15 | DontDestroyOnLoad(this); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Source/DontDestroyOnLoad.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9276542313286940b06cf281c5f097d 3 | timeCreated: 1497536920 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Source/UnityExceptionUtility.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Rotorz Limited. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root. 3 | 4 | using System; 5 | using Object = UnityEngine.Object; 6 | 7 | namespace Rotorz.Games 8 | { 9 | /// 10 | /// Utility functionality for exceptions. 11 | /// 12 | public static class UnityExceptionUtility 13 | { 14 | /// 15 | /// Checks that an object argument is non-null and in the case of Unity objects 16 | /// that they haven't been destroyed. 17 | /// 18 | /// The argument. 19 | /// Name of the parameter 20 | public static void CheckArgumentObjectValid(Object arg, string paramName) 21 | { 22 | if (ReferenceEquals(arg, null)) { 23 | throw new ArgumentNullException(paramName); 24 | } 25 | if (arg == null) { 26 | throw new ArgumentException("Object has been destroyed.", paramName); 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Source/UnityExceptionUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3483c657d68500847b2fb6ad0a76b74b 3 | timeCreated: 1487487195 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Source/_assembly.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rotorz.unity3d-utils", 3 | "references": [ 4 | "rotorz.dotnet-exception-utils" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/Source/_assembly.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 952f74ef81a2e0c45b07f705f37cfdcd 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/Plugins/Packages/@rotorz/unity3d-utils/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36bb75e75d80a694f8a28813c56ac831 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3eb49ec26c25f7140a4a36b9e3a5c8f0 3 | folderAsset: yes 4 | timeCreated: 1520246050 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c2d1e1cdb4baf6429b06b4a81cb0338 3 | folderAsset: yes 4 | timeCreated: 1520246056 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Editor/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22484b71a7fbd96488cff69fb81a77e5 3 | folderAsset: yes 4 | timeCreated: 1520246127 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Editor/Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/QuickCode/Editor/Images/icon.png -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Editor/Images/icon.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16957afe89e35e743984314b39663e4a 3 | timeCreated: 1520247599 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -3 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: 5 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad028c42985be6a478638fc9880499c2 3 | folderAsset: yes 4 | timeCreated: 1520246127 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Editor/Scripts/CodeConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 709f3a83e7473b6419b696199c338ef2 3 | timeCreated: 1519871895 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Editor/Scripts/GenerateCodeWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd0a52d753a846141b8ab027d127b7ad 3 | timeCreated: 1502789705 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aad9c6fac025144695b849521ce3010 3 | folderAsset: yes 4 | timeCreated: 1520247046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Scripts/CSharp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3bf4d7eae07e424e97831370d3c8a3d 3 | folderAsset: yes 4 | timeCreated: 1520306483 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Scripts/CSharp/CodePanel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 741990aebf7eedc4faf8a5b466973b18 3 | timeCreated: 1520248141 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Scripts/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c78f413893480d47a5585438b971f77 3 | folderAsset: yes 4 | timeCreated: 1520306491 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Scripts/Lua/CodePanel.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a282653d0ea85b46aff6cb73fab6855 3 | timeCreated: 1520324598 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/Scripts/Lua/class.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5c6b69e2c2ebb44d92dcda2fb0918bc 3 | timeCreated: 1520306582 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/Assets/QuickCode/demo.unity -------------------------------------------------------------------------------- /psd2ugui/Assets/QuickCode/demo.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2f5319046854b24d9e17bd6fb615de7 3 | timeCreated: 1520246256 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /psd2ugui/PSCepExtension/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/PSCepExtension/.DS_Store -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.5p4 2 | -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /psd2ugui/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zs9024/quick_psd2ugui/de1f04175a91a27a8f47dcd9ede61b6e2d40b8ef/psd2ugui/ProjectSettings/UnityConnectSettings.asset --------------------------------------------------------------------------------