├── .gitignore ├── README.md └── UIFramework ├── .idea └── .idea.UIFramework │ └── .idea │ ├── contentModel.xml │ ├── encodings.xml │ ├── indexLayout.xml │ ├── modules.xml │ ├── projectSettingsUpdater.xml │ ├── riderModule.iml │ ├── vcs.xml │ └── workspace.xml ├── Assets ├── BansheeGz.meta ├── BansheeGz │ ├── BGDatabase.meta │ └── BGDatabase │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── Res.meta │ │ ├── Res │ │ │ ├── BGDatabaseResources.dat │ │ │ └── BGDatabaseResources.dat.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── BGDatabaseEditor.dll │ │ │ ├── BGDatabaseEditor.dll.meta │ │ │ ├── BGDatabaseEditorSourceCode.unitypackage │ │ │ └── BGDatabaseEditorSourceCode.unitypackage.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ ├── BGDatabase.dll │ │ ├── BGDatabase.dll.meta │ │ ├── BGDatabaseSourceCode.unitypackage │ │ ├── BGDatabaseSourceCode.unitypackage.meta │ │ ├── link.xml │ │ └── link.xml.meta │ │ ├── Third-Party Notices.txt │ │ ├── Third-Party Notices.txt.meta │ │ ├── readme.txt │ │ └── readme.txt.meta ├── Data.meta ├── Data │ ├── BuiltinDataBase.cs │ └── BuiltinDataBase.cs.meta ├── EnhancedScroller v2.meta ├── EnhancedScroller v2 │ ├── ChangeLog.txt │ ├── ChangeLog.txt.meta │ ├── Demos.meta │ ├── Demos │ │ ├── 01 Simple Demo.meta │ │ ├── 01 Simple Demo │ │ │ ├── 01.unity │ │ │ ├── 01.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Data.cs │ │ │ ├── Data.cs.meta │ │ │ ├── SimpleDemo.cs │ │ │ └── SimpleDemo.cs.meta │ │ ├── 02 Multiple Cell Types.meta │ │ ├── 02 Multiple Cell Types │ │ │ ├── 02.unity │ │ │ ├── 02.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellViewFooter.cs │ │ │ ├── CellViewFooter.cs.meta │ │ │ ├── CellViewFooter.prefab │ │ │ ├── CellViewFooter.prefab.meta │ │ │ ├── CellViewHeader.cs │ │ │ ├── CellViewHeader.cs.meta │ │ │ ├── CellViewHeader.prefab │ │ │ ├── CellViewHeader.prefab.meta │ │ │ ├── CellViewRow.cs │ │ │ ├── CellViewRow.cs.meta │ │ │ ├── CellViewRow.prefab │ │ │ ├── CellViewRow.prefab.meta │ │ │ ├── Data.cs │ │ │ ├── Data.cs.meta │ │ │ ├── MultipleCellTypesDemo.cs │ │ │ └── MultipleCellTypesDemo.cs.meta │ │ ├── 03 Selection Demo.meta │ │ ├── 03 Selection Demo │ │ │ ├── 03.unity │ │ │ ├── 03.unity.meta │ │ │ ├── InventoryCellView.cs │ │ │ ├── InventoryCellView.cs.meta │ │ │ ├── InventoryData.cs │ │ │ ├── InventoryData.cs.meta │ │ │ ├── SelectionDemo.cs │ │ │ ├── SelectionDemo.cs.meta │ │ │ ├── hInventoryCellView.prefab │ │ │ ├── hInventoryCellView.prefab.meta │ │ │ ├── vInventoryCellView.prefab │ │ │ └── vInventoryCellView.prefab.meta │ │ ├── 04 Jump To Demo.meta │ │ ├── 04 Jump To Demo │ │ │ ├── 04.unity │ │ │ ├── 04.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ └── Data.cs.meta │ │ ├── 05 Remote Resources.meta │ │ ├── 05 Remote Resources │ │ │ ├── 05.unity │ │ │ ├── 05.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ ├── Data.cs.meta │ │ │ ├── ImageList.cs │ │ │ └── ImageList.cs.meta │ │ ├── 06 Snapping.meta │ │ ├── 06 Snapping │ │ │ ├── 06.unity │ │ │ ├── 06.unity.meta │ │ │ ├── PlayWin.cs │ │ │ ├── PlayWin.cs.meta │ │ │ ├── SlotCellView.cs │ │ │ ├── SlotCellView.cs.meta │ │ │ ├── SlotCellView.prefab │ │ │ ├── SlotCellView.prefab.meta │ │ │ ├── SlotController.cs │ │ │ ├── SlotController.cs.meta │ │ │ ├── SlotData.cs │ │ │ ├── SlotData.cs.meta │ │ │ ├── Slots Scroller.prefab │ │ │ ├── Slots Scroller.prefab.meta │ │ │ ├── SnappingDemo.cs │ │ │ └── SnappingDemo.cs.meta │ │ ├── 07 Refreshing.meta │ │ ├── 07 Refreshing │ │ │ ├── 07.unity │ │ │ ├── 07.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ └── Data.cs.meta │ │ ├── 08 View Driven Cell Sizes.meta │ │ ├── 08 View Driven Cell Sizes │ │ │ ├── 08.unity │ │ │ ├── 08.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ └── Data.cs.meta │ │ ├── 09 Cell Events.meta │ │ ├── 09 Cell Events │ │ │ ├── 09.unity │ │ │ ├── 09.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ └── Data.cs.meta │ │ ├── 10 Grid Simulation.meta │ │ ├── 10 Grid Simulation │ │ │ ├── 10.unity │ │ │ ├── 10.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ ├── Data.cs.meta │ │ │ ├── RowCellView.cs │ │ │ └── RowCellView.cs.meta │ │ ├── 10b Grid Selection.meta │ │ ├── 10b Grid Selection │ │ │ ├── 10b.unity │ │ │ ├── 10b.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ ├── Data.cs.meta │ │ │ ├── RowCellView.cs │ │ │ └── RowCellView.cs.meta │ │ ├── 11 Pull Down Refresh.meta │ │ ├── 11 Pull Down Refresh │ │ │ ├── 11.unity │ │ │ ├── 11.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ └── Data.cs.meta │ │ ├── 12 Nested Scrollers.meta │ │ ├── 12 Nested Scrollers │ │ │ ├── 12.unity │ │ │ ├── 12.unity.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── DetailCellView.cs │ │ │ ├── DetailCellView.cs.meta │ │ │ ├── DetailCellView.prefab │ │ │ ├── DetailCellView.prefab.meta │ │ │ ├── DetailData.cs │ │ │ ├── DetailData.cs.meta │ │ │ ├── MasterCellView.cs │ │ │ ├── MasterCellView.cs.meta │ │ │ ├── MasterCellView.prefab │ │ │ ├── MasterCellView.prefab.meta │ │ │ ├── MasterData.cs │ │ │ ├── MasterData.cs.meta │ │ │ ├── ScrollRectEx.cs │ │ │ └── ScrollRectEx.cs.meta │ │ ├── 12b Nested Linked Scrollers (Alternate Grid).meta │ │ ├── 12b Nested Linked Scrollers (Alternate Grid) │ │ │ ├── 12b.unity │ │ │ ├── 12b.unity.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── DetailCellView.cs │ │ │ ├── DetailCellView.cs.meta │ │ │ ├── DetailCellView.prefab │ │ │ ├── DetailCellView.prefab.meta │ │ │ ├── DetailData.cs │ │ │ ├── DetailData.cs.meta │ │ │ ├── MasterCellView.cs │ │ │ ├── MasterCellView.cs.meta │ │ │ ├── MasterCellView.prefab │ │ │ ├── MasterCellView.prefab.meta │ │ │ ├── MasterData.cs │ │ │ ├── MasterData.cs.meta │ │ │ ├── ScrollRectEx.cs │ │ │ └── ScrollRectEx.cs.meta │ │ ├── 13 Pagination.meta │ │ ├── 13 Pagination │ │ │ ├── 13.unity │ │ │ ├── 13.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ ├── Data.cs.meta │ │ │ ├── LoadingCellView.cs │ │ │ ├── LoadingCellView.cs.meta │ │ │ ├── LoadingCellView.prefab │ │ │ └── LoadingCellView.prefab.meta │ │ ├── 14 Key Control.meta │ │ ├── 14 Key Control │ │ │ ├── 14.unity │ │ │ ├── 14.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ └── Data.cs.meta │ │ ├── 14b Key Control Grid.meta │ │ ├── 14b Key Control Grid │ │ │ ├── 14b.unity │ │ │ ├── 14b.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ ├── Data.cs.meta │ │ │ ├── RowCellView.cs │ │ │ └── RowCellView.cs.meta │ │ ├── 15 Expanding Cells.meta │ │ ├── 15 Expanding Cells │ │ │ ├── 15.unity │ │ │ ├── 15.unity.meta │ │ │ ├── CellView.cs │ │ │ ├── CellView.cs.meta │ │ │ ├── CellView.prefab │ │ │ ├── CellView.prefab.meta │ │ │ ├── Controller.cs │ │ │ ├── Controller.cs.meta │ │ │ ├── Data.cs │ │ │ └── Data.cs.meta │ │ ├── Main Menu.meta │ │ ├── Main Menu │ │ │ ├── MainMenu.cs │ │ │ ├── MainMenu.cs.meta │ │ │ ├── MainMenu.unity │ │ │ ├── MainMenu.unity.meta │ │ │ ├── ReturnToMainMenu.cs │ │ │ └── ReturnToMainMenu.cs.meta │ │ ├── Shared Files.meta │ │ └── Shared Files │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ ├── IMMORTAL.ttf │ │ │ ├── IMMORTAL.ttf.meta │ │ │ ├── Infinium Guardian.ttf │ │ │ └── Infinium Guardian.ttf.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ ├── Multiple Cell Type Demo.meta │ │ │ ├── Multiple Cell Type Demo │ │ │ │ ├── avatar_female.psd │ │ │ │ ├── avatar_female.psd.meta │ │ │ │ ├── avatar_male.psd │ │ │ │ └── avatar_male.psd.meta │ │ │ ├── Selection Demo.meta │ │ │ └── Selection Demo │ │ │ │ ├── amulet_h.psd │ │ │ │ ├── amulet_h.psd.meta │ │ │ │ ├── amulet_v.psd │ │ │ │ ├── amulet_v.psd.meta │ │ │ │ ├── boots_h.psd │ │ │ │ ├── boots_h.psd.meta │ │ │ │ ├── boots_v.psd │ │ │ │ ├── boots_v.psd.meta │ │ │ │ ├── bracers_h.psd │ │ │ │ ├── bracers_h.psd.meta │ │ │ │ ├── bracers_v.psd │ │ │ │ ├── bracers_v.psd.meta │ │ │ │ ├── crossbow_h.psd │ │ │ │ ├── crossbow_h.psd.meta │ │ │ │ ├── crossbow_v.psd │ │ │ │ ├── crossbow_v.psd.meta │ │ │ │ ├── fireRing_h.psd │ │ │ │ ├── fireRing_h.psd.meta │ │ │ │ ├── fireRing_v.psd │ │ │ │ ├── fireRing_v.psd.meta │ │ │ │ ├── helmet_h.psd │ │ │ │ ├── helmet_h.psd.meta │ │ │ │ ├── helmet_v.psd │ │ │ │ ├── helmet_v.psd.meta │ │ │ │ ├── knapsack_h.psd │ │ │ │ ├── knapsack_h.psd.meta │ │ │ │ ├── knapsack_v.psd │ │ │ │ ├── knapsack_v.psd.meta │ │ │ │ ├── shield_h.psd │ │ │ │ ├── shield_h.psd.meta │ │ │ │ ├── shield_v.psd │ │ │ │ ├── shield_v.psd.meta │ │ │ │ ├── sword_h.psd │ │ │ │ ├── sword_h.psd.meta │ │ │ │ ├── sword_v.psd │ │ │ │ └── sword_v.psd.meta │ │ │ ├── Return to Main Menu Button.prefab │ │ │ ├── Return to Main Menu Button.prefab.meta │ │ │ ├── Sprites.meta │ │ │ └── Sprites │ │ │ ├── border.psd │ │ │ ├── border.psd.meta │ │ │ ├── border_small.psd │ │ │ ├── border_small.psd.meta │ │ │ ├── coin.psd │ │ │ ├── coin.psd.meta │ │ │ ├── damage.psd │ │ │ ├── damage.psd.meta │ │ │ ├── defense.psd │ │ │ ├── defense.psd.meta │ │ │ ├── footer.psd │ │ │ ├── footer.psd.meta │ │ │ ├── halo.psd │ │ │ ├── halo.psd.meta │ │ │ ├── header.psd │ │ │ ├── header.psd.meta │ │ │ ├── icon.png │ │ │ ├── icon.png.meta │ │ │ ├── jumpoffset.png │ │ │ ├── jumpoffset.png.meta │ │ │ ├── loading.jpg │ │ │ ├── loading.jpg.meta │ │ │ ├── menuHeader.psd │ │ │ ├── menuHeader.psd.meta │ │ │ ├── row.psd │ │ │ ├── row.psd.meta │ │ │ ├── scifiBorder.psd │ │ │ ├── scifiBorder.psd.meta │ │ │ ├── scroll.psd │ │ │ ├── scroll.psd.meta │ │ │ ├── slots_7.png │ │ │ ├── slots_7.png.meta │ │ │ ├── slots_banana.png │ │ │ ├── slots_banana.png.meta │ │ │ ├── slots_bigwin.png │ │ │ ├── slots_bigwin.png.meta │ │ │ ├── slots_blank.png │ │ │ ├── slots_blank.png.meta │ │ │ ├── slots_cherry.png │ │ │ ├── slots_cherry.png.meta │ │ │ ├── slots_grape.png │ │ │ ├── slots_grape.png.meta │ │ │ ├── slots_lemon.png │ │ │ ├── slots_lemon.png.meta │ │ │ ├── slots_orange.png │ │ │ ├── slots_orange.png.meta │ │ │ ├── slots_triplebar.png │ │ │ ├── slots_triplebar.png.meta │ │ │ ├── slots_watermelon.png │ │ │ ├── slots_watermelon.png.meta │ │ │ ├── slotsbackground.psd │ │ │ ├── slotsbackground.psd.meta │ │ │ ├── slotsborder.psd │ │ │ ├── slotsborder.psd.meta │ │ │ ├── slotsoverlay.psd │ │ │ ├── slotsoverlay.psd.meta │ │ │ ├── stripe.png │ │ │ ├── stripe.png.meta │ │ │ ├── weight.psd │ │ │ ├── weight.psd.meta │ │ │ ├── winner.png │ │ │ └── winner.png.meta │ ├── Documentation.meta │ ├── Documentation │ │ ├── EnhancedScroller_User_Manual.pdf │ │ └── EnhancedScroller_User_Manual.pdf.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── EnhancedScroller.cs │ │ ├── EnhancedScroller.cs.meta │ │ ├── EnhancedScrollerCellView.cs │ │ ├── EnhancedScrollerCellView.cs.meta │ │ ├── IEnhancedScrollerDelegate.cs │ │ ├── IEnhancedScrollerDelegate.cs.meta │ │ ├── SmallList.cs │ │ ├── SmallList.cs.meta │ │ ├── Tween.cs │ │ └── Tween.cs.meta │ ├── Tutorials.meta │ ├── Tutorials │ │ ├── 01 - Quick Start Tutorial.pdf │ │ ├── 01 - Quick Start Tutorial.pdf.meta │ │ ├── 01 - Quick Start Tutorial.unitypackage │ │ ├── 01 - Quick Start Tutorial.unitypackage.meta │ │ ├── readme.txt │ │ └── readme.txt.meta │ ├── readme.txt │ ├── readme.txt.meta │ ├── upgrading from 1.x to 2.x.txt │ └── upgrading from 1.x to 2.x.txt.meta ├── Lean.meta ├── Lean │ ├── Common+.meta │ ├── Common+ │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── Documentation.html │ │ │ └── Documentation.html.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── LeanLoadScene.cs │ │ │ │ ├── LeanLoadScene.cs.meta │ │ │ │ ├── LeanPongBall.cs │ │ │ │ └── LeanPongBall.cs.meta │ │ ├── Extras.meta │ │ ├── Extras │ │ │ ├── LeanChase.cs │ │ │ ├── LeanChase.cs.meta │ │ │ ├── LeanChaseRigidbody.cs │ │ │ ├── LeanChaseRigidbody.cs.meta │ │ │ ├── LeanChaseRigidbody2D.cs │ │ │ ├── LeanChaseRigidbody2D.cs.meta │ │ │ ├── LeanConstrainLocalPosition.cs │ │ │ ├── LeanConstrainLocalPosition.cs.meta │ │ │ ├── LeanConstrainScale.cs │ │ │ ├── LeanConstrainScale.cs.meta │ │ │ ├── LeanConstrainToAxis.cs │ │ │ ├── LeanConstrainToAxis.cs.meta │ │ │ ├── LeanConstrainToBox.cs │ │ │ ├── LeanConstrainToBox.cs.meta │ │ │ ├── LeanConstrainToCollider.cs │ │ │ ├── LeanConstrainToCollider.cs.meta │ │ │ ├── LeanConstrainToColliders.cs │ │ │ ├── LeanConstrainToColliders.cs.meta │ │ │ ├── LeanConstrainToDirection.cs │ │ │ ├── LeanConstrainToDirection.cs.meta │ │ │ ├── LeanConstrainToOrthographic.cs │ │ │ ├── LeanConstrainToOrthographic.cs.meta │ │ │ ├── LeanDelayedValue.cs │ │ │ ├── LeanDelayedValue.cs.meta │ │ │ ├── LeanFollow.cs │ │ │ ├── LeanFollow.cs.meta │ │ │ ├── LeanMaintainDistance.cs │ │ │ ├── LeanMaintainDistance.cs.meta │ │ │ ├── LeanManualRotate.cs │ │ │ ├── LeanManualRotate.cs.meta │ │ │ ├── LeanManualTranslate.cs │ │ │ ├── LeanManualTranslate.cs.meta │ │ │ ├── LeanManualTranslateRigidbody.cs │ │ │ ├── LeanManualTranslateRigidbody.cs.meta │ │ │ ├── LeanManualTranslateRigidbody2D.cs │ │ │ ├── LeanManualTranslateRigidbody2D.cs.meta │ │ │ ├── LeanOrbit.cs │ │ │ ├── LeanOrbit.cs.meta │ │ │ ├── LeanPitchYaw.cs │ │ │ ├── LeanPitchYaw.cs.meta │ │ │ ├── LeanPitchYawAutoRotate.cs │ │ │ ├── LeanPitchYawAutoRotate.cs.meta │ │ │ ├── LeanRevertTransform.cs │ │ │ ├── LeanRevertTransform.cs.meta │ │ │ ├── LeanRotateToPosition.cs │ │ │ ├── LeanRotateToPosition.cs.meta │ │ │ ├── LeanRotateToRigidbody2D.cs │ │ │ ├── LeanRotateToRigidbody2D.cs.meta │ │ │ ├── LeanSmoothedValue.cs │ │ │ ├── LeanSmoothedValue.cs.meta │ │ │ ├── LeanSpawnBetween.cs │ │ │ ├── LeanSpawnBetween.cs.meta │ │ │ ├── LeanSwap.cs │ │ │ ├── LeanSwap.cs.meta │ │ │ ├── LeanThresholdDelta.cs │ │ │ ├── LeanThresholdDelta.cs.meta │ │ │ ├── LeanThresholdPosition.cs │ │ │ └── LeanThresholdPosition.cs.meta │ │ ├── GUIDE.asset │ │ ├── GUIDE.asset.meta │ │ ├── LeanCommonPlus.asmdef │ │ └── LeanCommonPlus.asmdef.meta │ ├── Common.meta │ ├── Common │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── Documentation.html │ │ │ ├── Documentation.html.meta │ │ │ ├── LeanGuide.cs │ │ │ └── LeanGuide.cs.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── OFL.txt │ │ │ │ ├── OFL.txt.meta │ │ │ │ ├── VarelaRound-Regular.ttf │ │ │ │ └── VarelaRound-Regular.ttf.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Black.mat │ │ │ │ ├── Black.mat.meta │ │ │ │ ├── Blue.mat │ │ │ │ ├── Blue.mat.meta │ │ │ │ ├── Circuit.mat │ │ │ │ ├── Circuit.mat.meta │ │ │ │ ├── Green.mat │ │ │ │ ├── Green.mat.meta │ │ │ │ ├── Grey.mat │ │ │ │ ├── Grey.mat.meta │ │ │ │ ├── Grid.mat │ │ │ │ ├── Grid.mat.meta │ │ │ │ ├── Orange.mat │ │ │ │ ├── Orange.mat.meta │ │ │ │ ├── Purple.mat │ │ │ │ ├── Purple.mat.meta │ │ │ │ ├── Red.mat │ │ │ │ ├── Red.mat.meta │ │ │ │ ├── Skybox.mat │ │ │ │ ├── Skybox.mat.meta │ │ │ │ ├── White.mat │ │ │ │ ├── White.mat.meta │ │ │ │ ├── Yellow.mat │ │ │ │ └── Yellow.mat.meta │ │ │ ├── Meshes.meta │ │ │ ├── Meshes │ │ │ │ ├── RoundedCube.obj │ │ │ │ └── RoundedCube.obj.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Canvas.prefab │ │ │ │ ├── Canvas.prefab.meta │ │ │ │ ├── Grid.prefab │ │ │ │ ├── Grid.prefab.meta │ │ │ │ ├── InfoInUI.prefab │ │ │ │ ├── InfoInUI.prefab.meta │ │ │ │ ├── InfoInWorld.prefab │ │ │ │ ├── InfoInWorld.prefab.meta │ │ │ │ ├── Label.prefab │ │ │ │ ├── Label.prefab.meta │ │ │ │ ├── RoundedCube.prefab │ │ │ │ ├── RoundedCube.prefab.meta │ │ │ │ ├── Skybox.prefab │ │ │ │ └── Skybox.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── LeanLinkTo.cs │ │ │ │ ├── LeanLinkTo.cs.meta │ │ │ │ ├── LeanUpgradeEventSystem.cs │ │ │ │ └── LeanUpgradeEventSystem.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── Alpha.shader │ │ │ │ ├── Alpha.shader.meta │ │ │ │ ├── Object.shader │ │ │ │ ├── Object.shader.meta │ │ │ │ ├── Skybox.shader │ │ │ │ └── Skybox.shader.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Description.png │ │ │ │ ├── Description.png.meta │ │ │ │ ├── Grid.png │ │ │ │ ├── Grid.png.meta │ │ │ │ ├── Heart.png │ │ │ │ ├── Heart.png.meta │ │ │ │ ├── Left.png │ │ │ │ ├── Left.png.meta │ │ │ │ ├── Right.png │ │ │ │ └── Right.png.meta │ │ ├── Extras.meta │ │ ├── Extras │ │ │ ├── LeanDestroy.cs │ │ │ ├── LeanDestroy.cs.meta │ │ │ ├── LeanPath.cs │ │ │ ├── LeanPath.cs.meta │ │ │ ├── LeanPlane.cs │ │ │ ├── LeanPlane.cs.meta │ │ │ ├── LeanRoll.cs │ │ │ ├── LeanRoll.cs.meta │ │ │ ├── LeanSpawn.cs │ │ │ └── LeanSpawn.cs.meta │ │ ├── GUIDE.asset │ │ ├── GUIDE.asset.meta │ │ ├── LeanCommon.asmdef │ │ ├── LeanCommon.asmdef.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── LeanHelper.cs │ │ │ ├── LeanHelper.cs.meta │ │ │ ├── LeanInput.cs │ │ │ ├── LeanInput.cs.meta │ │ │ ├── LeanInspector.cs │ │ │ └── LeanInspector.cs.meta │ ├── GUI.meta │ ├── GUI │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── Documentation.html │ │ │ └── Documentation.html.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── 01 Button.unity │ │ │ ├── 01 Button.unity.meta │ │ │ ├── 02 Toggle.unity │ │ │ ├── 02 Toggle.unity.meta │ │ │ ├── 03 Radio.unity │ │ │ ├── 03 Radio.unity.meta │ │ │ ├── 04 Modal.unity │ │ │ ├── 04 Modal.unity.meta │ │ │ ├── 05 Pulse.unity │ │ │ ├── 05 Pulse.unity.meta │ │ │ ├── 06 Notification.unity │ │ │ ├── 06 Notification.unity.meta │ │ │ ├── 07 Shake.unity │ │ │ ├── 07 Shake.unity.meta │ │ │ ├── 08 Drag.unity │ │ │ ├── 08 Drag.unity.meta │ │ │ ├── 09 Handle.unity │ │ │ ├── 09 Handle.unity.meta │ │ │ ├── 10 Move To Top.unity │ │ │ ├── 10 Move To Top.unity.meta │ │ │ ├── 11 Snap.unity │ │ │ ├── 11 Snap.unity.meta │ │ │ ├── 12 Edge.unity │ │ │ ├── 12 Edge.unity.meta │ │ │ ├── 13 Nesting.unity │ │ │ ├── 13 Nesting.unity.meta │ │ │ ├── 14 Resize.unity │ │ │ ├── 14 Resize.unity.meta │ │ │ ├── 15 Switch.unity │ │ │ ├── 15 Switch.unity.meta │ │ │ ├── 16 Tooltip.unity │ │ │ ├── 16 Tooltip.unity.meta │ │ │ ├── 17 3D.unity │ │ │ ├── 17 3D.unity.meta │ │ │ ├── 18 Popup.unity │ │ │ ├── 18 Popup.unity.meta │ │ │ ├── 19 Modal.unity │ │ │ ├── 19 Modal.unity.meta │ │ │ ├── 20 Hover.unity │ │ │ ├── 20 Hover.unity.meta │ │ │ ├── 21 Hitbox.unity │ │ │ ├── 21 Hitbox.unity.meta │ │ │ ├── 22 Joystick.unity │ │ │ ├── 22 Joystick.unity.meta │ │ │ ├── 23 Relative.unity │ │ │ ├── 23 Relative.unity.meta │ │ │ ├── 24 Orientation.unity │ │ │ ├── 24 Orientation.unity.meta │ │ │ ├── 25 Selection Highlight.unity │ │ │ ├── 25 Selection Highlight.unity.meta │ │ │ ├── 26 Swipe.unity │ │ │ ├── 26 Swipe.unity.meta │ │ │ ├── 27 Safe Area.unity │ │ │ ├── 27 Safe Area.unity.meta │ │ │ ├── 28 Swipe Screens.unity │ │ │ ├── 28 Swipe Screens.unity.meta │ │ │ ├── Media.meta │ │ │ └── Media │ │ │ │ ├── AlertA.png │ │ │ │ ├── AlertA.png.meta │ │ │ │ ├── AlertB.png │ │ │ │ ├── AlertB.png.meta │ │ │ │ ├── Back.wav │ │ │ │ ├── Back.wav.meta │ │ │ │ ├── Click.wav │ │ │ │ ├── Click.wav.meta │ │ │ │ ├── Round0.png │ │ │ │ ├── Round0.png.meta │ │ │ │ ├── Round10.png │ │ │ │ ├── Round10.png.meta │ │ │ │ ├── Round10_Blur10.png │ │ │ │ ├── Round10_Blur10.png.meta │ │ │ │ ├── Round10_Blur3.png │ │ │ │ ├── Round10_Blur3.png.meta │ │ │ │ ├── Round10_Blur4.png │ │ │ │ ├── Round10_Blur4.png.meta │ │ │ │ ├── Round10_Blur5.png │ │ │ │ ├── Round10_Blur5.png.meta │ │ │ │ ├── Round10_Blur6.png │ │ │ │ ├── Round10_Blur6.png.meta │ │ │ │ ├── Round10_Thickness5.png │ │ │ │ ├── Round10_Thickness5.png.meta │ │ │ │ ├── Round20.png │ │ │ │ ├── Round20.png.meta │ │ │ │ ├── Round3.png │ │ │ │ ├── Round3.png.meta │ │ │ │ ├── Round30.png │ │ │ │ ├── Round30.png.meta │ │ │ │ ├── Round5.png │ │ │ │ ├── Round5.png.meta │ │ │ │ ├── Round50.png │ │ │ │ ├── Round50.png.meta │ │ │ │ ├── Round50_Thickness5.png │ │ │ │ ├── Round50_Thickness5.png.meta │ │ │ │ ├── Round5_Thickness2.png │ │ │ │ ├── Round5_Thickness2.png.meta │ │ │ │ ├── Thud.wav │ │ │ │ └── Thud.wav.meta │ │ ├── GUIDE.asset │ │ ├── GUIDE.asset.meta │ │ ├── LeanGUI.asmdef │ │ ├── LeanGUI.asmdef.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── LeanButton.cs │ │ │ ├── LeanButton.cs.meta │ │ │ ├── LeanConstrainAnchoredPosition.cs │ │ │ ├── LeanConstrainAnchoredPosition.cs.meta │ │ │ ├── LeanConstrainToParent.cs │ │ │ ├── LeanConstrainToParent.cs.meta │ │ │ ├── LeanDrag.cs │ │ │ ├── LeanDrag.cs.meta │ │ │ ├── LeanGui.cs │ │ │ ├── LeanGui.cs.meta │ │ │ ├── LeanHitbox.cs │ │ │ ├── LeanHitbox.cs.meta │ │ │ ├── LeanHover.cs │ │ │ ├── LeanHover.cs.meta │ │ │ ├── LeanJoystick.cs │ │ │ ├── LeanJoystick.cs.meta │ │ │ ├── LeanMoveToTop.cs │ │ │ ├── LeanMoveToTop.cs.meta │ │ │ ├── LeanOrientation.cs │ │ │ ├── LeanOrientation.cs.meta │ │ │ ├── LeanPulse.cs │ │ │ ├── LeanPulse.cs.meta │ │ │ ├── LeanResize.cs │ │ │ ├── LeanResize.cs.meta │ │ │ ├── LeanSafeArea.cs │ │ │ ├── LeanSafeArea.cs.meta │ │ │ ├── LeanSelectable.cs │ │ │ ├── LeanSelectable.cs.meta │ │ │ ├── LeanSelection.cs │ │ │ ├── LeanSelection.cs.meta │ │ │ ├── LeanSelectionHighlight.cs │ │ │ ├── LeanSelectionHighlight.cs.meta │ │ │ ├── LeanSelectionManager.cs │ │ │ ├── LeanSelectionManager.cs.meta │ │ │ ├── LeanSelectionPriority.cs │ │ │ ├── LeanSelectionPriority.cs.meta │ │ │ ├── LeanShake.cs │ │ │ ├── LeanShake.cs.meta │ │ │ ├── LeanSizer.cs │ │ │ ├── LeanSizer.cs.meta │ │ │ ├── LeanSnap.cs │ │ │ ├── LeanSnap.cs.meta │ │ │ ├── LeanSnapEvent.cs │ │ │ ├── LeanSnapEvent.cs.meta │ │ │ ├── LeanSwipe.cs │ │ │ ├── LeanSwipe.cs.meta │ │ │ ├── LeanSwitch.cs │ │ │ ├── LeanSwitch.cs.meta │ │ │ ├── LeanToggle.cs │ │ │ ├── LeanToggle.cs.meta │ │ │ ├── LeanTooltip.cs │ │ │ ├── LeanTooltip.cs.meta │ │ │ ├── LeanTooltipData.cs │ │ │ ├── LeanTooltipData.cs.meta │ │ │ ├── LeanWindow.cs │ │ │ ├── LeanWindow.cs.meta │ │ │ ├── LeanWindowCloser.cs │ │ │ └── LeanWindowCloser.cs.meta │ ├── Pool.meta │ ├── Pool │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── Documentation.html │ │ │ └── Documentation.html.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── 01 Pool.unity │ │ │ ├── 01 Pool.unity.meta │ │ │ ├── 02 Send Message.unity │ │ │ ├── 02 Send Message.unity.meta │ │ │ ├── 03 Broadcast Message.unity │ │ │ ├── 03 Broadcast Message.unity.meta │ │ │ ├── 04 Poolable Interface.unity │ │ │ ├── 04 Poolable Interface.unity.meta │ │ │ ├── 05 Capacity.unity │ │ │ ├── 05 Capacity.unity.meta │ │ │ ├── 06 Recycle.unity │ │ │ ├── 06 Recycle.unity.meta │ │ │ ├── Media.meta │ │ │ ├── Media │ │ │ │ ├── Rigidbody Cube + LeanPooledRigidbody.prefab │ │ │ │ ├── Rigidbody Cube + LeanPooledRigidbody.prefab.meta │ │ │ │ ├── Rigidbody Cube.prefab │ │ │ │ └── Rigidbody Cube.prefab.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── LeanPoolDebugger.cs │ │ │ │ └── LeanPoolDebugger.cs.meta │ │ ├── Extras.meta │ │ ├── Extras │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── LeanPooledRigidbody.cs │ │ │ │ ├── LeanPooledRigidbody.cs.meta │ │ │ │ ├── LeanPooledRigidbody2D.cs │ │ │ │ └── LeanPooledRigidbody2D.cs.meta │ │ ├── GUIDE.asset │ │ ├── GUIDE.asset.meta │ │ ├── LeanPool.asmdef │ │ ├── LeanPool.asmdef.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── IPoolable.cs │ │ │ ├── IPoolable.cs.meta │ │ │ ├── LeanClassPool.cs │ │ │ ├── LeanClassPool.cs.meta │ │ │ ├── LeanGameObjectPool.cs │ │ │ ├── LeanGameObjectPool.cs.meta │ │ │ ├── LeanPool.cs │ │ │ └── LeanPool.cs.meta │ ├── READ ME.txt │ ├── READ ME.txt.meta │ ├── Touch+.meta │ ├── Touch+ │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── Documentation.html │ │ │ └── Documentation.html.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── 01 Finger Held.unity │ │ │ ├── 01 Finger Held.unity.meta │ │ │ ├── 02 Spawn.unity │ │ │ ├── 02 Spawn.unity.meta │ │ │ ├── 03 Finger Tap Expired.unity │ │ │ ├── 03 Finger Tap Expired.unity.meta │ │ │ ├── 04 Rotate.unity │ │ │ ├── 04 Rotate.unity.meta │ │ │ ├── 05 Multi Twist.unity │ │ │ ├── 05 Multi Twist.unity.meta │ │ │ ├── 06 One Finger.unity │ │ │ ├── 06 One Finger.unity.meta │ │ │ ├── 07 Axis.unity │ │ │ ├── 07 Axis.unity.meta │ │ │ ├── 08 Delay.unity │ │ │ ├── 08 Delay.unity.meta │ │ │ ├── 09 Multi Tap.unity │ │ │ ├── 09 Multi Tap.unity.meta │ │ │ ├── 10 Translate Rigidbody.unity │ │ │ ├── 10 Translate Rigidbody.unity.meta │ │ │ ├── 11 Under.unity │ │ │ ├── 11 Under.unity.meta │ │ │ ├── 12 Translate Rigidbody2D.unity │ │ │ ├── 12 Translate Rigidbody2D.unity.meta │ │ │ ├── 13 Under.unity │ │ │ ├── 13 Under.unity.meta │ │ │ ├── 14 First Down & Last Up.unity │ │ │ ├── 14 First Down & Last Up.unity.meta │ │ │ ├── 15 Multi Held.unity │ │ │ ├── 15 Multi Held.unity.meta │ │ │ ├── Camera.meta │ │ │ ├── Camera │ │ │ │ ├── 01 Orbit.unity │ │ │ │ ├── 01 Orbit.unity.meta │ │ │ │ ├── 02 Zoom.unity │ │ │ │ ├── 02 Zoom.unity.meta │ │ │ │ ├── 03 Wheel.unity │ │ │ │ ├── 03 Wheel.unity.meta │ │ │ │ ├── 04 Relative.unity │ │ │ │ ├── 04 Relative.unity.meta │ │ │ │ ├── 05 Auto Rotate.unity │ │ │ │ ├── 05 Auto Rotate.unity.meta │ │ │ │ ├── 06 Dolly.unity │ │ │ │ ├── 06 Dolly.unity.meta │ │ │ │ ├── 07 Collision.unity │ │ │ │ ├── 07 Collision.unity.meta │ │ │ │ ├── 08 Center.unity │ │ │ │ ├── 08 Center.unity.meta │ │ │ │ ├── 09 Move.unity │ │ │ │ ├── 09 Move.unity.meta │ │ │ │ ├── 10 TopDown.unity │ │ │ │ ├── 10 TopDown.unity.meta │ │ │ │ ├── 11 Swipe.unity │ │ │ │ ├── 11 Swipe.unity.meta │ │ │ │ ├── 12 Snap.unity │ │ │ │ ├── 12 Snap.unity.meta │ │ │ │ ├── 13 First Person.unity │ │ │ │ ├── 13 First Person.unity.meta │ │ │ │ ├── 14 Move.unity │ │ │ │ ├── 14 Move.unity.meta │ │ │ │ ├── 15 Tap Look.unity │ │ │ │ ├── 15 Tap Look.unity.meta │ │ │ │ ├── 16 Freeflight.unity │ │ │ │ ├── 16 Freeflight.unity.meta │ │ │ │ ├── 17 Rigidbody.unity │ │ │ │ ├── 17 Rigidbody.unity.meta │ │ │ │ ├── 18 Object.unity │ │ │ │ ├── 18 Object.unity.meta │ │ │ │ ├── 19 Sidescroll 2D.unity │ │ │ │ ├── 19 Sidescroll 2D.unity.meta │ │ │ │ ├── 20 Zoom.unity │ │ │ │ ├── 20 Zoom.unity.meta │ │ │ │ ├── 21 Constrain.unity │ │ │ │ ├── 21 Constrain.unity.meta │ │ │ │ ├── 22 Rotate.unity │ │ │ │ ├── 22 Rotate.unity.meta │ │ │ │ ├── 23 Map.unity │ │ │ │ ├── 23 Map.unity.meta │ │ │ │ ├── 24 Sidescroll 3D.unity │ │ │ │ ├── 24 Sidescroll 3D.unity.meta │ │ │ │ ├── 25 Zoom.unity │ │ │ │ ├── 25 Zoom.unity.meta │ │ │ │ ├── 26 Rotate.unity │ │ │ │ ├── 26 Rotate.unity.meta │ │ │ │ ├── 27 Top Down.unity │ │ │ │ ├── 27 Top Down.unity.meta │ │ │ │ ├── 28 SwipeMove.unity │ │ │ │ ├── 28 SwipeMove.unity.meta │ │ │ │ ├── 29 Clamp.unity │ │ │ │ ├── 29 Clamp.unity.meta │ │ │ │ ├── Conflicting Controls.unity │ │ │ │ ├── Conflicting Controls.unity.meta │ │ │ │ ├── One Finger Zoom.unity │ │ │ │ └── One Finger Zoom.unity.meta │ │ │ ├── Canvas.meta │ │ │ ├── Canvas │ │ │ │ ├── 01 Finger Down Canvas.unity │ │ │ │ ├── 01 Finger Down Canvas.unity.meta │ │ │ │ ├── 02 Move.unity │ │ │ │ ├── 02 Move.unity.meta │ │ │ │ ├── 03 Swipe Move.unity │ │ │ │ ├── 03 Swipe Move.unity.meta │ │ │ │ ├── 04 Multi Set Canvas.unity │ │ │ │ ├── 04 Multi Set Canvas.unity.meta │ │ │ │ ├── 05 Rotate.unity │ │ │ │ ├── 05 Rotate.unity.meta │ │ │ │ ├── 06 DPad.unity │ │ │ │ ├── 06 DPad.unity.meta │ │ │ │ ├── 07 Move.unity │ │ │ │ ├── 07 Move.unity.meta │ │ │ │ ├── 08 Spawn.unity │ │ │ │ ├── 08 Spawn.unity.meta │ │ │ │ ├── 09 Swipe Direction Spawn.unity │ │ │ │ └── 09 Swipe Direction Spawn.unity.meta │ │ │ ├── Constrain.meta │ │ │ ├── Constrain │ │ │ │ ├── 01 Constrain Scale.unity │ │ │ │ ├── 01 Constrain Scale.unity.meta │ │ │ │ ├── 02 Constrain To Box.unity │ │ │ │ ├── 02 Constrain To Box.unity.meta │ │ │ │ ├── 03 Constrain To Axis.unity │ │ │ │ ├── 03 Constrain To Axis.unity.meta │ │ │ │ ├── 04 Constrain To Collider.unity │ │ │ │ ├── 04 Constrain To Collider.unity.meta │ │ │ │ ├── 05 Constrain To Colliders.unity │ │ │ │ ├── 05 Constrain To Colliders.unity.meta │ │ │ │ ├── 06 Constrain To Direction.unity │ │ │ │ ├── 06 Constrain To Direction.unity.meta │ │ │ │ ├── 07 Constrain Rigidbody.unity │ │ │ │ ├── 07 Constrain Rigidbody.unity.meta │ │ │ │ ├── 08 Constrain Rigidbody2D.unity │ │ │ │ └── 08 Constrain Rigidbody2D.unity.meta │ │ │ ├── Dial.meta │ │ │ ├── Dial │ │ │ │ ├── 01 Dial 3D.unity │ │ │ │ ├── 01 Dial 3D.unity.meta │ │ │ │ ├── 02 Clamp.unity │ │ │ │ ├── 02 Clamp.unity.meta │ │ │ │ ├── 03 Lever.unity │ │ │ │ ├── 03 Lever.unity.meta │ │ │ │ ├── 04 Trigger.unity │ │ │ │ ├── 04 Trigger.unity.meta │ │ │ │ ├── 05 Angle.unity │ │ │ │ ├── 05 Angle.unity.meta │ │ │ │ ├── 06 0 to 1.unity │ │ │ │ ├── 06 0 to 1.unity.meta │ │ │ │ ├── 07 UI.unity │ │ │ │ ├── 07 UI.unity.meta │ │ │ │ ├── 08 Rotate To Position.unity │ │ │ │ ├── 08 Rotate To Position.unity.meta │ │ │ │ ├── 09 Under.unity │ │ │ │ └── 09 Under.unity.meta │ │ │ ├── Drag.meta │ │ │ ├── Drag │ │ │ │ ├── 01 Drag.unity │ │ │ │ ├── 01 Drag.unity.meta │ │ │ │ ├── 02 Turn 2D.unity │ │ │ │ ├── 02 Turn 2D.unity.meta │ │ │ │ ├── 03 Reset.unity │ │ │ │ ├── 03 Reset.unity.meta │ │ │ │ ├── 04 DragTurn1D.unity │ │ │ │ ├── 04 DragTurn1D.unity.meta │ │ │ │ ├── 05 Step.unity │ │ │ │ ├── 05 Step.unity.meta │ │ │ │ ├── 06 DragDoors.unity │ │ │ │ ├── 06 DragDoors.unity.meta │ │ │ │ ├── 07 DragMove1D.unity │ │ │ │ ├── 07 DragMove1D.unity.meta │ │ │ │ ├── 08 DragMove2D.unity │ │ │ │ ├── 08 DragMove2D.unity.meta │ │ │ │ ├── 09 Threshold.unity │ │ │ │ ├── 09 Threshold.unity.meta │ │ │ │ ├── 10 DragAlongPath.unity │ │ │ │ ├── 10 DragAlongPath.unity.meta │ │ │ │ ├── 11 Under.unity │ │ │ │ ├── 11 Under.unity.meta │ │ │ │ ├── 12 Smooth.unity │ │ │ │ ├── 12 Smooth.unity.meta │ │ │ │ ├── 13 DragUnderAlongPlane.unity │ │ │ │ ├── 13 DragUnderAlongPlane.unity.meta │ │ │ │ ├── 14 Snap.unity │ │ │ │ ├── 14 Snap.unity.meta │ │ │ │ ├── 29 Pull.unity │ │ │ │ ├── 29 Pull.unity.meta │ │ │ │ ├── 30 Turn 2D.unity │ │ │ │ ├── 30 Turn 2D.unity.meta │ │ │ │ ├── 31 Direction.unity │ │ │ │ ├── 31 Direction.unity.meta │ │ │ │ ├── DragMeshColor.unity │ │ │ │ ├── DragMeshColor.unity.meta │ │ │ │ ├── DragMeshDeform.unity │ │ │ │ ├── DragMeshDeform.unity.meta │ │ │ │ ├── DropDestroy.unity │ │ │ │ ├── DropDestroy.unity.meta │ │ │ │ ├── DropDestroyCount.unity │ │ │ │ └── DropDestroyCount.unity.meta │ │ │ ├── Follow.meta │ │ │ ├── Follow │ │ │ │ ├── 01 Chase 3D.unity │ │ │ │ ├── 01 Chase 3D.unity.meta │ │ │ │ ├── 02 Under.unity │ │ │ │ ├── 02 Under.unity.meta │ │ │ │ ├── 03 Waypoints.unity │ │ │ │ ├── 03 Waypoints.unity.meta │ │ │ │ ├── 04 Chase Rigidbody.unity │ │ │ │ ├── 04 Chase Rigidbody.unity.meta │ │ │ │ ├── 05 Plane.unity │ │ │ │ ├── 05 Plane.unity.meta │ │ │ │ ├── 06 Chase Rigidbody2D.unity │ │ │ │ ├── 06 Chase Rigidbody2D.unity.meta │ │ │ │ ├── 07 FollowFinger.unity │ │ │ │ ├── 07 FollowFinger.unity.meta │ │ │ │ ├── 08 Released.unity │ │ │ │ ├── 08 Released.unity.meta │ │ │ │ ├── 09 Rotation.unity │ │ │ │ ├── 09 Rotation.unity.meta │ │ │ │ ├── 10 FollowFingerLine.unity │ │ │ │ └── 10 FollowFingerLine.unity.meta │ │ │ ├── GrabSpinThrow.unity │ │ │ ├── GrabSpinThrow.unity.meta │ │ │ ├── Line.meta │ │ │ ├── Line │ │ │ │ ├── 01 Line.unity │ │ │ │ ├── 01 Line.unity.meta │ │ │ │ ├── 02 Power.unity │ │ │ │ ├── 02 Power.unity.meta │ │ │ │ ├── 03 Clamp.unity │ │ │ │ ├── 03 Clamp.unity.meta │ │ │ │ ├── 04 SpawnThrow 3D.unity │ │ │ │ ├── 04 SpawnThrow 3D.unity.meta │ │ │ │ ├── 05 SpawnThrow 2D.unity │ │ │ │ ├── 05 SpawnThrow 2D.unity.meta │ │ │ │ ├── 06 Target 3D.unity │ │ │ │ ├── 06 Target 3D.unity.meta │ │ │ │ ├── 07 Throw.unity │ │ │ │ ├── 07 Throw.unity.meta │ │ │ │ ├── 08 Under.unity │ │ │ │ ├── 08 Under.unity.meta │ │ │ │ ├── 09 Target 2D.unity │ │ │ │ ├── 09 Target 2D.unity.meta │ │ │ │ ├── 10 Throw.unity │ │ │ │ ├── 10 Throw.unity.meta │ │ │ │ ├── 11 Rotate.unity │ │ │ │ ├── 11 Rotate.unity.meta │ │ │ │ ├── 12 Under.unity │ │ │ │ ├── 12 Under.unity.meta │ │ │ │ ├── Pong Launch.unity │ │ │ │ └── Pong Launch.unity.meta │ │ │ ├── Media.meta │ │ │ ├── Media │ │ │ │ ├── ButtonCircle.png │ │ │ │ ├── ButtonCircle.png.meta │ │ │ │ ├── Canvas+.prefab │ │ │ │ ├── Canvas+.prefab.meta │ │ │ │ ├── Dotted 1.png │ │ │ │ ├── Dotted 1.png.meta │ │ │ │ ├── Icon Capsule.png │ │ │ │ ├── Icon Capsule.png.meta │ │ │ │ ├── Icon Cube.png │ │ │ │ ├── Icon Cube.png.meta │ │ │ │ ├── Icon Sphere.png │ │ │ │ ├── Icon Sphere.png.meta │ │ │ │ ├── Knob.DAE │ │ │ │ ├── Knob.DAE.meta │ │ │ │ ├── Power Indicator.mat │ │ │ │ ├── Power Indicator.mat.meta │ │ │ │ ├── Power Indicator.png │ │ │ │ ├── Power Indicator.png.meta │ │ │ │ ├── Power Indicator.prefab │ │ │ │ ├── Power Indicator.prefab.meta │ │ │ │ ├── Selectable Block.prefab │ │ │ │ ├── Selectable Block.prefab.meta │ │ │ │ ├── SelectionBox.png │ │ │ │ ├── SelectionBox.png.meta │ │ │ │ ├── SelectionDashesH.png │ │ │ │ ├── SelectionDashesH.png.meta │ │ │ │ ├── SelectionDashesV.png │ │ │ │ └── SelectionDashesV.png.meta │ │ │ ├── Pong.unity │ │ │ ├── Pong.unity.meta │ │ │ ├── PressureScale.unity │ │ │ ├── PressureScale.unity.meta │ │ │ ├── ReplayFinger.unity │ │ │ ├── ReplayFinger.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── LeanDeselected.cs │ │ │ │ ├── LeanDeselected.cs.meta │ │ │ │ ├── LeanFormatText.cs │ │ │ │ ├── LeanFormatText.cs.meta │ │ │ │ ├── LeanModifyFloat.cs │ │ │ │ ├── LeanModifyFloat.cs.meta │ │ │ │ ├── LeanModifyVector2.cs │ │ │ │ ├── LeanModifyVector2.cs.meta │ │ │ │ ├── LeanRandomEvents.cs │ │ │ │ ├── LeanRandomEvents.cs.meta │ │ │ │ ├── LeanSelected.cs │ │ │ │ ├── LeanSelected.cs.meta │ │ │ │ ├── LeanSelectedCount.cs │ │ │ │ ├── LeanSelectedCount.cs.meta │ │ │ │ ├── LeanSelectedRatio.cs │ │ │ │ ├── LeanSelectedRatio.cs.meta │ │ │ │ ├── LeanSelectedText.cs │ │ │ │ └── LeanSelectedText.cs.meta │ │ │ ├── Selection.meta │ │ │ ├── Selection │ │ │ │ ├── 01 Select 2D+3D.unity │ │ │ │ ├── 01 Select 2D+3D.unity.meta │ │ │ │ ├── 02 Select 2D+3D+UI.unity │ │ │ │ ├── 02 Select 2D+3D+UI.unity.meta │ │ │ │ ├── 03 Reselect Count.unity │ │ │ │ ├── 03 Reselect Count.unity.meta │ │ │ │ ├── 04 SelectedTime.unity │ │ │ │ ├── 04 SelectedTime.unity.meta │ │ │ │ ├── 05 Action.unity │ │ │ │ ├── 05 Action.unity.meta │ │ │ │ ├── 06 DragSelect.unity │ │ │ │ ├── 06 DragSelect.unity.meta │ │ │ │ ├── 07 TransformRelative.unity │ │ │ │ ├── 07 TransformRelative.unity.meta │ │ │ │ ├── 08 WithinRange.unity │ │ │ │ ├── 08 WithinRange.unity.meta │ │ │ │ ├── 09 SelectionBox.unity │ │ │ │ ├── 09 SelectionBox.unity.meta │ │ │ │ ├── 10 Dotted.unity │ │ │ │ ├── 10 Dotted.unity.meta │ │ │ │ ├── 11 Select Self.unity │ │ │ │ └── 11 Select Self.unity.meta │ │ │ ├── Shape.meta │ │ │ ├── Shape │ │ │ │ ├── 01 ShapeDetector.unity │ │ │ │ ├── 01 ShapeDetector.unity.meta │ │ │ │ ├── 02 Loop.unity │ │ │ │ ├── 02 Loop.unity.meta │ │ │ │ ├── 03 Direction.unity │ │ │ │ ├── 03 Direction.unity.meta │ │ │ │ ├── 04 Partial.unity │ │ │ │ └── 04 Partial.unity.meta │ │ │ ├── Slingshot.unity │ │ │ ├── Slingshot.unity.meta │ │ │ ├── SwapBlocks2D.unity │ │ │ ├── SwapBlocks2D.unity.meta │ │ │ ├── Swipe.meta │ │ │ ├── Swipe │ │ │ │ ├── 01 Finger Swipe.unity │ │ │ │ ├── 01 Finger Swipe.unity.meta │ │ │ │ ├── 02 Swap.unity │ │ │ │ ├── 02 Swap.unity.meta │ │ │ │ ├── 03 Move.unity │ │ │ │ ├── 03 Move.unity.meta │ │ │ │ ├── 04 Turn.unity │ │ │ │ ├── 04 Turn.unity.meta │ │ │ │ ├── 05 Translate.unity │ │ │ │ ├── 05 Translate.unity.meta │ │ │ │ ├── 06 Under.unity │ │ │ │ ├── 06 Under.unity.meta │ │ │ │ ├── 07 Translate Rigidbody.unity │ │ │ │ ├── 07 Translate Rigidbody.unity.meta │ │ │ │ ├── 08 Under.unity │ │ │ │ ├── 08 Under.unity.meta │ │ │ │ ├── 09 TranslateRigidbody2D.unity │ │ │ │ ├── 09 TranslateRigidbody2D.unity.meta │ │ │ │ ├── 10 Under.unity │ │ │ │ ├── 10 Under.unity.meta │ │ │ │ ├── 11 Finger Flick.unity │ │ │ │ ├── 11 Finger Flick.unity.meta │ │ │ │ ├── 12 Rotation.unity │ │ │ │ ├── 12 Rotation.unity.meta │ │ │ │ ├── 13 Multiple.unity │ │ │ │ ├── 13 Multiple.unity.meta │ │ │ │ ├── 14 Multi Swipe.unity │ │ │ │ └── 14 Multi Swipe.unity.meta │ │ │ ├── TransformRevert.unity │ │ │ ├── TransformRevert.unity.meta │ │ │ ├── TransformToggle.unity │ │ │ └── TransformToggle.unity.meta │ │ ├── GUIDE.asset │ │ ├── GUIDE.asset.meta │ │ ├── LeanTouchPlus.asmdef │ │ ├── LeanTouchPlus.asmdef.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── IDropHandler.cs │ │ │ ├── IDropHandler.cs.meta │ │ │ ├── LeanDragColorMesh.cs │ │ │ ├── LeanDragColorMesh.cs.meta │ │ │ ├── LeanDragDeformMesh.cs │ │ │ ├── LeanDragDeformMesh.cs.meta │ │ │ ├── LeanDragLine.cs │ │ │ ├── LeanDragLine.cs.meta │ │ │ ├── LeanDragSelect.cs │ │ │ ├── LeanDragSelect.cs.meta │ │ │ ├── LeanDragTranslateAlong.cs │ │ │ ├── LeanDragTranslateAlong.cs.meta │ │ │ ├── LeanDragTranslateRigidbody.cs │ │ │ ├── LeanDragTranslateRigidbody.cs.meta │ │ │ ├── LeanDragTranslateRigidbody2D.cs │ │ │ ├── LeanDragTranslateRigidbody2D.cs.meta │ │ │ ├── LeanDrop.cs │ │ │ ├── LeanDrop.cs.meta │ │ │ ├── LeanDropCount.cs │ │ │ ├── LeanDropCount.cs.meta │ │ │ ├── LeanFingerDownCanvas.cs │ │ │ ├── LeanFingerDownCanvas.cs.meta │ │ │ ├── LeanFingerFlick.cs │ │ │ ├── LeanFingerFlick.cs.meta │ │ │ ├── LeanFingerHeld.cs │ │ │ ├── LeanFingerHeld.cs.meta │ │ │ ├── LeanFingerTapExpired.cs │ │ │ ├── LeanFingerTapExpired.cs.meta │ │ │ ├── LeanFingerTapQuick.cs │ │ │ ├── LeanFingerTapQuick.cs.meta │ │ │ ├── LeanFirstDown.cs │ │ │ ├── LeanFirstDown.cs.meta │ │ │ ├── LeanFirstDownCanvas.cs │ │ │ ├── LeanFirstDownCanvas.cs.meta │ │ │ ├── LeanGestureToggle.cs │ │ │ ├── LeanGestureToggle.cs.meta │ │ │ ├── LeanLastUp.cs │ │ │ ├── LeanLastUp.cs.meta │ │ │ ├── LeanLastUpCanvas.cs │ │ │ ├── LeanLastUpCanvas.cs.meta │ │ │ ├── LeanManualFlick.cs │ │ │ ├── LeanManualFlick.cs.meta │ │ │ ├── LeanManualSwipe.cs │ │ │ ├── LeanManualSwipe.cs.meta │ │ │ ├── LeanManualVelocity.cs │ │ │ ├── LeanManualVelocity.cs.meta │ │ │ ├── LeanManualVelocity2D.cs │ │ │ ├── LeanManualVelocity2D.cs.meta │ │ │ ├── LeanMouseWheel.cs │ │ │ ├── LeanMouseWheel.cs.meta │ │ │ ├── LeanMultiDirection.cs │ │ │ ├── LeanMultiDirection.cs.meta │ │ │ ├── LeanMultiDown.cs │ │ │ ├── LeanMultiDown.cs.meta │ │ │ ├── LeanMultiHeld.cs │ │ │ ├── LeanMultiHeld.cs.meta │ │ │ ├── LeanMultiPinch.cs │ │ │ ├── LeanMultiPinch.cs.meta │ │ │ ├── LeanMultiPull.cs │ │ │ ├── LeanMultiPull.cs.meta │ │ │ ├── LeanMultiSwipe.cs │ │ │ ├── LeanMultiSwipe.cs.meta │ │ │ ├── LeanMultiTap.cs │ │ │ ├── LeanMultiTap.cs.meta │ │ │ ├── LeanMultiTwist.cs │ │ │ ├── LeanMultiTwist.cs.meta │ │ │ ├── LeanMultiUp.cs │ │ │ ├── LeanMultiUp.cs.meta │ │ │ ├── LeanMultiUpdate.cs │ │ │ ├── LeanMultiUpdate.cs.meta │ │ │ ├── LeanMultiUpdateCanvas.cs │ │ │ ├── LeanMultiUpdateCanvas.cs.meta │ │ │ ├── LeanPinchCamera.cs │ │ │ ├── LeanPinchCamera.cs.meta │ │ │ ├── LeanQuickTap.cs │ │ │ ├── LeanQuickTap.cs.meta │ │ │ ├── LeanReplayFinger.cs │ │ │ ├── LeanReplayFinger.cs.meta │ │ │ ├── LeanSelectSelf.cs │ │ │ ├── LeanSelectSelf.cs.meta │ │ │ ├── LeanSelectableBlock.cs │ │ │ ├── LeanSelectableBlock.cs.meta │ │ │ ├── LeanSelectableCenter.cs │ │ │ ├── LeanSelectableCenter.cs.meta │ │ │ ├── LeanSelectableCount.cs │ │ │ ├── LeanSelectableCount.cs.meta │ │ │ ├── LeanSelectableDial.cs │ │ │ ├── LeanSelectableDial.cs.meta │ │ │ ├── LeanSelectableDragTorque.cs │ │ │ ├── LeanSelectableDragTorque.cs.meta │ │ │ ├── LeanSelectableDrop.cs │ │ │ ├── LeanSelectableDrop.cs.meta │ │ │ ├── LeanSelectablePressureScale.cs │ │ │ ├── LeanSelectablePressureScale.cs.meta │ │ │ ├── LeanSelectableSelected.cs │ │ │ ├── LeanSelectableSelected.cs.meta │ │ │ ├── LeanSelectableTime.cs │ │ │ ├── LeanSelectableTime.cs.meta │ │ │ ├── LeanSelectionBox.cs │ │ │ ├── LeanSelectionBox.cs.meta │ │ │ ├── LeanShape.cs │ │ │ ├── LeanShape.cs.meta │ │ │ ├── LeanShapeDetector.cs │ │ │ ├── LeanShapeDetector.cs.meta │ │ │ ├── LeanSpawnWithFinger.cs │ │ │ ├── LeanSpawnWithFinger.cs.meta │ │ │ ├── LeanSwipeEdge.cs │ │ │ ├── LeanSwipeEdge.cs.meta │ │ │ ├── LeanTwistCamera.cs │ │ │ └── LeanTwistCamera.cs.meta │ ├── Touch.meta │ ├── Touch │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── Documentation.html │ │ │ └── Documentation.html.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── 01 Finger Down.unity │ │ │ ├── 01 Finger Down.unity.meta │ │ │ ├── 02 Finger Up.unity │ │ │ ├── 02 Finger Up.unity.meta │ │ │ ├── 03 Finger Swipe.unity │ │ │ ├── 03 Finger Swipe.unity.meta │ │ │ ├── 04 Rotation.unity │ │ │ ├── 04 Rotation.unity.meta │ │ │ ├── 05 Direction 4.unity │ │ │ ├── 05 Direction 4.unity.meta │ │ │ ├── 06 Direction 8.unity │ │ │ ├── 06 Direction 8.unity.meta │ │ │ ├── 07 Finger Tap.unity │ │ │ ├── 07 Finger Tap.unity.meta │ │ │ ├── 08 Spawn.unity │ │ │ ├── 08 Spawn.unity.meta │ │ │ ├── 09 Block.unity │ │ │ ├── 09 Block.unity.meta │ │ │ ├── 10 Double.unity │ │ │ ├── 10 Double.unity.meta │ │ │ ├── 11 Finger Old.unity │ │ │ ├── 11 Finger Old.unity.meta │ │ │ ├── 12 Transform 3D.unity │ │ │ ├── 12 Transform 3D.unity.meta │ │ │ ├── 13 Relative.unity │ │ │ ├── 13 Relative.unity.meta │ │ │ ├── 14 Transform 2D.unity │ │ │ ├── 14 Transform 2D.unity.meta │ │ │ ├── 15 Relative.unity │ │ │ ├── 15 Relative.unity.meta │ │ │ ├── 16 Transform UI.unity │ │ │ ├── 16 Transform UI.unity.meta │ │ │ ├── 17 Relative.unity │ │ │ ├── 17 Relative.unity.meta │ │ │ ├── 18 Select 3D.unity │ │ │ ├── 18 Select 3D.unity.meta │ │ │ ├── 19 Transform.unity │ │ │ ├── 19 Transform.unity.meta │ │ │ ├── 20 Transform Relative.unity │ │ │ ├── 20 Transform Relative.unity.meta │ │ │ ├── 21 Select 2D.unity │ │ │ ├── 21 Select 2D.unity.meta │ │ │ ├── 22 Transform.unity │ │ │ ├── 22 Transform.unity.meta │ │ │ ├── 23 Transform Relative.unity │ │ │ ├── 23 Transform Relative.unity.meta │ │ │ ├── 24 Destroy.unity │ │ │ ├── 24 Destroy.unity.meta │ │ │ ├── 25 Select UI.unity │ │ │ ├── 25 Select UI.unity.meta │ │ │ ├── 26 Transform.unity │ │ │ ├── 26 Transform.unity.meta │ │ │ ├── 27 Transform Relative.unity │ │ │ ├── 27 Transform Relative.unity.meta │ │ │ ├── 28 Press 3D.unity │ │ │ ├── 28 Press 3D.unity.meta │ │ │ ├── 29 Transform.unity │ │ │ ├── 29 Transform.unity.meta │ │ │ ├── 30 Isolate.unity │ │ │ ├── 30 Isolate.unity.meta │ │ │ ├── 31 Press 2D.unity │ │ │ ├── 31 Press 2D.unity.meta │ │ │ ├── 32 Transform.unity │ │ │ ├── 32 Transform.unity.meta │ │ │ ├── 33 Isolate.unity │ │ │ ├── 33 Isolate.unity.meta │ │ │ ├── 34 Press UI.unity │ │ │ ├── 34 Press UI.unity.meta │ │ │ ├── 35 Transform.unity │ │ │ ├── 35 Transform.unity.meta │ │ │ ├── 36 Isolate.unity │ │ │ ├── 36 Isolate.unity.meta │ │ │ ├── 37 Finger Trail.unity │ │ │ ├── 37 Finger Trail.unity.meta │ │ │ ├── LeanTouch+.unity │ │ │ ├── LeanTouch+.unity.meta │ │ │ ├── Media.meta │ │ │ ├── Media │ │ │ │ ├── ArrowCurve.png │ │ │ │ ├── ArrowCurve.png.meta │ │ │ │ ├── ArrowStraight.png │ │ │ │ ├── ArrowStraight.png.meta │ │ │ │ ├── ArrowTwist.png │ │ │ │ ├── ArrowTwist.png.meta │ │ │ │ ├── Ball.physicMaterial │ │ │ │ ├── Ball.physicMaterial.meta │ │ │ │ ├── BigLogo+.png │ │ │ │ ├── BigLogo+.png.meta │ │ │ │ ├── Box.png │ │ │ │ ├── Box.png.meta │ │ │ │ ├── Button.png │ │ │ │ ├── Button.png.meta │ │ │ │ ├── Canvas.prefab │ │ │ │ ├── Canvas.prefab.meta │ │ │ │ ├── Circle.png │ │ │ │ ├── Circle.png.meta │ │ │ │ ├── FingerVisualization.png │ │ │ │ ├── FingerVisualization.png.meta │ │ │ │ ├── GlowingDot.png │ │ │ │ ├── GlowingDot.png.meta │ │ │ │ ├── GlowingLine.png │ │ │ │ ├── GlowingLine.png.meta │ │ │ │ ├── GlowingTrail.png │ │ │ │ ├── GlowingTrail.png.meta │ │ │ │ ├── Line.mat │ │ │ │ ├── Line.mat.meta │ │ │ │ ├── Logo+.png │ │ │ │ ├── Logo+.png.meta │ │ │ │ ├── Plus.png │ │ │ │ ├── Plus.png.meta │ │ │ │ ├── Trail.mat │ │ │ │ └── Trail.mat.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── LeanInfoText.cs │ │ │ │ ├── LeanInfoText.cs.meta │ │ │ │ ├── LeanPulseScale.cs │ │ │ │ ├── LeanPulseScale.cs.meta │ │ │ │ ├── LeanTouchEvents.cs │ │ │ │ └── LeanTouchEvents.cs.meta │ │ │ ├── Sidescroll2D.unity │ │ │ ├── Sidescroll2D.unity.meta │ │ │ ├── Sidescroll3D.unity │ │ │ ├── Sidescroll3D.unity.meta │ │ │ ├── TouchEvents.unity │ │ │ ├── TouchEvents.unity.meta │ │ │ ├── TwistRotateCustomAxis.unity │ │ │ └── TwistRotateCustomAxis.unity.meta │ │ ├── Extras.meta │ │ ├── Extras │ │ │ ├── LeanDragCamera.cs │ │ │ ├── LeanDragCamera.cs.meta │ │ │ ├── LeanDragTrail.cs │ │ │ ├── LeanDragTrail.cs.meta │ │ │ ├── LeanDragTranslate.cs │ │ │ ├── LeanDragTranslate.cs.meta │ │ │ ├── LeanFingerData.cs │ │ │ ├── LeanFingerData.cs.meta │ │ │ ├── LeanFingerDown.cs │ │ │ ├── LeanFingerDown.cs.meta │ │ │ ├── LeanFingerFilter.cs │ │ │ ├── LeanFingerFilter.cs.meta │ │ │ ├── LeanFingerOld.cs │ │ │ ├── LeanFingerOld.cs.meta │ │ │ ├── LeanFingerSwipe.cs │ │ │ ├── LeanFingerSwipe.cs.meta │ │ │ ├── LeanFingerTap.cs │ │ │ ├── LeanFingerTap.cs.meta │ │ │ ├── LeanFingerUp.cs │ │ │ ├── LeanFingerUp.cs.meta │ │ │ ├── LeanFingerUpdate.cs │ │ │ ├── LeanFingerUpdate.cs.meta │ │ │ ├── LeanPinchScale.cs │ │ │ ├── LeanPinchScale.cs.meta │ │ │ ├── LeanScreenDepth.cs │ │ │ ├── LeanScreenDepth.cs.meta │ │ │ ├── LeanSelect.cs │ │ │ ├── LeanSelect.cs.meta │ │ │ ├── LeanSelectBase.cs │ │ │ ├── LeanSelectBase.cs.meta │ │ │ ├── LeanSelectable.cs │ │ │ ├── LeanSelectable.cs.meta │ │ │ ├── LeanSelectableBehaviour.cs │ │ │ ├── LeanSelectableBehaviour.cs.meta │ │ │ ├── LeanSelectableGraphicColor.cs │ │ │ ├── LeanSelectableGraphicColor.cs.meta │ │ │ ├── LeanSelectableRendererColor.cs │ │ │ ├── LeanSelectableRendererColor.cs.meta │ │ │ ├── LeanSelectableSpriteRendererColor.cs │ │ │ ├── LeanSelectableSpriteRendererColor.cs.meta │ │ │ ├── LeanSwipeBase.cs │ │ │ ├── LeanSwipeBase.cs.meta │ │ │ ├── LeanTwistRotate.cs │ │ │ ├── LeanTwistRotate.cs.meta │ │ │ ├── LeanTwistRotateAxis.cs │ │ │ └── LeanTwistRotateAxis.cs.meta │ │ ├── GUIDE.asset │ │ ├── GUIDE.asset.meta │ │ ├── LeanTouch.asmdef │ │ ├── LeanTouch.asmdef.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── LeanFinger.cs │ │ │ ├── LeanFinger.cs.meta │ │ │ ├── LeanGesture.cs │ │ │ ├── LeanGesture.cs.meta │ │ │ ├── LeanSnapshot.cs │ │ │ ├── LeanSnapshot.cs.meta │ │ │ ├── LeanTouch.cs │ │ │ └── LeanTouch.cs.meta │ ├── Transition.meta │ └── Transition │ │ ├── Documentation.meta │ │ ├── Documentation │ │ ├── Documentation.html │ │ └── Documentation.html.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ ├── 01 Animation Repeater.unity │ │ ├── 01 Animation Repeater.unity.meta │ │ ├── 02 Animation From Button.unity │ │ ├── 02 Animation From Button.unity.meta │ │ ├── 03 Join.unity │ │ ├── 03 Join.unity.meta │ │ ├── 04 Branches.unity │ │ ├── 04 Branches.unity.meta │ │ ├── 05 Multiple.unity │ │ ├── 05 Multiple.unity.meta │ │ ├── 06 Ease.unity │ │ ├── 06 Ease.unity.meta │ │ ├── 07 Speed.unity │ │ ├── 07 Speed.unity.meta │ │ ├── 08 Time.unity │ │ ├── 08 Time.unity.meta │ │ ├── 09 Alias.unity │ │ ├── 09 Alias.unity.meta │ │ ├── 10 Prefab.unity │ │ ├── 10 Prefab.unity.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── RepeatFromCode.cs │ │ │ └── RepeatFromCode.cs.meta │ │ ├── Extras.meta │ │ ├── Extras │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Fade In.prefab │ │ │ ├── Fade In.prefab.meta │ │ │ ├── Fade Out.prefab │ │ │ ├── Fade Out.prefab.meta │ │ │ ├── Play Sound.prefab │ │ │ ├── Play Sound.prefab.meta │ │ │ ├── Scale InOut 1.1 Squash.prefab │ │ │ ├── Scale InOut 1.1 Squash.prefab.meta │ │ │ ├── Scale InOut 1.1.prefab │ │ │ ├── Scale InOut 1.1.prefab.meta │ │ │ ├── Scale.xy In.prefab │ │ │ ├── Scale.xy In.prefab.meta │ │ │ ├── Scale.xy Out.prefab │ │ │ └── Scale.xy Out.prefab.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── LeanAnimation.cs │ │ │ ├── LeanAnimation.cs.meta │ │ │ ├── LeanAnimationOnce.cs │ │ │ ├── LeanAnimationOnce.cs.meta │ │ │ ├── LeanAnimationRepeater.cs │ │ │ └── LeanAnimationRepeater.cs.meta │ │ ├── GUIDE.asset │ │ ├── GUIDE.asset.meta │ │ ├── LeanTransition.asmdef │ │ ├── LeanTransition.asmdef.meta │ │ ├── Methods.meta │ │ ├── Methods │ │ ├── AudioSource.meta │ │ ├── AudioSource │ │ │ ├── LeanAudioSourceVolume.cs │ │ │ └── LeanAudioSourceVolume.cs.meta │ │ ├── GameObject.meta │ │ ├── GameObject │ │ │ ├── LeanGameObjectSetActive.cs │ │ │ └── LeanGameObjectSetActive.cs.meta │ │ ├── LeanDelay.cs │ │ ├── LeanDelay.cs.meta │ │ ├── LeanEvent.cs │ │ ├── LeanEvent.cs.meta │ │ ├── LeanGet.cs │ │ ├── LeanGet.cs.meta │ │ ├── LeanInsert.cs │ │ ├── LeanInsert.cs.meta │ │ ├── LeanJoin.cs │ │ ├── LeanJoin.cs.meta │ │ ├── LeanJoinDelay.cs │ │ ├── LeanJoinDelay.cs.meta │ │ ├── LeanJoinInsert.cs │ │ ├── LeanJoinInsert.cs.meta │ │ ├── LeanPlaySound.cs │ │ ├── LeanPlaySound.cs.meta │ │ ├── LeanQueue.cs │ │ ├── LeanQueue.cs.meta │ │ ├── LeanTime.cs │ │ ├── LeanTime.cs.meta │ │ ├── LeanTimeScale.cs │ │ ├── LeanTimeScale.cs.meta │ │ ├── Light.meta │ │ ├── Light │ │ │ ├── LeanLightColor.cs │ │ │ ├── LeanLightColor.cs.meta │ │ │ ├── LeanLightIntensity.cs │ │ │ ├── LeanLightIntensity.cs.meta │ │ │ ├── LeanLightRange.cs │ │ │ └── LeanLightRange.cs.meta │ │ ├── Material.meta │ │ ├── Material │ │ │ ├── LeanMaterialColor.cs │ │ │ ├── LeanMaterialColor.cs.meta │ │ │ ├── LeanMaterialFloat.cs │ │ │ ├── LeanMaterialFloat.cs.meta │ │ │ ├── LeanMaterialVector.cs │ │ │ └── LeanMaterialVector.cs.meta │ │ ├── SpriteRenderer.meta │ │ ├── SpriteRenderer │ │ │ ├── LeanSpriteRendererColor.cs │ │ │ └── LeanSpriteRendererColor.cs.meta │ │ ├── Transform.meta │ │ ├── Transform │ │ │ ├── LeanTransformEulerAngles.cs │ │ │ ├── LeanTransformEulerAngles.cs.meta │ │ │ ├── LeanTransformLocalEulerAngles.cs │ │ │ ├── LeanTransformLocalEulerAngles.cs.meta │ │ │ ├── LeanTransformLocalPosition.cs │ │ │ ├── LeanTransformLocalPosition.cs.meta │ │ │ ├── LeanTransformLocalPositionX.cs │ │ │ ├── LeanTransformLocalPositionX.cs.meta │ │ │ ├── LeanTransformLocalPositionY.cs │ │ │ ├── LeanTransformLocalPositionY.cs.meta │ │ │ ├── LeanTransformLocalPositionZ.cs │ │ │ ├── LeanTransformLocalPositionZ.cs.meta │ │ │ ├── LeanTransformLocalRotation.cs │ │ │ ├── LeanTransformLocalRotation.cs.meta │ │ │ ├── LeanTransformLocalScale.cs │ │ │ ├── LeanTransformLocalScale.cs.meta │ │ │ ├── LeanTransformLocalScaleX.cs │ │ │ ├── LeanTransformLocalScaleX.cs.meta │ │ │ ├── LeanTransformLocalScaleY.cs │ │ │ ├── LeanTransformLocalScaleY.cs.meta │ │ │ ├── LeanTransformLocalScaleZ.cs │ │ │ ├── LeanTransformLocalScaleZ.cs.meta │ │ │ ├── LeanTransformPosition.cs │ │ │ ├── LeanTransformPosition.cs.meta │ │ │ ├── LeanTransformPositionX.cs │ │ │ ├── LeanTransformPositionX.cs.meta │ │ │ ├── LeanTransformPositionY.cs │ │ │ ├── LeanTransformPositionY.cs.meta │ │ │ ├── LeanTransformPositionZ.cs │ │ │ ├── LeanTransformPositionZ.cs.meta │ │ │ ├── LeanTransformRotate.cs │ │ │ ├── LeanTransformRotate.cs.meta │ │ │ ├── LeanTransformRotation.cs │ │ │ ├── LeanTransformRotation.cs.meta │ │ │ ├── LeanTransformTranslate.cs │ │ │ └── LeanTransformTranslate.cs.meta │ │ ├── UI.meta │ │ └── UI │ │ │ ├── LeanCanvasGroupAlpha.cs │ │ │ ├── LeanCanvasGroupAlpha.cs.meta │ │ │ ├── LeanCanvasGroupBlocksRaycasts.cs │ │ │ ├── LeanCanvasGroupBlocksRaycasts.cs.meta │ │ │ ├── LeanCanvasGroupInteractable.cs │ │ │ ├── LeanCanvasGroupInteractable.cs.meta │ │ │ ├── LeanGraphicColor.cs │ │ │ ├── LeanGraphicColor.cs.meta │ │ │ ├── LeanImageFillAmount.cs │ │ │ ├── LeanImageFillAmount.cs.meta │ │ │ ├── LeanRectTransformAnchorMax.cs │ │ │ ├── LeanRectTransformAnchorMax.cs.meta │ │ │ ├── LeanRectTransformAnchorMin.cs │ │ │ ├── LeanRectTransformAnchorMin.cs.meta │ │ │ ├── LeanRectTransformAnchoredPosition.cs │ │ │ ├── LeanRectTransformAnchoredPosition.cs.meta │ │ │ ├── LeanRectTransformAnchoredPositionX.cs │ │ │ ├── LeanRectTransformAnchoredPositionX.cs.meta │ │ │ ├── LeanRectTransformAnchoredPositionY.cs │ │ │ ├── LeanRectTransformAnchoredPositionY.cs.meta │ │ │ ├── LeanRectTransformOffsetMax.cs │ │ │ ├── LeanRectTransformOffsetMax.cs.meta │ │ │ ├── LeanRectTransformOffsetMin.cs │ │ │ ├── LeanRectTransformOffsetMin.cs.meta │ │ │ ├── LeanRectTransformPivot.cs │ │ │ ├── LeanRectTransformPivot.cs.meta │ │ │ ├── LeanRectTransformPivotX.cs │ │ │ ├── LeanRectTransformPivotX.cs.meta │ │ │ ├── LeanRectTransformPivotY.cs │ │ │ ├── LeanRectTransformPivotY.cs.meta │ │ │ ├── LeanRectTransformSetAsLastSibling.cs │ │ │ ├── LeanRectTransformSetAsLastSibling.cs.meta │ │ │ ├── LeanRectTransformSizeDelta.cs │ │ │ ├── LeanRectTransformSizeDelta.cs.meta │ │ │ ├── LeanTransformLocalScaleXY.cs │ │ │ └── LeanTransformLocalScaleXY.cs.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── LeanEase.cs │ │ ├── LeanEase.cs.meta │ │ ├── LeanMethod.cs │ │ ├── LeanMethod.cs.meta │ │ ├── LeanPlayer.cs │ │ ├── LeanPlayer.cs.meta │ │ ├── LeanState.cs │ │ ├── LeanState.cs.meta │ │ ├── LeanStateWithTarget.cs │ │ ├── LeanStateWithTarget.cs.meta │ │ ├── LeanTiming.cs │ │ ├── LeanTiming.cs.meta │ │ ├── LeanTransition.cs │ │ └── LeanTransition.cs.meta ├── Plugins.meta ├── Plugins │ ├── Demigiant.meta │ ├── Demigiant │ │ ├── DOTween.meta │ │ ├── DOTween │ │ │ ├── DOTween.XML │ │ │ ├── DOTween.XML.meta │ │ │ ├── DOTween.dll │ │ │ ├── DOTween.dll.mdb │ │ │ ├── DOTween.dll.mdb.meta │ │ │ ├── DOTween.dll.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── DOTweenEditor.XML │ │ │ │ ├── DOTweenEditor.XML.meta │ │ │ │ ├── DOTweenEditor.dll │ │ │ │ ├── DOTweenEditor.dll.mdb │ │ │ │ ├── DOTweenEditor.dll.mdb.meta │ │ │ │ ├── DOTweenEditor.dll.meta │ │ │ │ ├── Imgs.meta │ │ │ │ └── Imgs │ │ │ │ │ ├── DOTweenIcon.png │ │ │ │ │ ├── DOTweenIcon.png.meta │ │ │ │ │ ├── Footer.png │ │ │ │ │ ├── Footer.png.meta │ │ │ │ │ ├── Footer_dark.png │ │ │ │ │ ├── Footer_dark.png.meta │ │ │ │ │ ├── Header.jpg │ │ │ │ │ └── Header.jpg.meta │ │ │ ├── Modules.meta │ │ │ ├── Modules │ │ │ │ ├── DOTween.Modules.asmdef │ │ │ │ ├── DOTween.Modules.asmdef.meta │ │ │ │ ├── DOTweenModuleAudio.cs │ │ │ │ ├── DOTweenModuleAudio.cs.meta │ │ │ │ ├── DOTweenModulePhysics.cs │ │ │ │ ├── DOTweenModulePhysics.cs.meta │ │ │ │ ├── DOTweenModulePhysics2D.cs │ │ │ │ ├── DOTweenModulePhysics2D.cs.meta │ │ │ │ ├── DOTweenModuleSprite.cs │ │ │ │ ├── DOTweenModuleSprite.cs.meta │ │ │ │ ├── DOTweenModuleUI.cs │ │ │ │ ├── DOTweenModuleUI.cs.meta │ │ │ │ ├── DOTweenModuleUnityVersion.cs │ │ │ │ ├── DOTweenModuleUnityVersion.cs.meta │ │ │ │ ├── DOTweenModuleUtils.cs │ │ │ │ └── DOTweenModuleUtils.cs.meta │ │ │ ├── readme.txt │ │ │ └── readme.txt.meta │ │ ├── DOTweenPro Examples.meta │ │ ├── DOTweenPro Examples │ │ │ ├── DOTweenAnimation_Advanced.unity │ │ │ ├── DOTweenAnimation_Advanced.unity.meta │ │ │ ├── DOTweenAnimation_Basics.unity │ │ │ ├── DOTweenAnimation_Basics.unity.meta │ │ │ ├── DOTweenPath.unity │ │ │ ├── DOTweenPath.unity.meta │ │ │ ├── Examples Assets.meta │ │ │ └── Examples Assets │ │ │ │ ├── dotweenpro_logo.png │ │ │ │ └── dotweenpro_logo.png.meta │ │ ├── DOTweenPro.meta │ │ ├── DOTweenPro │ │ │ ├── DOTweenAnimation.cs │ │ │ ├── DOTweenAnimation.cs.meta │ │ │ ├── DOTweenDeAudio.cs │ │ │ ├── DOTweenDeAudio.cs.meta │ │ │ ├── DOTweenDeUnityExtended.cs │ │ │ ├── DOTweenDeUnityExtended.cs.meta │ │ │ ├── DOTweenPro.Scripts.asmdef │ │ │ ├── DOTweenPro.Scripts.asmdef.meta │ │ │ ├── DOTweenPro.XML │ │ │ ├── DOTweenPro.XML.meta │ │ │ ├── DOTweenPro.dll │ │ │ ├── DOTweenPro.dll.mdb │ │ │ ├── DOTweenPro.dll.mdb.meta │ │ │ ├── DOTweenPro.dll.meta │ │ │ ├── DOTweenProShortcuts.cs │ │ │ ├── DOTweenProShortcuts.cs.meta │ │ │ ├── DOTweenTextMeshPro.cs │ │ │ ├── DOTweenTextMeshPro.cs.meta │ │ │ ├── DOTweenTk2d.cs │ │ │ ├── DOTweenTk2d.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── DOTweenAnimationInspector.cs │ │ │ │ ├── DOTweenAnimationInspector.cs.meta │ │ │ │ ├── DOTweenPreviewManager.cs │ │ │ │ ├── DOTweenPreviewManager.cs.meta │ │ │ │ ├── DOTweenPro.EditorScripts.asmdef │ │ │ │ ├── DOTweenPro.EditorScripts.asmdef.meta │ │ │ │ ├── DOTweenProEditor.XML │ │ │ │ ├── DOTweenProEditor.XML.meta │ │ │ │ ├── DOTweenProEditor.dll │ │ │ │ ├── DOTweenProEditor.dll.mdb │ │ │ │ ├── DOTweenProEditor.dll.mdb.meta │ │ │ │ ├── DOTweenProEditor.dll.meta │ │ │ │ ├── DOTweenProEditor.zip │ │ │ │ └── DOTweenProEditor.zip.meta │ │ │ ├── readme.txt │ │ │ └── readme.txt.meta │ │ ├── DemiLib.meta │ │ ├── DemiLib │ │ │ ├── Core.meta │ │ │ └── Core │ │ │ │ ├── DemiLib.dll │ │ │ │ ├── DemiLib.dll.mdb │ │ │ │ ├── DemiLib.dll.mdb.meta │ │ │ │ ├── DemiLib.dll.meta │ │ │ │ ├── DemiLib.xml │ │ │ │ ├── DemiLib.xml.meta │ │ │ │ ├── Editor.meta │ │ │ │ └── Editor │ │ │ │ ├── DemiEditor.dll │ │ │ │ ├── DemiEditor.dll.mdb │ │ │ │ ├── DemiEditor.dll.mdb.meta │ │ │ │ ├── DemiEditor.dll.meta │ │ │ │ ├── DemiEditor.xml │ │ │ │ ├── DemiEditor.xml.meta │ │ │ │ ├── Imgs.meta │ │ │ │ └── Imgs │ │ │ │ ├── blackSquare.png │ │ │ │ ├── blackSquare.png.meta │ │ │ │ ├── blackSquareAlpha10.png │ │ │ │ ├── blackSquareAlpha10.png.meta │ │ │ │ ├── blackSquareAlpha15.png │ │ │ │ ├── blackSquareAlpha15.png.meta │ │ │ │ ├── blackSquareAlpha25.png │ │ │ │ ├── blackSquareAlpha25.png.meta │ │ │ │ ├── blackSquareAlpha50.png │ │ │ │ ├── blackSquareAlpha50.png.meta │ │ │ │ ├── blackSquareAlpha80.png │ │ │ │ ├── blackSquareAlpha80.png.meta │ │ │ │ ├── blueSquare.png │ │ │ │ ├── blueSquare.png.meta │ │ │ │ ├── circle.png │ │ │ │ ├── circle.png.meta │ │ │ │ ├── greenSquare.png │ │ │ │ ├── greenSquare.png.meta │ │ │ │ ├── grid_bright.png │ │ │ │ ├── grid_bright.png.meta │ │ │ │ ├── grid_dark.png │ │ │ │ ├── grid_dark.png.meta │ │ │ │ ├── ico_alert.png │ │ │ │ ├── ico_alert.png.meta │ │ │ │ ├── ico_alignB.png │ │ │ │ ├── ico_alignB.png.meta │ │ │ │ ├── ico_alignBC.png │ │ │ │ ├── ico_alignBC.png.meta │ │ │ │ ├── ico_alignBL.png │ │ │ │ ├── ico_alignBL.png.meta │ │ │ │ ├── ico_alignBR.png │ │ │ │ ├── ico_alignBR.png.meta │ │ │ │ ├── ico_alignCC.png │ │ │ │ ├── ico_alignCC.png.meta │ │ │ │ ├── ico_alignCL.png │ │ │ │ ├── ico_alignCL.png.meta │ │ │ │ ├── ico_alignCR.png │ │ │ │ ├── ico_alignCR.png.meta │ │ │ │ ├── ico_alignHC.png │ │ │ │ ├── ico_alignHC.png.meta │ │ │ │ ├── ico_alignL.png │ │ │ │ ├── ico_alignL.png.meta │ │ │ │ ├── ico_alignR.png │ │ │ │ ├── ico_alignR.png.meta │ │ │ │ ├── ico_alignT.png │ │ │ │ ├── ico_alignT.png.meta │ │ │ │ ├── ico_alignTC.png │ │ │ │ ├── ico_alignTC.png.meta │ │ │ │ ├── ico_alignTL.png │ │ │ │ ├── ico_alignTL.png.meta │ │ │ │ ├── ico_alignTR.png │ │ │ │ ├── ico_alignTR.png.meta │ │ │ │ ├── ico_alignVC.png │ │ │ │ ├── ico_alignVC.png.meta │ │ │ │ ├── ico_camera.png │ │ │ │ ├── ico_camera.png.meta │ │ │ │ ├── ico_camera_border.png │ │ │ │ ├── ico_camera_border.png.meta │ │ │ │ ├── ico_cog.png │ │ │ │ ├── ico_cog.png.meta │ │ │ │ ├── ico_cog_border.png │ │ │ │ ├── ico_cog_border.png.meta │ │ │ │ ├── ico_comment.png │ │ │ │ ├── ico_comment.png.meta │ │ │ │ ├── ico_comment_border.png │ │ │ │ ├── ico_comment_border.png.meta │ │ │ │ ├── ico_delete.png │ │ │ │ ├── ico_delete.png.meta │ │ │ │ ├── ico_demigiant.png │ │ │ │ ├── ico_demigiant.png.meta │ │ │ │ ├── ico_distributeHAlignT.png │ │ │ │ ├── ico_distributeHAlignT.png.meta │ │ │ │ ├── ico_distributeVAlignL.png │ │ │ │ ├── ico_distributeVAlignL.png.meta │ │ │ │ ├── ico_end.png │ │ │ │ ├── ico_end.png.meta │ │ │ │ ├── ico_flipV.png │ │ │ │ ├── ico_flipV.png.meta │ │ │ │ ├── ico_foldout_closed.png │ │ │ │ ├── ico_foldout_closed.png.meta │ │ │ │ ├── ico_foldout_open.png │ │ │ │ ├── ico_foldout_open.png.meta │ │ │ │ ├── ico_heart.png │ │ │ │ ├── ico_heart.png.meta │ │ │ │ ├── ico_heart_border.png │ │ │ │ ├── ico_heart_border.png.meta │ │ │ │ ├── ico_light.png │ │ │ │ ├── ico_light.png.meta │ │ │ │ ├── ico_light_border.png │ │ │ │ ├── ico_light_border.png.meta │ │ │ │ ├── ico_lock.png │ │ │ │ ├── ico_lock.png.meta │ │ │ │ ├── ico_lock_open.png │ │ │ │ ├── ico_lock_open.png.meta │ │ │ │ ├── ico_nodeArrow.png │ │ │ │ ├── ico_nodeArrow.png.meta │ │ │ │ ├── ico_ok.png │ │ │ │ ├── ico_ok.png.meta │ │ │ │ ├── ico_optionsDropdown.png │ │ │ │ ├── ico_optionsDropdown.png.meta │ │ │ │ ├── ico_play.png │ │ │ │ ├── ico_play.png.meta │ │ │ │ ├── ico_play_border.png │ │ │ │ ├── ico_play_border.png.meta │ │ │ │ ├── ico_skull.png │ │ │ │ ├── ico_skull.png.meta │ │ │ │ ├── ico_skull_border.png │ │ │ │ ├── ico_skull_border.png.meta │ │ │ │ ├── ico_star.png │ │ │ │ ├── ico_star.png.meta │ │ │ │ ├── ico_star_border.png │ │ │ │ ├── ico_star_border.png.meta │ │ │ │ ├── ico_ui.png │ │ │ │ ├── ico_ui.png.meta │ │ │ │ ├── ico_ui_border.png │ │ │ │ ├── ico_ui_border.png.meta │ │ │ │ ├── ico_visibility.png │ │ │ │ ├── ico_visibility.png.meta │ │ │ │ ├── ico_visibility_off.png │ │ │ │ ├── ico_visibility_off.png.meta │ │ │ │ ├── orangeSquare.png │ │ │ │ ├── orangeSquare.png.meta │ │ │ │ ├── project.meta │ │ │ │ ├── project │ │ │ │ ├── ico_atlas.png │ │ │ │ ├── ico_atlas.png.meta │ │ │ │ ├── ico_audio.png │ │ │ │ ├── ico_audio.png.meta │ │ │ │ ├── ico_bundle.png │ │ │ │ ├── ico_bundle.png.meta │ │ │ │ ├── ico_cog.png │ │ │ │ ├── ico_cog.png.meta │ │ │ │ ├── ico_cross.png │ │ │ │ ├── ico_cross.png.meta │ │ │ │ ├── ico_demigiant.png │ │ │ │ ├── ico_demigiant.png.meta │ │ │ │ ├── ico_folder.png │ │ │ │ ├── ico_folder.png.meta │ │ │ │ ├── ico_fonts.png │ │ │ │ ├── ico_fonts.png.meta │ │ │ │ ├── ico_heart.png │ │ │ │ ├── ico_heart.png.meta │ │ │ │ ├── ico_materials.png │ │ │ │ ├── ico_materials.png.meta │ │ │ │ ├── ico_models.png │ │ │ │ ├── ico_models.png.meta │ │ │ │ ├── ico_particles.png │ │ │ │ ├── ico_particles.png.meta │ │ │ │ ├── ico_play.png │ │ │ │ ├── ico_play.png.meta │ │ │ │ ├── ico_prefab.png │ │ │ │ ├── ico_prefab.png.meta │ │ │ │ ├── ico_scripts.png │ │ │ │ ├── ico_scripts.png.meta │ │ │ │ ├── ico_shaders.png │ │ │ │ ├── ico_shaders.png.meta │ │ │ │ ├── ico_skull.png │ │ │ │ ├── ico_skull.png.meta │ │ │ │ ├── ico_star.png │ │ │ │ ├── ico_star.png.meta │ │ │ │ ├── ico_terrains.png │ │ │ │ ├── ico_terrains.png.meta │ │ │ │ ├── ico_textures.png │ │ │ │ └── ico_textures.png.meta │ │ │ │ ├── purpleSquare.png │ │ │ │ ├── purpleSquare.png.meta │ │ │ │ ├── redSquare.png │ │ │ │ ├── redSquare.png.meta │ │ │ │ ├── squareBorder.png │ │ │ │ ├── squareBorder.png.meta │ │ │ │ ├── squareBorderAlpha15.png │ │ │ │ ├── squareBorderAlpha15.png.meta │ │ │ │ ├── squareBorderCurved.png │ │ │ │ ├── squareBorderCurved.png.meta │ │ │ │ ├── squareBorderCurved02.png │ │ │ │ ├── squareBorderCurved02.png.meta │ │ │ │ ├── squareBorderCurved02_darkBorders.png │ │ │ │ ├── squareBorderCurved02_darkBorders.png.meta │ │ │ │ ├── squareBorderCurvedAlpha.png │ │ │ │ ├── squareBorderCurvedAlpha.png.meta │ │ │ │ ├── squareBorderCurvedEmpty.png │ │ │ │ ├── squareBorderCurvedEmpty.png.meta │ │ │ │ ├── squareBorderCurvedEmpty02.png │ │ │ │ ├── squareBorderCurvedEmpty02.png.meta │ │ │ │ ├── squareBorderCurvedEmptyThick.png │ │ │ │ ├── squareBorderCurvedEmptyThick.png.meta │ │ │ │ ├── squareBorderCurved_darkBorders.png │ │ │ │ ├── squareBorderCurved_darkBorders.png.meta │ │ │ │ ├── squareBorderCurved_darkBordersAlpha.png │ │ │ │ ├── squareBorderCurved_darkBordersAlpha.png.meta │ │ │ │ ├── squareBorderEmpty.png │ │ │ │ ├── squareBorderEmpty.png.meta │ │ │ │ ├── squareBorderEmpty01.png │ │ │ │ ├── squareBorderEmpty01.png.meta │ │ │ │ ├── squareBorderEmpty02.png │ │ │ │ ├── squareBorderEmpty02.png.meta │ │ │ │ ├── squareBorderEmpty03.png │ │ │ │ ├── squareBorderEmpty03.png.meta │ │ │ │ ├── squareBorderThickEmpty.png │ │ │ │ ├── squareBorderThickEmpty.png.meta │ │ │ │ ├── squareBorderThickerEmpty.png │ │ │ │ ├── squareBorderThickerEmpty.png.meta │ │ │ │ ├── squareCorners03.png │ │ │ │ ├── squareCorners03.png.meta │ │ │ │ ├── squareCornersEmpty02.png │ │ │ │ ├── squareCornersEmpty02.png.meta │ │ │ │ ├── tileBars_empty.png │ │ │ │ ├── tileBars_empty.png.meta │ │ │ │ ├── tileBars_slanted.png │ │ │ │ ├── tileBars_slanted.png.meta │ │ │ │ ├── tileBars_slanted_alpha.png │ │ │ │ ├── tileBars_slanted_alpha.png.meta │ │ │ │ ├── transparentSquare.png │ │ │ │ ├── transparentSquare.png.meta │ │ │ │ ├── whiteDot.png │ │ │ │ ├── whiteDot.png.meta │ │ │ │ ├── whiteDot_darkBorder.png │ │ │ │ ├── whiteDot_darkBorder.png.meta │ │ │ │ ├── whiteDot_whiteBorderAlpha.png │ │ │ │ ├── whiteDot_whiteBorderAlpha.png.meta │ │ │ │ ├── whiteSquare.png │ │ │ │ ├── whiteSquare.png.meta │ │ │ │ ├── whiteSquareAlpha10.png │ │ │ │ ├── whiteSquareAlpha10.png.meta │ │ │ │ ├── whiteSquareAlpha15.png │ │ │ │ ├── whiteSquareAlpha15.png.meta │ │ │ │ ├── whiteSquareAlpha25.png │ │ │ │ ├── whiteSquareAlpha25.png.meta │ │ │ │ ├── whiteSquareAlpha50.png │ │ │ │ ├── whiteSquareAlpha50.png.meta │ │ │ │ ├── whiteSquareAlpha80.png │ │ │ │ ├── whiteSquareAlpha80.png.meta │ │ │ │ ├── whiteSquare_fadeOut_bt.png │ │ │ │ ├── whiteSquare_fadeOut_bt.png.meta │ │ │ │ ├── yellowSquare.png │ │ │ │ └── yellowSquare.png.meta │ │ ├── readme_DOTweenPro.txt │ │ └── readme_DOTweenPro.txt.meta │ ├── Easy Save 3.meta │ ├── Easy Save 3 │ │ ├── Change Log.meta │ │ ├── Change Log │ │ │ ├── Change Log.txt │ │ │ └── Change Log.txt.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AddES3Prefab.cs │ │ │ ├── AddES3Prefab.cs.meta │ │ │ ├── AutoSaveWindow.cs │ │ │ ├── AutoSaveWindow.cs.meta │ │ │ ├── ES3AutoSaveEditor.cs │ │ │ ├── ES3AutoSaveEditor.cs.meta │ │ │ ├── ES3AutoSaveMgrEditor.cs │ │ │ ├── ES3AutoSaveMgrEditor.cs.meta │ │ │ ├── ES3ClassTypeTemplate.txt │ │ │ ├── ES3ClassTypeTemplate.txt.meta │ │ │ ├── ES3ComponentTypeTemplate.txt │ │ │ ├── ES3ComponentTypeTemplate.txt.meta │ │ │ ├── ES3EditorStyle.cs │ │ │ ├── ES3EditorStyle.cs.meta │ │ │ ├── ES3EditorUtility.cs │ │ │ ├── ES3EditorUtility.cs.meta │ │ │ ├── ES3GlobalReferencesEditor.cs │ │ │ ├── ES3GlobalReferencesEditor.cs.meta │ │ │ ├── ES3InspectorInfoEditor.cs │ │ │ ├── ES3InspectorInfoEditor.cs.meta │ │ │ ├── ES3PlayMakerEditor.cs │ │ │ ├── ES3PlayMakerEditor.cs.meta │ │ │ ├── ES3Postprocessor.cs │ │ │ ├── ES3Postprocessor.cs.meta │ │ │ ├── ES3PrefabEditor.cs │ │ │ ├── ES3PrefabEditor.cs.meta │ │ │ ├── ES3ReferenceMgrEditor.cs │ │ │ ├── ES3ReferenceMgrEditor.cs.meta │ │ │ ├── ES3ScriptableObjectTypeTemplate.txt │ │ │ ├── ES3ScriptableObjectTypeTemplate.txt.meta │ │ │ ├── ES3SettingsEditor.cs │ │ │ ├── ES3SettingsEditor.cs.meta │ │ │ ├── ES3TypeTemplate.txt │ │ │ ├── ES3TypeTemplate.txt.meta │ │ │ ├── ES3Type_MaterialTemplate.txt │ │ │ ├── ES3Type_MaterialTemplate.txt.meta │ │ │ ├── ES3ValueTypeTemplate.txt │ │ │ ├── ES3ValueTypeTemplate.txt.meta │ │ │ ├── ES3Window.cs │ │ │ ├── ES3Window.cs.meta │ │ │ ├── HomeWindow.cs │ │ │ ├── HomeWindow.cs.meta │ │ │ ├── ReferencesWindow.cs │ │ │ ├── ReferencesWindow.cs.meta │ │ │ ├── SettingsWindow.cs │ │ │ ├── SettingsWindow.cs.meta │ │ │ ├── ToolsWindow.cs │ │ │ ├── ToolsWindow.cs.meta │ │ │ ├── TypesWindow.cs │ │ │ ├── TypesWindow.cs.meta │ │ │ ├── checkmark.png │ │ │ ├── checkmark.png.meta │ │ │ ├── checkmarkSmall.png │ │ │ ├── checkmarkSmall.png.meta │ │ │ ├── es3Logo16x16-bw.png │ │ │ ├── es3Logo16x16-bw.png.meta │ │ │ ├── es3Logo16x16.png │ │ │ └── es3Logo16x16.png.meta │ │ ├── Legacy.meta │ │ ├── Legacy │ │ │ ├── Easy Save 2.unitypackage │ │ │ └── Easy Save 2.unitypackage.meta │ │ ├── PlayMaker.meta │ │ ├── PlayMaker │ │ │ ├── ES3PlayMaker.cs │ │ │ └── ES3PlayMaker.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── ES3.meta │ │ │ └── ES3 │ │ │ │ ├── ES3Defaults.asset │ │ │ │ └── ES3Defaults.asset.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ │ ├── ES3Attributes.cs │ │ │ │ └── ES3Attributes.cs.meta │ │ │ ├── Auto Save.meta │ │ │ ├── Auto Save │ │ │ │ ├── ES3AutoSave.cs │ │ │ │ ├── ES3AutoSave.cs.meta │ │ │ │ ├── ES3AutoSaveMgr.cs │ │ │ │ └── ES3AutoSaveMgr.cs.meta │ │ │ ├── Debugging.meta │ │ │ ├── Debugging │ │ │ │ ├── ES3Debug.cs │ │ │ │ └── ES3Debug.cs.meta │ │ │ ├── ES3.cs │ │ │ ├── ES3.cs.meta │ │ │ ├── ES3Crypto.cs │ │ │ ├── ES3Crypto.cs.meta │ │ │ ├── ES3File.cs │ │ │ ├── ES3File.cs.meta │ │ │ ├── ES3IO.cs │ │ │ ├── ES3IO.cs.meta │ │ │ ├── ES3InspectorInfo.cs │ │ │ ├── ES3InspectorInfo.cs.meta │ │ │ ├── ES3Prefab.cs │ │ │ ├── ES3Prefab.cs.meta │ │ │ ├── ES3ReferenceMgr.cs │ │ │ ├── ES3ReferenceMgr.cs.meta │ │ │ ├── ES3ReferenceMgrBase.cs │ │ │ ├── ES3ReferenceMgrBase.cs.meta │ │ │ ├── ES3Reflection.cs │ │ │ ├── ES3Reflection.cs.meta │ │ │ ├── ES3SerializableDictionary.cs │ │ │ ├── ES3SerializableDictionary.cs.meta │ │ │ ├── ES3Spreadsheet.cs │ │ │ ├── ES3Spreadsheet.cs.meta │ │ │ ├── Readers.meta │ │ │ ├── Readers │ │ │ │ ├── ES3BinaryReader.cs │ │ │ │ ├── ES3BinaryReader.cs.meta │ │ │ │ ├── ES3JSONReader.cs │ │ │ │ ├── ES3JSONReader.cs.meta │ │ │ │ ├── ES3Reader.cs │ │ │ │ ├── ES3Reader.cs.meta │ │ │ │ ├── ES3XMLReader.cs │ │ │ │ └── ES3XMLReader.cs.meta │ │ │ ├── Referencing.meta │ │ │ ├── Referencing │ │ │ │ ├── ES3GlobalReferences.cs │ │ │ │ └── ES3GlobalReferences.cs.meta │ │ │ ├── Settings.meta │ │ │ ├── Settings │ │ │ │ ├── ES3DefaultSettings.cs │ │ │ │ ├── ES3DefaultSettings.cs.meta │ │ │ │ ├── ES3Defaults.cs │ │ │ │ ├── ES3Defaults.cs.meta │ │ │ │ ├── ES3Settings.cs │ │ │ │ └── ES3Settings.cs.meta │ │ │ ├── Streams.meta │ │ │ ├── Streams │ │ │ │ ├── ES3FileStream.cs │ │ │ │ ├── ES3FileStream.cs.meta │ │ │ │ ├── ES3PlayerPrefsStream.cs │ │ │ │ ├── ES3PlayerPrefsStream.cs.meta │ │ │ │ ├── ES3ResourcesStream.cs │ │ │ │ ├── ES3ResourcesStream.cs.meta │ │ │ │ ├── ES3Stream.cs │ │ │ │ └── ES3Stream.cs.meta │ │ │ ├── Types.meta │ │ │ ├── Types │ │ │ │ ├── Collection Types.meta │ │ │ │ ├── Collection Types │ │ │ │ │ ├── ES32DArrayType.cs │ │ │ │ │ ├── ES32DArrayType.cs.meta │ │ │ │ │ ├── ES33DArrayType.cs │ │ │ │ │ ├── ES33DArrayType.cs.meta │ │ │ │ │ ├── ES3ArrayType.cs │ │ │ │ │ ├── ES3ArrayType.cs.meta │ │ │ │ │ ├── ES3CollectionType.cs │ │ │ │ │ ├── ES3CollectionType.cs.meta │ │ │ │ │ ├── ES3DictionaryType.cs │ │ │ │ │ ├── ES3DictionaryType.cs.meta │ │ │ │ │ ├── ES3HashSetType.cs │ │ │ │ │ ├── ES3HashSetType.cs.meta │ │ │ │ │ ├── ES3ListType.cs │ │ │ │ │ ├── ES3ListType.cs.meta │ │ │ │ │ ├── ES3QueueType.cs │ │ │ │ │ ├── ES3QueueType.cs.meta │ │ │ │ │ ├── ES3StackType.cs │ │ │ │ │ └── ES3StackType.cs.meta │ │ │ │ ├── ES3ComponentType.cs │ │ │ │ ├── ES3ComponentType.cs.meta │ │ │ │ ├── ES3ObjectType.cs │ │ │ │ ├── ES3ObjectType.cs.meta │ │ │ │ ├── ES3Property.cs │ │ │ │ ├── ES3Property.cs.meta │ │ │ │ ├── ES3ScriptableObjectType.cs │ │ │ │ ├── ES3ScriptableObjectType.cs.meta │ │ │ │ ├── ES3Type.cs │ │ │ │ ├── ES3Type.cs.meta │ │ │ │ ├── ES3TypeMgr.cs │ │ │ │ ├── ES3TypeMgr.cs.meta │ │ │ │ ├── ES3UnityObjectType.cs │ │ │ │ ├── ES3UnityObjectType.cs.meta │ │ │ │ ├── NET Types.meta │ │ │ │ ├── NET Types │ │ │ │ │ ├── ES3Type_Random.cs │ │ │ │ │ └── ES3Type_Random.cs.meta │ │ │ │ ├── Primitive Types.meta │ │ │ │ ├── Primitive Types │ │ │ │ │ ├── ES3Type_DateTime.cs │ │ │ │ │ ├── ES3Type_DateTime.cs.meta │ │ │ │ │ ├── ES3Type_ES3Ref.cs │ │ │ │ │ ├── ES3Type_ES3Ref.cs.meta │ │ │ │ │ ├── ES3Type_UIntPtr.cs │ │ │ │ │ ├── ES3Type_UIntPtr.cs.meta │ │ │ │ │ ├── ES3Type_bool.cs │ │ │ │ │ ├── ES3Type_bool.cs.meta │ │ │ │ │ ├── ES3Type_byte.cs │ │ │ │ │ ├── ES3Type_byte.cs.meta │ │ │ │ │ ├── ES3Type_byteArray.cs │ │ │ │ │ ├── ES3Type_byteArray.cs.meta │ │ │ │ │ ├── ES3Type_char.cs │ │ │ │ │ ├── ES3Type_char.cs.meta │ │ │ │ │ ├── ES3Type_decimal.cs │ │ │ │ │ ├── ES3Type_decimal.cs.meta │ │ │ │ │ ├── ES3Type_double.cs │ │ │ │ │ ├── ES3Type_double.cs.meta │ │ │ │ │ ├── ES3Type_enum.cs │ │ │ │ │ ├── ES3Type_enum.cs.meta │ │ │ │ │ ├── ES3Type_float.cs │ │ │ │ │ ├── ES3Type_float.cs.meta │ │ │ │ │ ├── ES3Type_int.cs │ │ │ │ │ ├── ES3Type_int.cs.meta │ │ │ │ │ ├── ES3Type_intptr.cs │ │ │ │ │ ├── ES3Type_intptr.cs.meta │ │ │ │ │ ├── ES3Type_long.cs │ │ │ │ │ ├── ES3Type_long.cs.meta │ │ │ │ │ ├── ES3Type_sbyte.cs │ │ │ │ │ ├── ES3Type_sbyte.cs.meta │ │ │ │ │ ├── ES3Type_short.cs │ │ │ │ │ ├── ES3Type_short.cs.meta │ │ │ │ │ ├── ES3Type_string.cs │ │ │ │ │ ├── ES3Type_string.cs.meta │ │ │ │ │ ├── ES3Type_uint.cs │ │ │ │ │ ├── ES3Type_uint.cs.meta │ │ │ │ │ ├── ES3Type_ulong.cs │ │ │ │ │ ├── ES3Type_ulong.cs.meta │ │ │ │ │ ├── ES3Type_ushort.cs │ │ │ │ │ └── ES3Type_ushort.cs.meta │ │ │ │ ├── Reflected Types.meta │ │ │ │ ├── Reflected Types │ │ │ │ │ ├── ES3ReflectedComponentType.cs │ │ │ │ │ ├── ES3ReflectedComponentType.cs.meta │ │ │ │ │ ├── ES3ReflectedObjectType.cs │ │ │ │ │ ├── ES3ReflectedObjectType.cs.meta │ │ │ │ │ ├── ES3ReflectedScriptableObjectType.cs │ │ │ │ │ ├── ES3ReflectedScriptableObjectType.cs.meta │ │ │ │ │ ├── ES3ReflectedType.cs │ │ │ │ │ ├── ES3ReflectedType.cs.meta │ │ │ │ │ ├── ES3ReflectedUnityObjectType.cs │ │ │ │ │ ├── ES3ReflectedUnityObjectType.cs.meta │ │ │ │ │ ├── ES3ReflectedValueType.cs │ │ │ │ │ └── ES3ReflectedValueType.cs.meta │ │ │ │ ├── Unity Types.meta │ │ │ │ └── Unity Types │ │ │ │ │ ├── Component Types.meta │ │ │ │ │ ├── Component Types │ │ │ │ │ ├── ES3Type_BoxCollider.cs │ │ │ │ │ ├── ES3Type_BoxCollider.cs.meta │ │ │ │ │ ├── ES3Type_BoxCollider2D.cs │ │ │ │ │ ├── ES3Type_BoxCollider2D.cs.meta │ │ │ │ │ ├── ES3Type_Camera.cs │ │ │ │ │ ├── ES3Type_Camera.cs.meta │ │ │ │ │ ├── ES3Type_CapsuleCollider.cs │ │ │ │ │ ├── ES3Type_CapsuleCollider.cs.meta │ │ │ │ │ ├── ES3Type_EventSystem.cs │ │ │ │ │ ├── ES3Type_EventSystem.cs.meta │ │ │ │ │ ├── ES3Type_Image.cs │ │ │ │ │ ├── ES3Type_Image.cs.meta │ │ │ │ │ ├── ES3Type_MeshCollider.cs │ │ │ │ │ ├── ES3Type_MeshCollider.cs.meta │ │ │ │ │ ├── ES3Type_MeshFilter.cs │ │ │ │ │ ├── ES3Type_MeshFilter.cs.meta │ │ │ │ │ ├── ES3Type_MeshRenderer.cs │ │ │ │ │ ├── ES3Type_MeshRenderer.cs.meta │ │ │ │ │ ├── ES3Type_ParticleSystem.cs │ │ │ │ │ ├── ES3Type_ParticleSystem.cs.meta │ │ │ │ │ ├── ES3Type_PolygonCollider2D.cs │ │ │ │ │ ├── ES3Type_PolygonCollider2D.cs.meta │ │ │ │ │ ├── ES3Type_RawImage.cs │ │ │ │ │ ├── ES3Type_RawImage.cs.meta │ │ │ │ │ ├── ES3Type_SphereCollider.cs │ │ │ │ │ ├── ES3Type_SphereCollider.cs.meta │ │ │ │ │ ├── ES3Type_Text.cs │ │ │ │ │ ├── ES3Type_Text.cs.meta │ │ │ │ │ ├── ES3Type_Transform.cs │ │ │ │ │ └── ES3Type_Transform.cs.meta │ │ │ │ │ ├── ES3Type_AnimationCurve.cs │ │ │ │ │ ├── ES3Type_AnimationCurve.cs.meta │ │ │ │ │ ├── ES3Type_AudioClip.cs │ │ │ │ │ ├── ES3Type_AudioClip.cs.meta │ │ │ │ │ ├── ES3Type_BoneWeight.cs │ │ │ │ │ ├── ES3Type_BoneWeight.cs.meta │ │ │ │ │ ├── ES3Type_Bounds.cs │ │ │ │ │ ├── ES3Type_Bounds.cs.meta │ │ │ │ │ ├── ES3Type_CollisionModule.cs │ │ │ │ │ ├── ES3Type_CollisionModule.cs.meta │ │ │ │ │ ├── ES3Type_Color.cs │ │ │ │ │ ├── ES3Type_Color.cs.meta │ │ │ │ │ ├── ES3Type_Color32.cs │ │ │ │ │ ├── ES3Type_Color32.cs.meta │ │ │ │ │ ├── ES3Type_ColorBySpeedModule.cs │ │ │ │ │ ├── ES3Type_ColorBySpeedModule.cs.meta │ │ │ │ │ ├── ES3Type_ColorOverLifetimeModule.cs │ │ │ │ │ ├── ES3Type_ColorOverLifetimeModule.cs.meta │ │ │ │ │ ├── ES3Type_EmissionModule.cs │ │ │ │ │ ├── ES3Type_EmissionModule.cs.meta │ │ │ │ │ ├── ES3Type_ExternalForcesModule.cs │ │ │ │ │ ├── ES3Type_ExternalForcesModule.cs.meta │ │ │ │ │ ├── ES3Type_Flare.cs │ │ │ │ │ ├── ES3Type_Flare.cs.meta │ │ │ │ │ ├── ES3Type_Font.cs │ │ │ │ │ ├── ES3Type_Font.cs.meta │ │ │ │ │ ├── ES3Type_ForceOverLifetimeModule.cs │ │ │ │ │ ├── ES3Type_ForceOverLifetimeModule.cs.meta │ │ │ │ │ ├── ES3Type_GameObject.cs │ │ │ │ │ ├── ES3Type_GameObject.cs.meta │ │ │ │ │ ├── ES3Type_Gradient.cs │ │ │ │ │ ├── ES3Type_Gradient.cs.meta │ │ │ │ │ ├── ES3Type_GradientAlphaKey.cs │ │ │ │ │ ├── ES3Type_GradientAlphaKey.cs.meta │ │ │ │ │ ├── ES3Type_GradientColorKey.cs │ │ │ │ │ ├── ES3Type_GradientColorKey.cs.meta │ │ │ │ │ ├── ES3Type_InheritVelocityModule.cs │ │ │ │ │ ├── ES3Type_InheritVelocityModule.cs.meta │ │ │ │ │ ├── ES3Type_Keyframe.cs │ │ │ │ │ ├── ES3Type_Keyframe.cs.meta │ │ │ │ │ ├── ES3Type_LayerMask.cs │ │ │ │ │ ├── ES3Type_LayerMask.cs.meta │ │ │ │ │ ├── ES3Type_Light.cs │ │ │ │ │ ├── ES3Type_Light.cs.meta │ │ │ │ │ ├── ES3Type_LightsModule.cs │ │ │ │ │ ├── ES3Type_LightsModule.cs.meta │ │ │ │ │ ├── ES3Type_LimitVelocityOverLifetimeModule.cs │ │ │ │ │ ├── ES3Type_LimitVelocityOverLifetimeModule.cs.meta │ │ │ │ │ ├── ES3Type_MainModule.cs │ │ │ │ │ ├── ES3Type_MainModule.cs.meta │ │ │ │ │ ├── ES3Type_Material.cs │ │ │ │ │ ├── ES3Type_Material.cs.meta │ │ │ │ │ ├── ES3Type_Matrix4x4.cs │ │ │ │ │ ├── ES3Type_Matrix4x4.cs.meta │ │ │ │ │ ├── ES3Type_Mesh.cs │ │ │ │ │ ├── ES3Type_Mesh.cs.meta │ │ │ │ │ ├── ES3Type_MinMaxCurve.cs │ │ │ │ │ ├── ES3Type_MinMaxCurve.cs.meta │ │ │ │ │ ├── ES3Type_MinMaxGradient.cs │ │ │ │ │ ├── ES3Type_MinMaxGradient.cs.meta │ │ │ │ │ ├── ES3Type_NoiseModule.cs │ │ │ │ │ ├── ES3Type_NoiseModule.cs.meta │ │ │ │ │ ├── ES3Type_PhysicMaterial.cs │ │ │ │ │ ├── ES3Type_PhysicMaterial.cs.meta │ │ │ │ │ ├── ES3Type_PhysicsMaterial2D.cs │ │ │ │ │ ├── ES3Type_PhysicsMaterial2D.cs.meta │ │ │ │ │ ├── ES3Type_Quaternion.cs │ │ │ │ │ ├── ES3Type_Quaternion.cs.meta │ │ │ │ │ ├── ES3Type_Rect.cs │ │ │ │ │ ├── ES3Type_Rect.cs.meta │ │ │ │ │ ├── ES3Type_RectTransform.cs │ │ │ │ │ ├── ES3Type_RectTransform.cs.meta │ │ │ │ │ ├── ES3Type_RotationBySpeedModule.cs │ │ │ │ │ ├── ES3Type_RotationBySpeedModule.cs.meta │ │ │ │ │ ├── ES3Type_RotationOverLifetimeModule.cs │ │ │ │ │ ├── ES3Type_RotationOverLifetimeModule.cs.meta │ │ │ │ │ ├── ES3Type_Shader.cs │ │ │ │ │ ├── ES3Type_Shader.cs.meta │ │ │ │ │ ├── ES3Type_ShapeModule.cs │ │ │ │ │ ├── ES3Type_ShapeModule.cs.meta │ │ │ │ │ ├── ES3Type_SizeBySpeedModule.cs │ │ │ │ │ ├── ES3Type_SizeBySpeedModule.cs.meta │ │ │ │ │ ├── ES3Type_SizeOverLifetimeModule.cs │ │ │ │ │ ├── ES3Type_SizeOverLifetimeModule.cs.meta │ │ │ │ │ ├── ES3Type_SkinnedMeshRenderer.cs │ │ │ │ │ ├── ES3Type_SkinnedMeshRenderer.cs.meta │ │ │ │ │ ├── ES3Type_Sprite.cs │ │ │ │ │ ├── ES3Type_Sprite.cs.meta │ │ │ │ │ ├── ES3Type_SpriteRenderer.cs │ │ │ │ │ ├── ES3Type_SpriteRenderer.cs.meta │ │ │ │ │ ├── ES3Type_SubEmittersModule.cs │ │ │ │ │ ├── ES3Type_SubEmittersModule.cs.meta │ │ │ │ │ ├── ES3Type_Texture.cs │ │ │ │ │ ├── ES3Type_Texture.cs.meta │ │ │ │ │ ├── ES3Type_Texture2D.cs │ │ │ │ │ ├── ES3Type_Texture2D.cs.meta │ │ │ │ │ ├── ES3Type_TextureSheetAnimationModule.cs │ │ │ │ │ ├── ES3Type_TextureSheetAnimationModule.cs.meta │ │ │ │ │ ├── ES3Type_TrailModule.cs │ │ │ │ │ ├── ES3Type_TrailModule.cs.meta │ │ │ │ │ ├── ES3Type_TriggerModule.cs │ │ │ │ │ ├── ES3Type_TriggerModule.cs.meta │ │ │ │ │ ├── ES3Type_Vector2.cs │ │ │ │ │ ├── ES3Type_Vector2.cs.meta │ │ │ │ │ ├── ES3Type_Vector2Int.cs │ │ │ │ │ ├── ES3Type_Vector2Int.cs.meta │ │ │ │ │ ├── ES3Type_Vector3.cs │ │ │ │ │ ├── ES3Type_Vector3.cs.meta │ │ │ │ │ ├── ES3Type_Vector3Int.cs │ │ │ │ │ ├── ES3Type_Vector3Int.cs.meta │ │ │ │ │ ├── ES3Type_Vector4.cs │ │ │ │ │ ├── ES3Type_Vector4.cs.meta │ │ │ │ │ ├── ES3Type_VelocityOverLifetimeModule.cs │ │ │ │ │ └── ES3Type_VelocityOverLifetimeModule.cs.meta │ │ │ ├── Web.meta │ │ │ ├── Web │ │ │ │ ├── ES3Cloud.cs │ │ │ │ ├── ES3Cloud.cs.meta │ │ │ │ ├── ES3WebClass.cs │ │ │ │ └── ES3WebClass.cs.meta │ │ │ ├── Writers.meta │ │ │ └── Writers │ │ │ │ ├── ES3Binary.cs │ │ │ │ ├── ES3Binary.cs.meta │ │ │ │ ├── ES3BinaryWriter.cs │ │ │ │ ├── ES3BinaryWriter.cs.meta │ │ │ │ ├── ES3CacheWriter.cs │ │ │ │ ├── ES3CacheWriter.cs.meta │ │ │ │ ├── ES3JSONWriter.cs │ │ │ │ ├── ES3JSONWriter.cs.meta │ │ │ │ ├── ES3Writer.cs │ │ │ │ ├── ES3Writer.cs.meta │ │ │ │ ├── ES3XMLWriter.cs │ │ │ │ └── ES3XMLWriter.cs.meta │ │ ├── Web.meta │ │ └── Web │ │ │ ├── ES3Cloud.php │ │ │ └── ES3Cloud.php.meta │ ├── UniTask.meta │ └── UniTask │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── SplitterGUILayout.cs │ │ ├── SplitterGUILayout.cs.meta │ │ ├── UniTask.Editor.asmdef │ │ ├── UniTask.Editor.asmdef.meta │ │ ├── UniTaskTrackerTreeView.cs │ │ ├── UniTaskTrackerTreeView.cs.meta │ │ ├── UniTaskTrackerWindow.cs │ │ └── UniTaskTrackerWindow.cs.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ ├── AsyncLazy.cs │ │ ├── AsyncLazy.cs.meta │ │ ├── AsyncReactiveProperty.cs │ │ ├── AsyncReactiveProperty.cs.meta │ │ ├── AsyncUnit.cs │ │ ├── AsyncUnit.cs.meta │ │ ├── CancellationTokenEqualityComparer.cs │ │ ├── CancellationTokenEqualityComparer.cs.meta │ │ ├── CancellationTokenExtensions.cs │ │ ├── CancellationTokenExtensions.cs.meta │ │ ├── CancellationTokenSourceExtensions.cs │ │ ├── CancellationTokenSourceExtensions.cs.meta │ │ ├── Channel.cs │ │ ├── Channel.cs.meta │ │ ├── CompilerServices.meta │ │ ├── CompilerServices │ │ │ ├── AsyncMethodBuilderAttribute.cs │ │ │ ├── AsyncMethodBuilderAttribute.cs.meta │ │ │ ├── AsyncUniTaskMethodBuilder.cs │ │ │ ├── AsyncUniTaskMethodBuilder.cs.meta │ │ │ ├── AsyncUniTaskVoidMethodBuilder.cs │ │ │ ├── AsyncUniTaskVoidMethodBuilder.cs.meta │ │ │ ├── StateMachineRunner.cs │ │ │ └── StateMachineRunner.cs.meta │ │ ├── EnumerableAsyncExtensions.cs │ │ ├── EnumerableAsyncExtensions.cs.meta │ │ ├── EnumeratorAsyncExtensions.cs │ │ ├── EnumeratorAsyncExtensions.cs.meta │ │ ├── ExceptionExtensions.cs │ │ ├── ExceptionExtensions.cs.meta │ │ ├── External.meta │ │ ├── External │ │ │ ├── Addressables.meta │ │ │ ├── Addressables │ │ │ │ ├── AddressablesAsyncExtensions.cs │ │ │ │ ├── AddressablesAsyncExtensions.cs.meta │ │ │ │ ├── UniTask.Addressables.asmdef │ │ │ │ └── UniTask.Addressables.asmdef.meta │ │ │ ├── DOTween.meta │ │ │ ├── DOTween │ │ │ │ ├── DOTweenAsyncExtensions.cs │ │ │ │ ├── DOTweenAsyncExtensions.cs.meta │ │ │ │ ├── UniTask.DOTween.asmdef │ │ │ │ └── UniTask.DOTween.asmdef.meta │ │ │ ├── TextMeshPro.meta │ │ │ └── TextMeshPro │ │ │ │ ├── TextMeshProAsyncExtensions.InputField.cs │ │ │ │ ├── TextMeshProAsyncExtensions.InputField.cs.meta │ │ │ │ ├── TextMeshProAsyncExtensions.cs │ │ │ │ ├── TextMeshProAsyncExtensions.cs.meta │ │ │ │ ├── UniTask.TextMeshPro.asmdef │ │ │ │ └── UniTask.TextMeshPro.asmdef.meta │ │ ├── IUniTaskAsyncEnumerable.cs │ │ ├── IUniTaskAsyncEnumerable.cs.meta │ │ ├── IUniTaskSource.cs │ │ ├── IUniTaskSource.cs.meta │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── ArrayPool.cs │ │ │ ├── ArrayPool.cs.meta │ │ │ ├── ArrayPoolUtil.cs │ │ │ ├── ArrayPoolUtil.cs.meta │ │ │ ├── ArrayUtil.cs │ │ │ ├── ArrayUtil.cs.meta │ │ │ ├── ContinuationQueue.cs │ │ │ ├── ContinuationQueue.cs.meta │ │ │ ├── DiagnosticsExtensions.cs │ │ │ ├── DiagnosticsExtensions.cs.meta │ │ │ ├── Error.cs │ │ │ ├── Error.cs.meta │ │ │ ├── MinimumQueue.cs │ │ │ ├── MinimumQueue.cs.meta │ │ │ ├── PlayerLoopRunner.cs │ │ │ ├── PlayerLoopRunner.cs.meta │ │ │ ├── PooledDelegate.cs │ │ │ ├── PooledDelegate.cs.meta │ │ │ ├── RuntimeHelpersAbstraction.cs │ │ │ ├── RuntimeHelpersAbstraction.cs.meta │ │ │ ├── StatePool.cs │ │ │ ├── StatePool.cs.meta │ │ │ ├── TaskTracker.cs │ │ │ ├── TaskTracker.cs.meta │ │ │ ├── UnityEqualityComparer.cs │ │ │ ├── UnityEqualityComparer.cs.meta │ │ │ ├── UnityWebRequestExtensions.cs │ │ │ ├── UnityWebRequestExtensions.cs.meta │ │ │ ├── ValueStopwatch.cs │ │ │ ├── ValueStopwatch.cs.meta │ │ │ ├── WeakDictionary.cs │ │ │ └── WeakDictionary.cs.meta │ │ ├── Linq.meta │ │ ├── Linq │ │ │ ├── Aggregate.cs │ │ │ ├── Aggregate.cs.meta │ │ │ ├── All.cs │ │ │ ├── All.cs.meta │ │ │ ├── Any.cs │ │ │ ├── Any.cs.meta │ │ │ ├── AppendPrepend.cs │ │ │ ├── AppendPrepend.cs.meta │ │ │ ├── AsUniTaskAsyncEnumerable.cs │ │ │ ├── AsUniTaskAsyncEnumerable.cs.meta │ │ │ ├── AsyncEnumeratorBase.cs │ │ │ ├── AsyncEnumeratorBase.cs.meta │ │ │ ├── Average.cs │ │ │ ├── Average.cs.meta │ │ │ ├── Buffer.cs │ │ │ ├── Buffer.cs.meta │ │ │ ├── Cast.cs │ │ │ ├── Cast.cs.meta │ │ │ ├── CombineLatest.cs │ │ │ ├── CombineLatest.cs.meta │ │ │ ├── Concat.cs │ │ │ ├── Concat.cs.meta │ │ │ ├── Contains.cs │ │ │ ├── Contains.cs.meta │ │ │ ├── Count.cs │ │ │ ├── Count.cs.meta │ │ │ ├── Create.cs │ │ │ ├── Create.cs.meta │ │ │ ├── DefaultIfEmpty.cs │ │ │ ├── DefaultIfEmpty.cs.meta │ │ │ ├── Distinct.cs │ │ │ ├── Distinct.cs.meta │ │ │ ├── DistinctUntilChanged.cs │ │ │ ├── DistinctUntilChanged.cs.meta │ │ │ ├── Do.cs │ │ │ ├── Do.cs.meta │ │ │ ├── ElementAt.cs │ │ │ ├── ElementAt.cs.meta │ │ │ ├── Empty.cs │ │ │ ├── Empty.cs.meta │ │ │ ├── Except.cs │ │ │ ├── Except.cs.meta │ │ │ ├── First.cs │ │ │ ├── First.cs.meta │ │ │ ├── ForEach.cs │ │ │ ├── ForEach.cs.meta │ │ │ ├── GroupBy.cs │ │ │ ├── GroupBy.cs.meta │ │ │ ├── GroupJoin.cs │ │ │ ├── GroupJoin.cs.meta │ │ │ ├── Intersect.cs │ │ │ ├── Intersect.cs.meta │ │ │ ├── Join.cs │ │ │ ├── Join.cs.meta │ │ │ ├── Last.cs │ │ │ ├── Last.cs.meta │ │ │ ├── LongCount.cs │ │ │ ├── LongCount.cs.meta │ │ │ ├── Max.cs │ │ │ ├── Max.cs.meta │ │ │ ├── Min.cs │ │ │ ├── Min.cs.meta │ │ │ ├── MinMax.cs │ │ │ ├── MinMax.cs.meta │ │ │ ├── Never.cs │ │ │ ├── Never.cs.meta │ │ │ ├── OfType.cs │ │ │ ├── OfType.cs.meta │ │ │ ├── OrderBy.cs │ │ │ ├── OrderBy.cs.meta │ │ │ ├── Pairwise.cs │ │ │ ├── Pairwise.cs.meta │ │ │ ├── Publish.cs │ │ │ ├── Publish.cs.meta │ │ │ ├── Queue.cs │ │ │ ├── Queue.cs.meta │ │ │ ├── Range.cs │ │ │ ├── Range.cs.meta │ │ │ ├── Repeat.cs │ │ │ ├── Repeat.cs.meta │ │ │ ├── Return.cs │ │ │ ├── Return.cs.meta │ │ │ ├── Reverse.cs │ │ │ ├── Reverse.cs.meta │ │ │ ├── Select.cs │ │ │ ├── Select.cs.meta │ │ │ ├── SelectMany.cs │ │ │ ├── SelectMany.cs.meta │ │ │ ├── SequenceEqual.cs │ │ │ ├── SequenceEqual.cs.meta │ │ │ ├── Single.cs │ │ │ ├── Single.cs.meta │ │ │ ├── Skip.cs │ │ │ ├── Skip.cs.meta │ │ │ ├── SkipLast.cs │ │ │ ├── SkipLast.cs.meta │ │ │ ├── SkipUntil.cs │ │ │ ├── SkipUntil.cs.meta │ │ │ ├── SkipUntilCanceled.cs │ │ │ ├── SkipUntilCanceled.cs.meta │ │ │ ├── SkipWhile.cs │ │ │ ├── SkipWhile.cs.meta │ │ │ ├── Subscribe.cs │ │ │ ├── Subscribe.cs.meta │ │ │ ├── Sum.cs │ │ │ ├── Sum.cs.meta │ │ │ ├── Take.cs │ │ │ ├── Take.cs.meta │ │ │ ├── TakeLast.cs │ │ │ ├── TakeLast.cs.meta │ │ │ ├── TakeUntil.cs │ │ │ ├── TakeUntil.cs.meta │ │ │ ├── TakeUntilCanceled.cs │ │ │ ├── TakeUntilCanceled.cs.meta │ │ │ ├── TakeWhile.cs │ │ │ ├── TakeWhile.cs.meta │ │ │ ├── Throw.cs │ │ │ ├── Throw.cs.meta │ │ │ ├── ToArray.cs │ │ │ ├── ToArray.cs.meta │ │ │ ├── ToDictionary.cs │ │ │ ├── ToDictionary.cs.meta │ │ │ ├── ToHashSet.cs │ │ │ ├── ToHashSet.cs.meta │ │ │ ├── ToList.cs │ │ │ ├── ToList.cs.meta │ │ │ ├── ToLookup.cs │ │ │ ├── ToLookup.cs.meta │ │ │ ├── ToObservable.cs │ │ │ ├── ToObservable.cs.meta │ │ │ ├── ToUniTaskAsyncEnumerable.cs │ │ │ ├── ToUniTaskAsyncEnumerable.cs.meta │ │ │ ├── UniTask.Linq.asmdef │ │ │ ├── UniTask.Linq.asmdef.meta │ │ │ ├── Union.cs │ │ │ ├── Union.cs.meta │ │ │ ├── UnityExtensions.meta │ │ │ ├── UnityExtensions │ │ │ │ ├── EveryUpdate.cs │ │ │ │ ├── EveryUpdate.cs.meta │ │ │ │ ├── EveryValueChanged.cs │ │ │ │ ├── EveryValueChanged.cs.meta │ │ │ │ ├── Timer.cs │ │ │ │ └── Timer.cs.meta │ │ │ ├── Where.cs │ │ │ ├── Where.cs.meta │ │ │ ├── Zip.cs │ │ │ └── Zip.cs.meta │ │ ├── MoveNextSource.cs │ │ ├── MoveNextSource.cs.meta │ │ ├── PlayerLoopHelper.cs │ │ ├── PlayerLoopHelper.cs.meta │ │ ├── Progress.cs │ │ ├── Progress.cs.meta │ │ ├── TaskPool.cs │ │ ├── TaskPool.cs.meta │ │ ├── TimeoutController.cs │ │ ├── TimeoutController.cs.meta │ │ ├── TriggerEvent.cs │ │ ├── TriggerEvent.cs.meta │ │ ├── Triggers.meta │ │ ├── Triggers │ │ │ ├── AsyncAwakeTrigger.cs │ │ │ ├── AsyncAwakeTrigger.cs.meta │ │ │ ├── AsyncDestroyTrigger.cs │ │ │ ├── AsyncDestroyTrigger.cs.meta │ │ │ ├── AsyncStartTrigger.cs │ │ │ ├── AsyncStartTrigger.cs.meta │ │ │ ├── AsyncTriggerBase.cs │ │ │ ├── AsyncTriggerBase.cs.meta │ │ │ ├── AsyncTriggerExtensions.cs │ │ │ ├── AsyncTriggerExtensions.cs.meta │ │ │ ├── MonoBehaviourMessagesTriggers.cs │ │ │ └── MonoBehaviourMessagesTriggers.cs.meta │ │ ├── UniTask.Bridge.cs │ │ ├── UniTask.Bridge.cs.meta │ │ ├── UniTask.Delay.cs │ │ ├── UniTask.Delay.cs.meta │ │ ├── UniTask.Factory.cs │ │ ├── UniTask.Factory.cs.meta │ │ ├── UniTask.Run.cs │ │ ├── UniTask.Run.cs.meta │ │ ├── UniTask.Threading.cs │ │ ├── UniTask.Threading.cs.meta │ │ ├── UniTask.WaitUntil.cs │ │ ├── UniTask.WaitUntil.cs.meta │ │ ├── UniTask.WhenAll.Generated.cs │ │ ├── UniTask.WhenAll.Generated.cs.meta │ │ ├── UniTask.WhenAll.cs │ │ ├── UniTask.WhenAll.cs.meta │ │ ├── UniTask.WhenAny.Generated.cs │ │ ├── UniTask.WhenAny.Generated.cs.meta │ │ ├── UniTask.WhenAny.cs │ │ ├── UniTask.WhenAny.cs.meta │ │ ├── UniTask.asmdef │ │ ├── UniTask.asmdef.meta │ │ ├── UniTask.cs │ │ ├── UniTask.cs.meta │ │ ├── UniTaskCompletionSource.cs │ │ ├── UniTaskCompletionSource.cs.meta │ │ ├── UniTaskExtensions.Shorthand.cs │ │ ├── UniTaskExtensions.Shorthand.cs.meta │ │ ├── UniTaskExtensions.cs │ │ ├── UniTaskExtensions.cs.meta │ │ ├── UniTaskObservableExtensions.cs │ │ ├── UniTaskObservableExtensions.cs.meta │ │ ├── UniTaskScheduler.cs │ │ ├── UniTaskScheduler.cs.meta │ │ ├── UniTaskSynchronizationContext.cs │ │ ├── UniTaskSynchronizationContext.cs.meta │ │ ├── UniTaskVoid.cs │ │ ├── UniTaskVoid.cs.meta │ │ ├── UnityAsyncExtensions.AssetBundleRequestAllAssets.cs │ │ ├── UnityAsyncExtensions.AssetBundleRequestAllAssets.cs.meta │ │ ├── UnityAsyncExtensions.AsyncGPUReadback.cs │ │ ├── UnityAsyncExtensions.AsyncGPUReadback.cs.meta │ │ ├── UnityAsyncExtensions.Jobs.cs │ │ ├── UnityAsyncExtensions.Jobs.cs.meta │ │ ├── UnityAsyncExtensions.MonoBehaviour.cs │ │ ├── UnityAsyncExtensions.MonoBehaviour.cs.meta │ │ ├── UnityAsyncExtensions.cs │ │ ├── UnityAsyncExtensions.cs.meta │ │ ├── UnityAsyncExtensions.uGUI.cs │ │ ├── UnityAsyncExtensions.uGUI.cs.meta │ │ ├── UnityBindingExtensions.cs │ │ ├── UnityBindingExtensions.cs.meta │ │ ├── UnityWebRequestException.cs │ │ ├── UnityWebRequestException.cs.meta │ │ ├── _InternalVisibleTo.cs │ │ └── _InternalVisibleTo.cs.meta │ │ ├── package.json │ │ └── package.json.meta ├── Resources.meta ├── Resources │ ├── DOTweenSettings.asset │ └── DOTweenSettings.asset.meta ├── Scenes.meta ├── Scenes │ ├── LeanGUI+Touch.unity │ └── LeanGUI+Touch.unity.meta ├── Scripts.meta └── Scripts │ ├── CsharpTest.meta │ ├── CsharpTest │ ├── Test1.cs │ ├── Test1.cs.meta │ ├── c#_language_test_scene.unity │ └── c#_language_test_scene.unity.meta │ ├── CustomDragDropTilemap.meta │ ├── CustomDragDropTilemap │ ├── Tile.cs │ ├── Tile.cs.meta │ ├── TileMap.cs │ ├── TileMap.cs.meta │ ├── TileMark.cs │ ├── TileMark.cs.meta │ ├── TileMarkGroup.cs │ ├── TileMarkGroup.cs.meta │ ├── dragDropTest.unity │ ├── dragDropTest.unity.meta │ ├── tile.prefab │ ├── tile.prefab.meta │ ├── tileMark.prefab │ ├── tileMark.prefab.meta │ ├── tileMarkGroup.prefab │ └── tileMarkGroup.prefab.meta │ ├── GuestQueue.cs │ ├── GuestQueue.cs.meta │ ├── UI.meta │ ├── UI │ ├── EventPenetrate.cs │ ├── EventPenetrate.cs.meta │ ├── RectTRansformSafeArea.cs │ └── RectTRansformSafeArea.cs.meta │ ├── UniTaskSamples.meta │ ├── UniTaskSamples │ ├── AsyncLinqTest.cs │ ├── AsyncLinqTest.cs.meta │ ├── AsyncMessagebroker.cs │ ├── AsyncMessagebroker.cs.meta │ ├── DelayButton.cs │ ├── DelayButton.cs.meta │ ├── DoubleClickButton.cs │ ├── DoubleClickButton.cs.meta │ ├── SynchronizationContextTest.cs │ ├── SynchronizationContextTest.cs.meta │ ├── TimeDelayUtils.cs │ ├── TimeDelayUtils.cs.meta │ ├── UIUtils.cs │ ├── UIUtils.cs.meta │ ├── UniTaskUITests.cs │ ├── UniTaskUITests.cs.meta │ ├── unitaskSampleScene.unity │ └── unitaskSampleScene.unity.meta │ ├── Utils.meta │ └── Utils │ ├── CollectionExtensions.cs │ ├── CollectionExtensions.cs.meta │ ├── EnumReview.cs │ ├── EnumReview.cs.meta │ ├── EnumUtils.cs │ ├── EnumUtils.cs.meta │ ├── MathTools.cs │ ├── MathTools.cs.meta │ ├── ObjectsManager.cs │ ├── ObjectsManager.cs.meta │ ├── Odds.cs │ ├── Odds.cs.meta │ ├── OddsGroup.cs │ ├── OddsGroup.cs.meta │ ├── TimeRecord.cs │ ├── TimeRecord.cs.meta │ ├── UtilsTest.cs │ ├── UtilsTest.cs.meta │ ├── UtilsTestScene.unity │ ├── UtilsTestScene.unity.meta │ ├── functionalUtils.meta │ └── functionalUtils │ ├── ClosureAndFuncVariableTest.cs │ ├── ClosureAndFuncVariableTest.cs.meta │ ├── FunctionalLib.cs │ └── FunctionalLib.cs.meta └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset /README.md: -------------------------------------------------------------------------------- 1 | 需要: 2 | LeanGUI 3 | LeanTouch+ 2.2.3;此版本有一个自定义inspector bug被我注释整个自定义inspector的方式修复了 4 | LeanPool 5 | 6 | change a line 7 | master add another line 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /UIFramework/.idea/.idea.UIFramework/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /UIFramework/.idea/.idea.UIFramework/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /UIFramework/.idea/.idea.UIFramework/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b496f77074bc8c446893c383be5b3e9a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz/BGDatabase.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ae4f578d0f9e464db5210593dbb1014 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz/BGDatabase/Editor/Res/BGDatabaseResources.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/BansheeGz/BGDatabase/Editor/Res/BGDatabaseResources.dat -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz/BGDatabase/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad25e38952f09f04caf54372375b2e2c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz/BGDatabase/Editor/Scripts/BGDatabaseEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/BansheeGz/BGDatabase/Editor/Scripts/BGDatabaseEditor.dll -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz/BGDatabase/Scripts/BGDatabase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/BansheeGz/BGDatabase/Scripts/BGDatabase.dll -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz/BGDatabase/Scripts/BGDatabaseSourceCode.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/BansheeGz/BGDatabase/Scripts/BGDatabaseSourceCode.unitypackage -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz/BGDatabase/Scripts/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23b6cb4f65fff40c08a8b43ce7971b6a 3 | timeCreated: 1519318316 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz/BGDatabase/Third-Party Notices.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ab8dce2690dc1441bb58f97aa3a9981 3 | timeCreated: 1531473700 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/BansheeGz/BGDatabase/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f0ef40f5202d0549a5dae3f6bb0c05f 3 | timeCreated: 1510632936 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5701e154ad77a44069cf22be82ecca7b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3cf2c054f12a6c4791d0dc23455e55c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/04 Jump To Demo/Data.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | namespace EnhancedScrollerDemos.JumpToDemo 5 | { 6 | public class Data 7 | { 8 | public string cellText; 9 | } 10 | } -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/09 Cell Events/Data.cs: -------------------------------------------------------------------------------- 1 | namespace EnhancedScrollerDemos.CellEvents 2 | { 3 | public class Data 4 | { 5 | public int hour; 6 | } 7 | } -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/14 Key Control.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fc8f880eeba844eeabc30681c6e879f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/14 Key Control/14.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d7973f49a020409a8659260669327f3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/14b Key Control Grid.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58ed3ca46eaed47b8bd22a25e1a42d68 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/14b Key Control Grid/14b.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e8655a09250742a5943ec63b0fc1ee8 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/15 Expanding Cells.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2f0a4d73d26d4f7f95c99c9c38ddbc3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/15 Expanding Cells/15.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 924433c1e3f7146708c54713d87a036b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Fonts/IMMORTAL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Fonts/IMMORTAL.ttf -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Fonts/Infinium Guardian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Fonts/Infinium Guardian.ttf -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/border.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/border.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/border_small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/border_small.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/coin.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/coin.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/damage.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/damage.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/defense.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/defense.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/footer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/footer.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/halo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/halo.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/header.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/header.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/icon.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/jumpoffset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/jumpoffset.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/loading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/loading.jpg -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/menuHeader.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/menuHeader.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/row.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/row.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/scifiBorder.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/scifiBorder.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/scroll.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/scroll.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_7.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_banana.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_bigwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_bigwin.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_blank.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_cherry.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_grape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_grape.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_lemon.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_orange.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_triplebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_triplebar.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_watermelon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slots_watermelon.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slotsbackground.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slotsbackground.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slotsborder.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slotsborder.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slotsoverlay.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/slotsoverlay.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/stripe.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/weight.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/weight.psd -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/winner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Demos/Shared Files/Sprites/winner.png -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Documentation/EnhancedScroller_User_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Documentation/EnhancedScroller_User_Manual.pdf -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Tutorials/01 - Quick Start Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Tutorials/01 - Quick Start Tutorial.pdf -------------------------------------------------------------------------------- /UIFramework/Assets/EnhancedScroller v2/Tutorials/01 - Quick Start Tutorial.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/EnhancedScroller v2/Tutorials/01 - Quick Start Tutorial.unitypackage -------------------------------------------------------------------------------- /UIFramework/Assets/Lean.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40e63f52e32581d47b35867c8042346b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common+.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 112cd91b6d8bbe64595b8abadfd71058 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common+/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e312caae0de158a4980a10a08e270016 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common+/Documentation/Documentation.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcb8d79d1bcbb084c8b4cb4efb1663fc 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common+/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ac60d65d2cbbe949860bc26ee3f3ea4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common+/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 837115c94ba87d049bf096047b9a60d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common+/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79d5ef1291a3fa6408c089ea19a5705a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common+/GUIDE.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7420205ad4d3edd4e800dd8bd04cbbc2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ce410272d5666e44812e63d103bfaa6 3 | folderAsset: yes 4 | timeCreated: 1553119366 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eca036dcb74c24e4687c45ba0c2d2983 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Documentation/Documentation.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 343b9ec9f5c2b3a43b6e4cd68f5286ca 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c1d7701028ce91439544a5d3930a883 3 | folderAsset: yes 4 | timeCreated: 1553119434 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Fonts/OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3bf4a59b3982614bb8b244963bac3ad 3 | timeCreated: 1474722481 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Fonts/VarelaRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Common/Examples/Fonts/VarelaRound-Regular.ttf -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Materials/Skybox.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17380c24072c0954898ab03528ac9077 3 | timeCreated: 1474763489 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Prefabs/Canvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 298daca7decb9f846b5ff996ee97a495 3 | timeCreated: 1497330679 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Prefabs/RoundedCube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98bcf37801e348c44b1dc78b7af0bb77 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Textures/Description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Common/Examples/Textures/Description.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Textures/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Common/Examples/Textures/Grid.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Textures/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Common/Examples/Textures/Heart.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Textures/Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Common/Examples/Textures/Left.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Examples/Textures/Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Common/Examples/Textures/Right.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66710c84ec8f26843ab0236b80499b22 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/GUIDE.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fee5243b4c3305f4393657b324b1a5c4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/LeanCommon.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LeanCommon", 3 | "references": [ 4 | "Unity.InputSystem" 5 | ], 6 | "includePlatforms": [], 7 | "excludePlatforms": [] 8 | } 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Common/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92c538c3bdab43f4aa57df79fec603d5 3 | folderAsset: yes 4 | timeCreated: 1553119957 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66b41c0e03271a34fa731e3fbc0952e0 3 | folderAsset: yes 4 | timeCreated: 1548057392 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30a48e3337675ee4fbb27b6745b46c51 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cbf01af5b3cae44a9f745ad2aaf5260 3 | folderAsset: yes 4 | timeCreated: 1548058190 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/01 Button.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 627f04d1fd48ef845af1cb621b9fbbb3 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/02 Toggle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8711a4a42c067e43bf1063b8de4df23 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/03 Radio.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f8b0bfb80e12544d8bd739353f80f2e 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/04 Modal.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b102da89e54f5742be3e784fd834f64 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/05 Pulse.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d47541f6b32530c4987ae4fc7eea43fb 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/06 Notification.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce391855de61f044b93fabfb20acafd7 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/07 Shake.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5aa7fbd16b50def488b3f5aa3d6e67b9 3 | timeCreated: 1548119655 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/08 Drag.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e6c614869a31f848b681404f2d02eb8 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/09 Handle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f53974e672823e47a7b83f4d2e8d8d1 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/10 Move To Top.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b810e2e8b1da19041b99556a6e6ad093 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/11 Snap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f18b4127bb546e7409742d62cb0870a8 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/12 Edge.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28e815f433438124582ba8fd3c6ecf83 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/13 Nesting.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de397348f132a2a45b936bc53f80ba86 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/14 Resize.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 620ee64ed9943f844b9d96c38fcc9935 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/15 Switch.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70f77f6743d47994a84e68ac7177b97d 3 | timeCreated: 1548119655 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/16 Tooltip.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f69a95af83ceeb44580d7cc8295e9e65 3 | timeCreated: 1548119655 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/17 3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b5e8add508e1ae40aef7d014b475677 3 | timeCreated: 1548119655 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/18 Popup.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fad8916dd5648464abe998bc7c855d68 3 | timeCreated: 1548119655 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/19 Modal.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db70665563675a946b0828f3da969fc4 3 | timeCreated: 1548119655 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/20 Hover.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcbfff2835c3c314a89c5d011f367f99 3 | timeCreated: 1548119655 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/21 Hitbox.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1981b957ed04b6b458d7f217ebd4b7d4 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/22 Joystick.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc889a8a121149342a102c1bd265b5ce 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/23 Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01e8b2979c732d148ac7aaf69e4bb4ec 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/24 Orientation.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7338d553d9de0c248858d3bd1d857050 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/25 Selection Highlight.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fd7649a1f31c0f41800cff8ec981577 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/26 Swipe.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d849cf0c27c699841887ae0035dc4106 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/27 Safe Area.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4621ed0ee3e45448863dfa68de8524a 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/28 Swipe Screens.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8934cbcc365de014494bbe66a28e376c 3 | timeCreated: 1480498784 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/AlertA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/AlertA.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/AlertB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/AlertB.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Back.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Back.wav -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Click.wav -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round0.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round10.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur10.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur3.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur4.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur5.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Blur6.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Thickness5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round10_Thickness5.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round20.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round3.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round30.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round5.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round50.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round50_Thickness5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round50_Thickness5.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Round5_Thickness2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Round5_Thickness2.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Examples/Media/Thud.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/GUI/Examples/Media/Thud.wav -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/LeanGUI.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 247a163e3cc6efb42bd22b9023b87ff3 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/GUI/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45307eafe98ab7e40b80f173e94af29a 3 | folderAsset: yes 4 | timeCreated: 1548058018 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6e7ee7a86c7e8441a7f7df8a9985464 3 | folderAsset: yes 4 | timeCreated: 1430029373 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56466fa1b89c24741b7be2ec6ff22ac5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e52d5ac18ee8e54993013d2c1e140d5 3 | folderAsset: yes 4 | timeCreated: 1430110081 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Examples/01 Pool.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed8f3f52393cb62458c14bb35f8c4103 3 | timeCreated: 1510709207 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Examples/02 Send Message.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c9d4f038e8ea4348a27f124174bf225 3 | timeCreated: 1510709207 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Examples/03 Broadcast Message.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3616fdcd715faea48a59c6353fd717c3 3 | timeCreated: 1510709207 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Examples/04 Poolable Interface.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70abc687ee27056428edf0ac8cf16805 3 | timeCreated: 1510709207 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Examples/05 Capacity.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a20a4ca77649e949b0b3eba8497ee2e 3 | timeCreated: 1510709207 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Examples/06 Recycle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4993e717323b3747bafc245dd94fb79 3 | timeCreated: 1510709207 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Examples/Media/Rigidbody Cube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4be75445e7585a24da472b670d73768a 3 | timeCreated: 1430149199 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 523c23a60c7cbc040bed96f1187ba2d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Extras/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe0b5effc6bff5243871b380ac20b2b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/LeanPool.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 174bc9f391f1b7f4292b3824c5019a21 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Pool/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a36504332bd34394780964f5930831ca 3 | folderAsset: yes 4 | timeCreated: 1430029382 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/READ ME.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6ff8a5c80a68bc458c5d91349bf10ed 3 | timeCreated: 1547977084 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfef3ef816fa55b499b2bdd0305ed454 3 | folderAsset: yes 4 | timeCreated: 1547542045 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2a2cf05ed3c5b948839a9df2285be36 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7389e53db55f0c3419a484b1bfe4643d 3 | folderAsset: yes 4 | timeCreated: 1497336682 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/01 Finger Held.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd0cd30911e9118438f7844a5bd4a1b0 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/02 Spawn.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5c4736951ced50438b4d7ad542f50f2 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/03 Finger Tap Expired.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5658d4ea021b9fe43b985c3ee35fa6ab 3 | timeCreated: 1542413558 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/04 Rotate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d7599225eac4ac43b538a682ba1272c 3 | timeCreated: 1542413558 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/05 Multi Twist.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d681153b2cf20a24391c712e2730ec8e 3 | timeCreated: 1481026942 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/06 One Finger.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf566ec632855554e878b2e281c20f3a 3 | timeCreated: 1481026942 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/07 Axis.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff978dd699640884f854769f4691ccfd 3 | timeCreated: 1481026942 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/08 Delay.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 916b80980dee30e4ba33922589a13c63 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/09 Multi Tap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 627bd1b0b0cbd964094338b918867fc5 3 | timeCreated: 1481026942 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/10 Translate Rigidbody.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbdef8be08925c542811a6e2449ca90a 3 | timeCreated: 1518740349 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/11 Under.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35f44d6fafdd2b945808f55726adc2b5 3 | timeCreated: 1524571025 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/12 Translate Rigidbody2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 740dfb01f6d51444b89080ad6f80a21b 3 | timeCreated: 1518740007 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/13 Under.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a580a8f27cabc654aa10d7471fbab651 3 | timeCreated: 1518740007 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/14 First Down & Last Up.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83d86c66c19032548984d5606432f753 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/15 Multi Held.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b40faa31a95fe09469a7dbeebaa3168b 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d6ea7f716029464a8fabd358ab83273 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/01 Orbit.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee84fc019e112c849b3d2d34da8b1c34 3 | timeCreated: 1475029742 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/02 Zoom.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaf2e8fd329329d45811a4f473eccb9f 3 | timeCreated: 1480639560 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/03 Wheel.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69eb2b05502da7f48be0329708bf2c92 3 | timeCreated: 1480639560 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/04 Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5f4d75f4364aa04f9e324da496fb1cf 3 | timeCreated: 1480639560 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/05 Auto Rotate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe7d59ea5900cba448bf42a9d78dce59 3 | timeCreated: 1523023397 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/06 Dolly.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ee690c67b6b5e14e9237c06c920ae71 3 | timeCreated: 1512111441 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/08 Center.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1cfa34226e6a9446b927951b85b2828 3 | timeCreated: 1523614270 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/09 Move.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42d567c19f39da04ca10a0bd703c5d64 3 | timeCreated: 1497500751 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/10 TopDown.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dda3e0c2bbd774641ba60ff6d3e9ba1e 3 | timeCreated: 1538309479 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/11 Swipe.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 482ad20e3b69bc7458807fdf38d51f75 3 | timeCreated: 1497499662 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/12 Snap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 493ebd3b9b48bff4380366e7f7d55d14 3 | timeCreated: 1475029742 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/13 First Person.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 430cf1e3327f2e14f90387922980df73 3 | timeCreated: 1493369380 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/14 Move.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76f0e453a64a48d4385da237308e256c 3 | timeCreated: 1536055725 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/15 Tap Look.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cfdd9ff82053ed49bf09d69d0f33101 3 | timeCreated: 1539349460 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/16 Freeflight.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20d0aa85e3b7a6d47a63eb9067c98039 3 | timeCreated: 1494986029 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/17 Rigidbody.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64c3aa06edcbe4f44be56d2f54a7b4a0 3 | timeCreated: 1540257088 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/18 Object.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66cd59da5a7495441a954e35a15048c5 3 | timeCreated: 1494980086 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/19 Sidescroll 2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68f1f02ea857e004a9be813d4e4fc49b 3 | timeCreated: 1486009961 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/20 Zoom.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2767694428af644cafca553c293d118 3 | timeCreated: 1486009961 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/22 Rotate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac0913aa5b9100d488d51cf8766de478 3 | timeCreated: 1486009961 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/23 Map.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 421eb2f56075d17429858206102c58d7 3 | timeCreated: 1526019808 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/24 Sidescroll 3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67ed32129adaa8148ad8dbfaf29a4cc8 3 | timeCreated: 1486013872 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/25 Zoom.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c40688e2f16bfa34ca0a178ffef25496 3 | timeCreated: 1486013872 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/26 Rotate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3627a6348fdd00447b435af2865e584a 3 | timeCreated: 1486013872 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/27 Top Down.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ec37148c1cb6ab4fa824e479df21abe 3 | timeCreated: 1485822092 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/28 SwipeMove.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e4b5a4f7ecdd654597476ff9c427b4d 3 | timeCreated: 1485822092 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/29 Clamp.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17c81021dd78053429d534cd622c95ca 3 | timeCreated: 1485917971 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/Conflicting Controls.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54029aaa22d307a48865a30b13d17654 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Camera/One Finger Zoom.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 022e0dc7e2208b14abee88c330d211b1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Canvas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59905eb0518b01047bb635e17c35e34b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Canvas/02 Move.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44cc28ba5e7bc644f8690ddafb445e37 3 | timeCreated: 1524471558 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Canvas/03 Swipe Move.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1586494c05ac52f48b5a95977f4604bb 3 | timeCreated: 1494982914 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Canvas/05 Rotate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9309f6cc66d25434c8508848eb93690d 3 | timeCreated: 1524471558 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Canvas/06 DPad.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81dc92322fd626d4da39fb983b7a9d2e 3 | timeCreated: 1544768969 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Canvas/07 Move.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59422eada13b00e4a89f0a6a8e1a6b3a 3 | timeCreated: 1484274451 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Canvas/08 Spawn.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c33a8c42a09f8c469c9cb7c4205df79 3 | timeCreated: 1476919072 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Constrain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 946664c897d9b29408ab1a02a5c63920 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Dial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 918d8dcaf5c23ae4d973577767c60a11 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Dial/01 Dial 3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5332e877bb4fac429741d82daed6801 3 | timeCreated: 1530844316 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Dial/02 Clamp.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bc749734da68fe42a382f5ce24ab980 3 | timeCreated: 1530844316 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Dial/03 Lever.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8caf542362fbad44699ac18c4faa3f9d 3 | timeCreated: 1530844316 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Dial/04 Trigger.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97d09ed943eb8024ba2fe9afdd8de1c9 3 | timeCreated: 1530844316 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Dial/05 Angle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94fb0ed4ff3d9f948b11b4b26e838f59 3 | timeCreated: 1530844316 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Dial/06 0 to 1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6752517706b0b441aef97edcf6f35ef 3 | timeCreated: 1530844316 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Dial/09 Under.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 810b7fb9207c99c4688c6942b899b144 3 | timeCreated: 1530844316 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ebe07c0e61e0494390b8d6766f479fb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/01 Drag.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcf22ab2462bf614fb860ee48ec3e102 3 | timeCreated: 1528864587 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/02 Turn 2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93d9c35feef0b4a4f852ce24bbec11be 3 | timeCreated: 1494979353 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/03 Reset.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbd81e3a39659074db24f96d075a78d2 3 | timeCreated: 1494979353 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/04 DragTurn1D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a263b87e8f18bfb4196ad5c535c4367e 3 | timeCreated: 1528864587 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/05 Step.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5df36009154bb1c4fa4eae782542a2bc 3 | timeCreated: 1488066752 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/06 DragDoors.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5080dd824f0fca41a294b4f28a391f5 3 | timeCreated: 1511187471 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/07 DragMove1D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 591a21ac5b6bff643b2703c0f24c082e 3 | timeCreated: 1528864987 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/08 DragMove2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d36a7472d521cf48a2e2f2439b9be0b 3 | timeCreated: 1494979921 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/09 Threshold.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b34f804cb80013b4994f0ca2195afbd1 3 | timeCreated: 1494979921 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/10 DragAlongPath.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b36cd1dc64808c74d962cb25cfa5063e 3 | timeCreated: 1512031716 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/11 Under.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40cefda8e857b5441b556669136fd112 3 | timeCreated: 1512031716 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/12 Smooth.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2268097cbcee09343a4e5f446b66b1f0 3 | timeCreated: 1512031716 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/14 Snap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 349e99e5c5a62d149ac1c2f3fbbffdad 3 | timeCreated: 1505788943 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/29 Pull.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9eea6b6270a5af740b247fbe1afa67f9 3 | timeCreated: 1494979353 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/30 Turn 2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 960932f86bc4cf541941cbb722124591 3 | timeCreated: 1494979353 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/31 Direction.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65abfb3f2aea5eb40820fa67671103ac 3 | timeCreated: 1494979353 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/DragMeshColor.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15b8634df11686143b711036e673b962 3 | timeCreated: 1508312413 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/DragMeshDeform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e64b65ece7ec66045a1855b1040f5e78 3 | timeCreated: 1504139871 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/DropDestroy.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99d64339ac13fe34bb156887db0a084e 3 | timeCreated: 1496105684 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Drag/DropDestroyCount.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2a44629c85f4e246a8a7080452f9ecc 3 | timeCreated: 1496105684 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Follow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4595257983f4b134da71e0993ae12870 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Follow/01 Chase 3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 612790b14c4793a4e8407e78945c7862 3 | timeCreated: 1524723454 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Follow/02 Under.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3a53d42941231741abad475e01142ab 3 | timeCreated: 1524723454 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Follow/03 Waypoints.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 084f4878e70dd5d459553fee2001c860 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Follow/05 Plane.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59ed78da2a3504f47b60246bbdac732f 3 | timeCreated: 1524230115 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Follow/07 FollowFinger.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ef0c0d5e6da45841b9dad013b332e6b 3 | timeCreated: 1513221164 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Follow/08 Released.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb0039ae0a8e5714084e4b35fb480d8b 3 | timeCreated: 1513221164 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Follow/09 Rotation.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae5320ff606fa09429f6d899ff3b2cd3 3 | timeCreated: 1513221164 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/GrabSpinThrow.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03ae48b644886ec4aa728214cfe061e0 3 | timeCreated: 1504510829 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f993eccf40b6624b86641f62d97fa5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/01 Line.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c54fe4601b1f41419ccd6c8fe5ddc10 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/02 Power.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 219e15938bb70374f8fe9b3397896513 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/03 Clamp.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8ac2cb563c087f4c838c961170356ce 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/04 SpawnThrow 3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b67d248f0ba1cf4380b2fa3dbebb206 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/05 SpawnThrow 2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a8b46799cd696347a531fd6a35201ba 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/06 Target 3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b4b9e7a44a5a5446acebee3c4549be6 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/07 Throw.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cc97a958c156bb4e8f2dc1861e2fedd 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/08 Under.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eb67526a6e159445b3f6e64ccef1420 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/09 Target 2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5aabd5b847222544598b318df2da51fb 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/10 Throw.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f8349f6a8df32b46bb68b2a62ea7b98 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/11 Rotate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7d02f5da8e97b940a79874031520267 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/12 Under.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ce77a4f3c380404db7ca72ab5d6a320 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Line/Pong Launch.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cbcd46633a96674581ec7c1a2bff7ad 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/ButtonCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch+/Examples/Media/ButtonCircle.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/Canvas+.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8df6337a574cdad4bb6ec66cc50c6c2b 3 | timeCreated: 1497332079 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/Dotted 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch+/Examples/Media/Dotted 1.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/Icon Capsule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch+/Examples/Media/Icon Capsule.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/Icon Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch+/Examples/Media/Icon Cube.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/Icon Sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch+/Examples/Media/Icon Sphere.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/Power Indicator.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cc965d61e410f40b47d4737a485cd1 3 | timeCreated: 1475722003 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/Power Indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch+/Examples/Media/Power Indicator.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/SelectionBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch+/Examples/Media/SelectionBox.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/SelectionDashesH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch+/Examples/Media/SelectionDashesH.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Media/SelectionDashesV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch+/Examples/Media/SelectionDashesV.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Pong.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e1c75cad0a773e43926897492b852b5 3 | timeCreated: 1431501804 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/PressureScale.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e0ed4dafb992d842bf5a1a373890b5b 3 | timeCreated: 1524874981 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/ReplayFinger.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10b42e37bbe060b43abb28d25f0c2e10 3 | timeCreated: 1491906884 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc4bb59faa9e6c047b752a453b5b81c2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Selection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d8248416f403414e8e253b83e917912 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Selection/05 Action.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 647177f89fc67734b9c22cc3d900f2f1 3 | timeCreated: 1502905783 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Selection/06 DragSelect.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 683552e7d3ed4db46bb7324c2c233212 3 | timeCreated: 1497227428 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Shape.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcae13326e3661749906b5bfcb51fe5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Shape/02 Loop.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c04071f8e3581c1458073c9141d520d9 3 | timeCreated: 1477098057 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Shape/04 Partial.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f64b4614aaed864d81c913c9a4fbe45 3 | timeCreated: 1477098057 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Slingshot.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29445a273daa61448a576957b38eb26e 3 | timeCreated: 1475031156 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/SwapBlocks2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1191e261574e6441be896a20e80c280 3 | timeCreated: 1522323516 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Swipe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f69029a3e6079b247a1ca974a0bcb0bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Swipe/02 Swap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aa7d3588367c114285831b03899f440 3 | timeCreated: 1502087250 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Swipe/03 Move.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf16832b2ceb58345a6b5220aebb2990 3 | timeCreated: 1494982914 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/Swipe/04 Turn.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89113c18e66194b4a95d724fd8ccb79a 3 | timeCreated: 1496104325 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/TransformRevert.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09cccc61d22b71a4a95e8e875752f0c5 3 | timeCreated: 1482324915 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/Examples/TransformToggle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 004547f68b8d6bd419f9627983627ad0 3 | timeCreated: 1529796193 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch+/LeanTouchPlus.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LeanTouchPlus", 3 | "references": [ 4 | "LeanCommon", 5 | "LeanTouch" 6 | ], 7 | "includePlatforms": [], 8 | "excludePlatforms": [] 9 | } -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa389a3f9b662a541bcf774f99b89553 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2b155d4e1643904ead98b8da538422d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95e65142560c28d49a5fb6c79b9c1cb3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/01 Finger Down.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6e339405953bb94eb24436b8bcf3a6e 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/02 Finger Up.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e75bcbf9fc009e7499be19cd0a6d834f 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/03 Finger Swipe.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e36b63a4ae51f394abdf3edf4c81a515 3 | timeCreated: 1523843138 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/04 Rotation.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c525e5b6627cf214993e6e54947d3194 3 | timeCreated: 1523843138 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/05 Direction 4.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9f2e12e189bfe64087696f16aaa9ddf 3 | timeCreated: 1470136439 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/06 Direction 8.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39fc81c139246c14cb65039a492df9df 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/07 Finger Tap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9288129b03a30fd4590f54bacfa4fc2b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/08 Spawn.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 935b453473865f3458f13d20bc896092 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/09 Block.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e08b589e5c339642a6ebfc31372ffab 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/10 Double.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ba993e45bd8bc540a58ab0bf1a234f5 3 | timeCreated: 1480141504 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/11 Finger Old.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 748227db34677044da44badff4bbdb65 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/12 Transform 3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcc6d67bd10127441a6feb2e68bfe9e8 3 | timeCreated: 1475330508 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/13 Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4503f8040e549f489cd402bce299069 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/14 Transform 2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ca3a849c7527dc4284d2a0c0373ce6c 3 | timeCreated: 1523765279 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/15 Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ccbba2c423789b41b1fb58a68f4084a 3 | timeCreated: 1523765280 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/16 Transform UI.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6560ec49f82d0dd45bf84bd4db7bf43c 3 | timeCreated: 1523765218 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/17 Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 836ce648167500e4b9618a12eadd3b30 3 | timeCreated: 1523762411 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/18 Select 3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5aab015c9dbb97542916173460603193 3 | timeCreated: 1470141885 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/19 Transform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 982cce8599efa9241a47d9c360164f09 3 | timeCreated: 1470142544 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/21 Select 2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af2a4c390be04884582d06f19616d94b 3 | timeCreated: 1475317153 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/22 Transform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6d52bf5870558c429854e11855bb34f 3 | timeCreated: 1475318310 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/24 Destroy.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95c3fb64553c39343a2d0f43be588e07 3 | timeCreated: 1481897908 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/25 Select UI.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a27a58dd3fda79b4bab4d31ece2bd6cc 3 | timeCreated: 1523766280 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/26 Transform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cf61a444bcfdc147acb74eaf78695de 3 | timeCreated: 1523766658 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/28 Press 3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b94cc11547f53d4a8f6139cedfe14b8 3 | timeCreated: 1480388647 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/29 Transform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2118a5d904799334690ae0a4a6225daa 3 | timeCreated: 1480388732 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/30 Isolate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86727a4fd236a5449a7200505e88637b 3 | timeCreated: 1543890466 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/31 Press 2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ae1b96bc7b703e49a68ef88702e0179 3 | timeCreated: 1480386239 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/32 Transform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ed088a4bfac5514a93b8cae959a10de 3 | timeCreated: 1530153795 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/33 Isolate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9da6b8aa0504e7e4f9437585f39bc0f9 3 | timeCreated: 1543889194 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/34 Press UI.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4d90437f02ce2c4fbccd0cc401779f7 3 | timeCreated: 1523766910 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/35 Transform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3900526662157a4aafcd4c727382385 3 | timeCreated: 1523773906 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/36 Isolate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d88bccd1241081439345e9ab4c9db70 3 | timeCreated: 1543890474 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/37 Finger Trail.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8717ad9118782244ba638a66799dba09 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/LeanTouch+.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 947eac2e6090e724b83bfffc7748bdb4 3 | timeCreated: 1532237988 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/ArrowCurve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/ArrowCurve.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/ArrowStraight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/ArrowStraight.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/ArrowTwist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/ArrowTwist.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/BigLogo+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/BigLogo+.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/Box.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/Button.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/Canvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2a63f1f28575a549abdfbc4eb9b28d2 3 | timeCreated: 1497330679 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/Circle.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/FingerVisualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/FingerVisualization.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/GlowingDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/GlowingDot.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/GlowingLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/GlowingLine.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/GlowingTrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/GlowingTrail.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/Line.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7e5a27266ffc1c449993ff1173fe9a7 3 | timeCreated: 1475031757 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/Logo+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/Logo+.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/Plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Lean/Touch/Examples/Media/Plus.png -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Media/Trail.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a249bfc9d8fe9874890b7170317078ab 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Scripts/LeanInfoText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7efa857135ee3242bb57cd8a91087c8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Sidescroll2D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84b65774cb71fc543a5cba771cda3f7b 3 | timeCreated: 1486009961 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/Sidescroll3D.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4efc2379fae650d43b7a9c114f6e5772 3 | timeCreated: 1486013872 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Examples/TouchEvents.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ac725435c4f16446b182ce8844aac54 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d18b6d3ae24a9ee4da77b182b1609bbc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c81e63ffd398d1c40b674a6ac07bbbd8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Touch/Scripts/LeanFinger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0991e6d1946d343449afb6600057d2f4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a602f759043801b4eadbcceeb9cb7099 3 | folderAsset: yes 4 | timeCreated: 1552396152 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3654f58f0f6baf0459541c6a1e6e474f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Documentation/Documentation.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10e7cb2b68d837840884d827c27b7229 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Examples/03 Join.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a152862482f2bec4f95f2fde53890bda 3 | timeCreated: 1552649941 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Examples/04 Branches.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44d68fa2ad0511540ada9798b74e5702 3 | timeCreated: 1552649941 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Examples/05 Multiple.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da042763c527f7d4291135aba6d29c82 3 | timeCreated: 1552649941 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Examples/06 Ease.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b500ee9e919332f4491f23973d2c000e 3 | timeCreated: 1552649941 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Examples/09 Alias.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3831375d4d4dbb243a8ec3ff9e12af1e 3 | timeCreated: 1552649941 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Examples/10 Prefab.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 786c10408130c2644a8bc2d9e1a314d8 3 | timeCreated: 1552649941 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd272e0f8dfc5db40b8b9fb1ae376700 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Extras/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69e9ae08863fea24cb6e2c643cce5d09 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Extras/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a65da2bdfa83c79458cc2bf47374a2e7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/LeanTransition.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc9b1dbcea8af584ba492afeb67a12da 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Lean/Transition/Methods/Light.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2a9726e36f6a014fbc92d1517501b3b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb636348a05e219459a85755da97963d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1014ff0ca5049d4dbfb9b7debd7ab36 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/DOTween.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34192c5e0d14aee43a0e86cc4823268a 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/DOTween.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTween/DOTween.dll -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f007001a22b3d24dae350342c4d19c8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b27f58ae5d5c33a4bb2d1f4f34bd036d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e2c6224d345d9249acfa6e8ef40bb2d 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f46310a8b0a8f04a92993c37c713243 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/Imgs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0034ebae0c2a9344e897db1160d71b6d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 143604b8bad857d47a6f7cc7a533e2dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Modules/DOTween.Modules.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DOTween.Modules" 3 | } 4 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/Modules/DOTween.Modules.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31ddf185b9b3e11498457964bfba46c3 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTween/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fccfc62abf2eb0a4db614853430894fd 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro Examples/DOTweenAnimation_Advanced.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5f7a56d339da84449899ecf95fbe33d 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro Examples/DOTweenAnimation_Basics.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a2ad353325ffe64983c28d69a8738f5 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro Examples/DOTweenPath.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a351b59ca54a0bc4083c35844da13a61 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro Examples/Examples Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2add6a5374e55e642a55ed3b43fd9db4 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.Scripts.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DOTweenPro.Scripts", 3 | "references": [ 4 | "DOTween.Modules" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.Scripts.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0acf7f91b9ca2e741968dd0926c4196c 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db7d7ef84c388bc4fbc3835d31a15306 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll.mdb -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d719ed2e2c87eae4e8dd520e2df659c1 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/DOTweenTk2d.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b590cd7c24ffa5d4faa5b6fa993cccad 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34ca5bde92f87fa4dbeb9593d201fde2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 753a4f4ed73b17143923101226957756 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll.mdb -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee3a420017f129443896310d9fab256b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.zip -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DOTweenPro/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa8f07903bf128e44a7d0b91a63dedab 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03513cf143bb144409fbb3a51ec77b1b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll.mdb -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 995cf2d9b4a41f840b3a41712e9b3bc0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bf2564c9817bb34988453ae948954d2 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77fbbad1c51d68f4c844d26743104b07 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll.mdb -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll.mdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c20a7b4db3cd0a4a99bcf6218f92860 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4a42b2e4e6f64d4ba01d35c5a3dafed 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1efb03f507a60b949a70ed828ac18eb8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquare.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha10.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha15.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha25.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha50.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blackSquareAlpha80.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/blueSquare.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/circle.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/greenSquare.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_bright.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/grid_dark.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alert.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignB.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBC.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBL.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignBR.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCC.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCL.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignCR.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignHC.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignL.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignR.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignT.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTC.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTL.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignTR.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_alignVC.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_camera_border.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_cog_border.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_comment_border.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_delete.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_demigiant.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeHAlignT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeHAlignT.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeVAlignL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_distributeVAlignL.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_end.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_flipV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_flipV.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_closed.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_foldout_open.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_heart_border.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_light_border.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_lock_open.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_nodeArrow.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ok.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_optionsDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_optionsDropdown.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_play_border.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_skull_border.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_star_border.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_ui_border.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/ico_visibility_off.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/orangeSquare.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52bdbb53205da074d9937b996806e2e2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_atlas.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_audio.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_bundle.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cog.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_cross.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_demigiant.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_folder.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_fonts.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_heart.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_materials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_materials.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_models.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_particles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_particles.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_play.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_prefab.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_scripts.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_shaders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_shaders.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_skull.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_star.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_terrains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_terrains.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/project/ico_textures.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/purpleSquare.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/redSquare.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorder.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderAlpha15.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurved02.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedAlpha.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderCurvedEmpty.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty01.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty02.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderEmpty03.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickEmpty.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareBorderThickerEmpty.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCorners03.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/squareCornersEmpty02.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_empty.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/tileBars_slanted_alpha.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/transparentSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/transparentSquare.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteDot_darkBorder.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha10.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha15.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha25.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha50.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquareAlpha80.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/whiteSquare_fadeOut_bt.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Demigiant/DemiLib/Core/Editor/Imgs/yellowSquare.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 013ee79bf91c6cb49ae3bf0a45b54621 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Change Log.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3115cc2dd2d49d742b3cfe0b237788ce 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Change Log/Change Log.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48fdb523e0bb47f479a18f9b236df644 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Editor/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Easy Save 3/Editor/checkmark.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Editor/checkmarkSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Easy Save 3/Editor/checkmarkSmall.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Editor/es3Logo16x16-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Easy Save 3/Editor/es3Logo16x16-bw.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Editor/es3Logo16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Easy Save 3/Editor/es3Logo16x16.png -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Legacy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d05e819cd3894b045acde4e5ab56ebd4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Legacy/Easy Save 2.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzihhhh/UnityUIFramework/627fae316b88d705af901d51ae62993773a5dd2f/UIFramework/Assets/Plugins/Easy Save 3/Legacy/Easy Save 2.unitypackage -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Legacy/Easy Save 2.unitypackage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d731fabb47b47ae4a80c4d5cc24b57db 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac7f0d7057567ac46840113f6bfdbb93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Resources/ES3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03ca1263b4697ee4ea9366e21416a6d3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Scripts/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3195251321eef445b65f7c8d345e743 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Scripts/Readers/ES3XMLReader.cs: -------------------------------------------------------------------------------- 1 |  2 | public class ES3XMLReader 3 | { 4 | // Not Implemented 5 | } 6 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Scripts/Referencing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7aae016e8c4b7924290cd0904f1509b5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Scripts/Types/NET Types.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01ada09c8494e744a87f6e4bc52f3235 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Scripts/Writers/ES3XMLWriter.cs: -------------------------------------------------------------------------------- 1 | public class ES3XMLWriter 2 | { 3 | // Not implemented 4 | } 5 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/Easy Save 3/Web/ES3Cloud.php.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b891e253fd1a40e999dd9064b8a0d6f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 498dcdc17e4498846a66588fe39f4be7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 029c1d0a7dc181a44957d16d4db8be07 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Editor/UniTask.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4129704b5a1a13841ba16f230bf24a57 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54efcaf3f92b35f4abbcb52539cd529d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/CompilerServices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8267adc0e0e97d748bcd6a1c341b2920 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/External.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 167a789c1b7c2cd4db94dbd0f22b6506 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/External/Addressables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4580550f1f6930740bb73060d16d9db8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/External/DOTween.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f516e419c14bf9a4792371846691ffa5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/External/TextMeshPro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 609b41e49178f4f49aee619f136a3241 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5b1986303d54984ca4e2612e04258c2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/Linq.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08a490e441de451448c2bf071744419e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/Linq/UniTask.Linq.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c01796d064528144a599661eaab93a6 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/Linq/UnityExtensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1d0e177a8b3e27488ca594d95b9a2f5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/Triggers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f12f6b22a52b214a9f457815aca8316 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/Runtime/UniTask.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f51ebe6a0ceec4240a699833d6309b23 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Plugins/UniTask/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1a9a71f68bb0d04db91ddaa3329abf9 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9362df2dd496d58429f74d4d4244c604 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Resources/DOTweenSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e8315925cef4c240859804bf94f9a78 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f77043c4ceae094b9ff65ba2a1b3518 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scenes/LeanGUI+Touch.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cda990e2423bbf4892e6590ba056729 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61b5d8b2749d76343922812d081a367e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/CsharpTest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acd162749bbcbb246aef8777d9fcad64 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/CsharpTest/c#_language_test_scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae8b847275740834c9682ba20207dede 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/CustomDragDropTilemap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b10be0f022605540aac4fed8142e4a9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/CustomDragDropTilemap/dragDropTest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7126e267683540e499d614685b6d2052 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/CustomDragDropTilemap/tile.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7de2f254fd252dc41ae9d025c3d84b30 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/CustomDragDropTilemap/tileMark.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f002f1a86d220c43b1edfc3456d3b75 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/CustomDragDropTilemap/tileMarkGroup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ae701338b8c5ec49a81bec921ec59ad 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d86ede09756c58744ae5c263739c99d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/UniTaskSamples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9ce7d067118cd942afd93801aeab3d6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/UniTaskSamples/unitaskSampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 051a12904758e0f4b985992e71e7b81e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a98c57a01ff01849b7296e61f09b6b7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/Utils/UtilsTestScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75d53919b79393848a17c0bcb2aaac14 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /UIFramework/Assets/Scripts/Utils/functionalUtils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baf2e1649adb9ab4686134083ce7db5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UIFramework/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /UIFramework/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /UIFramework/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /UIFramework/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /UIFramework/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.4.21f1c1 2 | m_EditorVersionWithRevision: 2019.4.21f1c1 (7fef87dbc35f) 3 | -------------------------------------------------------------------------------- /UIFramework/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } --------------------------------------------------------------------------------