├── .editorconfig ├── .gitignore ├── .vsconfig ├── Assets ├── Animation.meta ├── Animation │ ├── ShutterCanvas.controller │ ├── ShutterCanvas.controller.meta │ ├── ShutterIn.anim │ ├── ShutterIn.anim.meta │ ├── ShutterInInfo.anim │ ├── ShutterInInfo.anim.meta │ ├── ShutterOut.anim │ ├── ShutterOut.anim.meta │ ├── ShutterOutInfo.anim │ └── ShutterOutInfo.anim.meta ├── Audio.meta ├── Audio │ ├── SongMixer.mixer │ └── SongMixer.mixer.meta ├── CoroutineUtils.meta ├── CoroutineUtils │ ├── Coroutines.cs │ ├── Coroutines.cs.meta │ ├── Timer.cs │ └── Timer.cs.meta ├── Editor.meta ├── Editor │ ├── GameplayReference.asmref │ ├── GameplayReference.asmref.meta │ ├── PlayManagerEditor.cs │ └── PlayManagerEditor.cs.meta ├── Fonts.meta ├── Fonts │ ├── D-DIN.otf │ ├── D-DIN.otf.meta │ ├── RationalInteger.ttf │ ├── RationalInteger.ttf.meta │ ├── Roboto-Black.ttf │ ├── Roboto-Black.ttf.meta │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-BlackItalic.ttf.meta │ ├── Roboto-Bold.ttf │ ├── Roboto-Bold.ttf.meta │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-BoldItalic.ttf.meta │ ├── Roboto-Italic.ttf │ ├── Roboto-Italic.ttf.meta │ ├── Roboto-Light.ttf │ ├── Roboto-Light.ttf.meta │ ├── Roboto-LightItalic.ttf │ ├── Roboto-LightItalic.ttf.meta │ ├── Roboto-Medium.ttf │ ├── Roboto-Medium.ttf.meta │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-MediumItalic.ttf.meta │ ├── Roboto-Regular.ttf │ ├── Roboto-Regular.ttf.meta │ ├── Roboto-Thin.ttf │ ├── Roboto-Thin.ttf.meta │ ├── Roboto-ThinItalic.ttf │ ├── Roboto-ThinItalic.ttf.meta │ ├── SairaCondensed-Regular.ttf │ ├── SairaCondensed-Regular.ttf.meta │ ├── monofonto.otf │ └── monofonto.otf.meta ├── HierarchyScrollRect.meta ├── HierarchyScrollRect │ ├── Data.meta │ ├── Data │ │ ├── CellBase.cs │ │ ├── CellBase.cs.meta │ │ ├── CellDataBase.cs │ │ ├── CellDataBase.cs.meta │ │ ├── HierarchyCellData.cs │ │ └── HierarchyCellData.cs.meta │ ├── EasyObjectPool.meta │ ├── EasyObjectPool │ │ ├── EasyObjectPool.cs │ │ ├── EasyObjectPool.cs.meta │ │ ├── ResourceManager.cs │ │ └── ResourceManager.cs.meta │ ├── Editor.meta │ ├── Editor │ │ ├── HierarchyScrollRectEditor.cs │ │ └── HierarchyScrollRectEditor.cs.meta │ ├── HierarchyScrollRect.cs │ ├── HierarchyScrollRect.cs.meta │ ├── HorizontalHierarchyScrollRect.cs │ ├── HorizontalHierarchyScrollRect.cs.meta │ ├── Utils.meta │ ├── Utils │ │ ├── UIExtension.cs │ │ └── UIExtension.cs.meta │ ├── VerticalHierarchyScrollRect.cs │ ├── VerticalHierarchyScrollRect.cs.meta │ ├── Zeroth.HierarchyScrollRect.asmdef │ └── Zeroth.HierarchyScrollRect.asmdef.meta ├── Lean.meta ├── Lean │ ├── 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 │ │ │ │ ├── Button.prefab │ │ │ │ ├── Button.prefab.meta │ │ │ │ ├── Canvas.prefab │ │ │ │ ├── Canvas.prefab.meta │ │ │ │ ├── Demo.prefab │ │ │ │ ├── Demo.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 │ │ │ │ ├── LeanDemo.cs │ │ │ │ ├── LeanDemo.cs.meta │ │ │ │ ├── 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 │ │ │ ├── LeanFormatString.cs │ │ │ ├── LeanFormatString.cs.meta │ │ │ ├── LeanPath.cs │ │ │ ├── LeanPath.cs.meta │ │ │ ├── LeanPlane.cs │ │ │ ├── LeanPlane.cs.meta │ │ │ ├── LeanRoll.cs │ │ │ ├── LeanRoll.cs.meta │ │ │ ├── LeanSelect.cs │ │ │ ├── LeanSelect.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 │ │ │ ├── LeanSpawn.cs │ │ │ └── LeanSpawn.cs.meta │ │ ├── GUIDE.asset │ │ ├── GUIDE.asset.meta │ │ ├── LeanCommon.asmdef │ │ ├── LeanCommon.asmdef.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── LeanEditor.cs │ │ │ ├── LeanEditor.cs.meta │ │ │ ├── LeanHelper.cs │ │ │ ├── LeanHelper.cs.meta │ │ │ ├── LeanInput.cs │ │ │ ├── LeanInput.cs.meta │ │ │ ├── LeanInspector.cs │ │ │ └── LeanInspector.cs.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── READ ME.txt │ ├── READ ME.txt.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 Position.unity │ │ ├── 02 Position.unity.meta │ │ ├── 03 Finger Up.unity │ │ ├── 03 Finger Up.unity.meta │ │ ├── 04 Finger Swipe.unity │ │ ├── 04 Finger Swipe.unity.meta │ │ ├── 05 Rotation.unity │ │ ├── 05 Rotation.unity.meta │ │ ├── 06 Direction 4.unity │ │ ├── 06 Direction 4.unity.meta │ │ ├── 07 Direction 8.unity │ │ ├── 07 Direction 8.unity.meta │ │ ├── 08 Finger Tap.unity │ │ ├── 08 Finger Tap.unity.meta │ │ ├── 09 Spawn.unity │ │ ├── 09 Spawn.unity.meta │ │ ├── 10 Block.unity │ │ ├── 10 Block.unity.meta │ │ ├── 11 Double.unity │ │ ├── 11 Double.unity.meta │ │ ├── 12 Finger Old.unity │ │ ├── 12 Finger Old.unity.meta │ │ ├── 13 Transform.unity │ │ ├── 13 Transform.unity.meta │ │ ├── 14 Relative.unity │ │ ├── 14 Relative.unity.meta │ │ ├── 15 Selectable.unity │ │ ├── 15 Selectable.unity.meta │ │ ├── 16 Tap To Select.unity │ │ ├── 16 Tap To Select.unity.meta │ │ ├── 17 Transform Relative.unity │ │ ├── 17 Transform Relative.unity.meta │ │ ├── 18 Limit = Stop At Max.unity │ │ ├── 18 Limit = Stop At Max.unity.meta │ │ ├── 19 Limit = Deselect First.unity │ │ ├── 19 Limit = Deselect First.unity.meta │ │ ├── 20 Destroy.unity │ │ ├── 20 Destroy.unity.meta │ │ ├── 20 Transform Relative.unity │ │ ├── 20 Transform Relative.unity.meta │ │ ├── 21 Tap To Toggle.unity │ │ ├── 21 Tap To Toggle.unity.meta │ │ ├── 23 Press To Select.unity │ │ ├── 23 Press To Select.unity.meta │ │ ├── 24 Transform Relative.unity │ │ ├── 24 Transform Relative.unity.meta │ │ ├── 25 Isolate.unity │ │ ├── 25 Isolate.unity.meta │ │ ├── Finger Trail.unity │ │ ├── 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 │ │ │ ├── Button.png │ │ │ ├── Button.png.meta │ │ │ ├── Canvas.prefab │ │ │ ├── Canvas.prefab.meta │ │ │ ├── Circle.png │ │ │ ├── Circle.png.meta │ │ │ ├── Demo.prefab │ │ │ ├── Demo.prefab.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 │ │ │ ├── Square.png │ │ │ ├── Square.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 │ │ ├── LeanScreenQuery.cs │ │ ├── LeanScreenQuery.cs.meta │ │ ├── LeanSelect.cs │ │ ├── LeanSelect.cs.meta │ │ ├── LeanSelectBase.cs │ │ ├── LeanSelectBase.cs.meta │ │ ├── LeanSelectByFinger.cs │ │ ├── LeanSelectByFinger.cs.meta │ │ ├── LeanSelectable.cs │ │ ├── LeanSelectable.cs.meta │ │ ├── LeanSelectableByFIngerBehaviour.cs │ │ ├── LeanSelectableByFIngerBehaviour.cs.meta │ │ ├── LeanSelectableByFinger.cs │ │ ├── LeanSelectableByFinger.cs.meta │ │ ├── LeanSwipeBase.cs │ │ ├── LeanSwipeBase.cs.meta │ │ ├── LeanTouchSimulator.cs │ │ ├── LeanTouchSimulator.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 │ │ ├── package.json │ │ └── package.json.meta ├── LeanTween.meta ├── LeanTween │ ├── Documentation.meta │ ├── Documentation │ │ ├── assets.meta │ │ ├── assets │ │ │ ├── css.meta │ │ │ ├── css │ │ │ │ ├── main.css │ │ │ │ └── main.css.meta │ │ │ ├── favicon.ico │ │ │ ├── favicon.ico.meta │ │ │ ├── index.html │ │ │ └── index.html.meta │ │ ├── classes.meta │ │ ├── classes │ │ │ ├── LTBezierPath.html │ │ │ ├── LTBezierPath.html.meta │ │ │ ├── LTDescr.html │ │ │ ├── LTDescr.html.meta │ │ │ ├── LTEvent.html │ │ │ ├── LTEvent.html.meta │ │ │ ├── LTRect.html │ │ │ ├── LTRect.html.meta │ │ │ ├── LTSeq.html │ │ │ ├── LTSeq.html.meta │ │ │ ├── LTSpline.html │ │ │ ├── LTSpline.html.meta │ │ │ ├── LeanAudio.html │ │ │ ├── LeanAudio.html.meta │ │ │ ├── LeanAudioOptions.html │ │ │ ├── LeanAudioOptions.html.meta │ │ │ ├── LeanSmooth.html │ │ │ ├── LeanSmooth.html.meta │ │ │ ├── LeanTween.html │ │ │ ├── LeanTween.html.meta │ │ │ ├── LeanTweenType.html │ │ │ ├── LeanTweenType.html.meta │ │ │ ├── index.html │ │ │ └── index.html.meta │ │ ├── elements.meta │ │ ├── elements │ │ │ ├── index.html │ │ │ └── index.html.meta │ │ ├── index.html │ │ └── index.html.meta │ ├── Editor.meta │ ├── Editor │ │ ├── LeanTweenDocumentationEditor.cs │ │ └── LeanTweenDocumentationEditor.cs.meta │ ├── Examples.meta │ ├── Examples │ │ ├── Archived.meta │ │ ├── Archived │ │ │ ├── 2dUnlitWithFade.shader │ │ │ ├── 2dUnlitWithFade.shader.meta │ │ │ ├── GrumpyCat.jpeg │ │ │ ├── GrumpyCat.jpeg.meta │ │ │ ├── OldGUIExamplesCS.cs │ │ │ ├── OldGUIExamplesCS.cs.meta │ │ │ ├── OldGUIExamplesCS.unity │ │ │ ├── OldGUIExamplesCS.unity.meta │ │ │ ├── SoBeautiful.gif │ │ │ ├── SoBeautiful.gif.meta │ │ │ ├── TestingPunch.cs │ │ │ ├── TestingPunch.cs.meta │ │ │ ├── TestingPunch.unity │ │ │ ├── TestingPunch.unity.meta │ │ │ ├── TestingRigidbodyCS.cs │ │ │ ├── TestingRigidbodyCS.cs.meta │ │ │ ├── TestingRigidbodyCS.unity │ │ │ └── TestingRigidbodyCS.unity.meta │ │ ├── Material.meta │ │ ├── Material │ │ │ ├── AlphBumps.mat │ │ │ ├── AlphBumps.mat.meta │ │ │ ├── AlphaReadyMaterial.mat │ │ │ ├── AlphaReadyMaterial.mat.meta │ │ │ ├── DirectionalArrowMaterial.mat │ │ │ ├── DirectionalArrowMaterial.mat.meta │ │ │ ├── FrictionLess.physicMaterial │ │ │ ├── FrictionLess.physicMaterial.meta │ │ │ ├── Futoro_PersonSprites.jpg │ │ │ ├── Futoro_PersonSprites.jpg.meta │ │ │ ├── Futoro_PlanetMaterial.mat │ │ │ ├── Futoro_PlanetMaterial.mat.meta │ │ │ ├── Futoro_Ring.psd │ │ │ ├── Futoro_Ring.psd.meta │ │ │ ├── Futoro_SineWave.mat │ │ │ ├── Futoro_SineWave.mat.meta │ │ │ ├── Futuro_Bar.psd │ │ │ ├── Futuro_Bar.psd.meta │ │ │ ├── Futuro_ButtonBack.psd │ │ │ ├── Futuro_ButtonBack.psd.meta │ │ │ ├── Futuro_ButtonBackDark.psd │ │ │ ├── Futuro_ButtonBackDark.psd.meta │ │ │ ├── Futuro_SineWave.psd │ │ │ ├── Futuro_SineWave.psd.meta │ │ │ ├── Futuro_WindowBack.psd │ │ │ ├── Futuro_WindowBack.psd.meta │ │ │ ├── Graph.mat │ │ │ ├── Graph.mat.meta │ │ │ ├── GridLines.mat │ │ │ ├── GridLines.mat.meta │ │ │ ├── Ground.mat │ │ │ ├── Ground.mat.meta │ │ │ ├── LineGlowMaterial.mat │ │ │ ├── LineGlowMaterial.mat.meta │ │ │ ├── Mock2d.mat │ │ │ ├── Mock2d.mat.meta │ │ │ ├── ParticleGlow.mat │ │ │ ├── ParticleGlow.mat.meta │ │ │ ├── PointMark.mat │ │ │ ├── PointMark.mat.meta │ │ │ ├── SpaceLineGlowMaterial.mat │ │ │ ├── SpaceLineGlowMaterial.mat.meta │ │ │ ├── TrackCar.mat │ │ │ ├── TrackCar.mat.meta │ │ │ ├── TrackFollowMaterial.mat │ │ │ ├── TrackFollowMaterial.mat.meta │ │ │ ├── TrackGlowMaterial.mat │ │ │ ├── TrackGlowMaterial.mat.meta │ │ │ ├── TrackLines.mat │ │ │ ├── TrackLines.mat.meta │ │ │ ├── TrailFollowMaterial.mat │ │ │ ├── TrailFollowMaterial.mat.meta │ │ │ ├── WalkingStick.mat │ │ │ └── WalkingStick.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── 2dText.fbx │ │ │ ├── 2dText.fbx.meta │ │ │ ├── AdvancedExamplesText.fbx │ │ │ ├── AdvancedExamplesText.fbx.meta │ │ │ ├── BasicExamplesText.fbx │ │ │ ├── BasicExamplesText.fbx.meta │ │ │ ├── CameraShakeText.fbx │ │ │ ├── CameraShakeText.fbx.meta │ │ │ ├── CurvePathsText.fbx │ │ │ ├── CurvePathsText.fbx.meta │ │ │ ├── DirectionalArrow.fbx │ │ │ ├── DirectionalArrow.fbx.meta │ │ │ ├── EndlessDrivingText.fbx │ │ │ ├── EndlessDrivingText.fbx.meta │ │ │ ├── ExampleCar.fbx │ │ │ ├── ExampleCar.fbx.meta │ │ │ ├── ExampleFirTree.fbx │ │ │ ├── ExampleFirTree.fbx.meta │ │ │ ├── Grid.fbx │ │ │ ├── Grid.fbx.meta │ │ │ ├── LeanTween-Icon.blend.zip │ │ │ ├── LeanTween-Icon.blend.zip.meta │ │ │ ├── LeanTween-Icon.fbx │ │ │ ├── LeanTween-Icon.fbx.meta │ │ │ ├── LeanTween.prefab │ │ │ ├── LeanTween.prefab.meta │ │ │ ├── LeanTweenHD-Icon.fbx │ │ │ ├── LeanTweenHD-Icon.fbx.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── LMaterial.mat │ │ │ │ ├── LMaterial.mat.meta │ │ │ │ ├── LineMaterial.mat │ │ │ │ ├── LineMaterial.mat.meta │ │ │ │ ├── Material.001.mat │ │ │ │ ├── Material.001.mat.meta │ │ │ │ ├── Material.mat │ │ │ │ ├── Material.mat.meta │ │ │ │ ├── Material_001.mat │ │ │ │ ├── Material_001.mat.meta │ │ │ │ ├── No Name.mat │ │ │ │ ├── No Name.mat.meta │ │ │ │ ├── SimpleAvatarAlphaBlue.mat │ │ │ │ ├── SimpleAvatarAlphaBlue.mat.meta │ │ │ │ ├── SimpleAvatarBlue.mat │ │ │ │ ├── SimpleAvatarBlue.mat.meta │ │ │ │ ├── SimpleAvatarHat.mat │ │ │ │ ├── SimpleAvatarHat.mat.meta │ │ │ │ ├── SimpleAvatarMat.mat │ │ │ │ ├── SimpleAvatarMat.mat.meta │ │ │ │ ├── SimpleAvatarSpace.mat │ │ │ │ ├── SimpleAvatarSpace.mat.meta │ │ │ │ ├── SubTitleText.mat │ │ │ │ ├── SubTitleText.mat.meta │ │ │ │ ├── eanTween.mat │ │ │ │ └── eanTween.mat.meta │ │ │ ├── SimpleAvatar.fbx │ │ │ ├── SimpleAvatar.fbx.meta │ │ │ ├── SimpleAvatarPieces.fbx │ │ │ └── SimpleAvatarPieces.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Avatar2dParticles.prefab │ │ │ ├── Avatar2dParticles.prefab.meta │ │ │ ├── AvatarAlpha.prefab │ │ │ ├── AvatarAlpha.prefab.meta │ │ │ ├── AvatarDiffuse 1.prefab │ │ │ ├── AvatarDiffuse 1.prefab.meta │ │ │ ├── AvatarDiffuse.prefab │ │ │ ├── AvatarDiffuse.prefab.meta │ │ │ ├── AvatarEventsCS.prefab │ │ │ ├── AvatarEventsCS.prefab.meta │ │ │ ├── AvatarSpace.prefab │ │ │ ├── AvatarSpace.prefab.meta │ │ │ ├── AvatarSparkles.prefab │ │ │ ├── AvatarSparkles.prefab.meta │ │ │ ├── BasicExamplesText.prefab │ │ │ ├── BasicExamplesText.prefab.meta │ │ │ ├── DustCloud.prefab │ │ │ ├── DustCloud.prefab.meta │ │ │ ├── EndlessPiece.prefab │ │ │ ├── EndlessPiece.prefab.meta │ │ │ ├── GridLine.prefab │ │ │ ├── GridLine.prefab.meta │ │ │ ├── Grids.prefab │ │ │ └── Grids.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── Following.unity │ │ │ ├── Following.unity.meta │ │ │ ├── GeneralAdvancedTechniques.unity │ │ │ ├── GeneralAdvancedTechniques.unity.meta │ │ │ ├── GeneralBasic.unity │ │ │ ├── GeneralBasic.unity.meta │ │ │ ├── GeneralBasics2d.unity │ │ │ ├── GeneralBasics2d.unity.meta │ │ │ ├── GeneralCameraShake.unity │ │ │ ├── GeneralCameraShake.unity.meta │ │ │ ├── GeneralEasingTypes.unity │ │ │ ├── GeneralEasingTypes.unity.meta │ │ │ ├── GeneralEvents.unity │ │ │ ├── GeneralEvents.unity.meta │ │ │ ├── GeneralSequencer.unity │ │ │ ├── GeneralSequencer.unity.meta │ │ │ ├── GeneralSimpleUi.unity │ │ │ ├── GeneralSimpleUi.unity.meta │ │ │ ├── GeneralUISpace.unity │ │ │ ├── GeneralUISpace.unity.meta │ │ │ ├── LogoCinematic.unity │ │ │ ├── LogoCinematic.unity.meta │ │ │ ├── PathBezier.unity │ │ │ ├── PathBezier.unity.meta │ │ │ ├── PathBezier2d.unity │ │ │ ├── PathBezier2d.unity.meta │ │ │ ├── PathSpline2d.unity │ │ │ ├── PathSpline2d.unity.meta │ │ │ ├── PathSplineEndless.unity │ │ │ ├── PathSplineEndless.unity.meta │ │ │ ├── PathSplinePerformance.unity │ │ │ ├── PathSplinePerformance.unity.meta │ │ │ ├── PathSplineTrack.unity │ │ │ ├── PathSplineTrack.unity.meta │ │ │ ├── PathSplines.unity │ │ │ ├── PathSplines.unity.meta │ │ │ ├── TestingUnitTests.unity │ │ │ ├── TestingUnitTests.unity.meta │ │ │ ├── TestingZLegacy.unity │ │ │ ├── TestingZLegacy.unity.meta │ │ │ ├── TestingZLegacyExt.unity │ │ │ └── TestingZLegacyExt.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Archive.zip │ │ │ ├── Archive.zip.meta │ │ │ ├── Following.cs │ │ │ ├── Following.cs.meta │ │ │ ├── GeneralAdvancedTechniques.cs │ │ │ ├── GeneralAdvancedTechniques.cs.meta │ │ │ ├── GeneralBasic.cs │ │ │ ├── GeneralBasic.cs.meta │ │ │ ├── GeneralBasics2d.cs │ │ │ ├── GeneralBasics2d.cs.meta │ │ │ ├── GeneralCameraShake.cs │ │ │ ├── GeneralCameraShake.cs.meta │ │ │ ├── GeneralEasingTypes.cs │ │ │ ├── GeneralEasingTypes.cs.meta │ │ │ ├── GeneralEventsListeners.cs │ │ │ ├── GeneralEventsListeners.cs.meta │ │ │ ├── GeneralSequencer.cs │ │ │ ├── GeneralSequencer.cs.meta │ │ │ ├── GeneralSimpleUI.cs │ │ │ ├── GeneralSimpleUI.cs.meta │ │ │ ├── GeneralUISpace.cs │ │ │ ├── GeneralUISpace.cs.meta │ │ │ ├── LogoCinematic.cs │ │ │ ├── LogoCinematic.cs.meta │ │ │ ├── PathBezier.cs │ │ │ ├── PathBezier.cs.meta │ │ │ ├── PathBezier2d.cs │ │ │ ├── PathBezier2d.cs.meta │ │ │ ├── PathSpline.cs │ │ │ ├── PathSpline.cs.meta │ │ │ ├── PathSpline2d.cs │ │ │ ├── PathSpline2d.cs.meta │ │ │ ├── PathSplineEndless.cs │ │ │ ├── PathSplineEndless.cs.meta │ │ │ ├── PathSplinePerformance.cs │ │ │ ├── PathSplinePerformance.cs.meta │ │ │ ├── PathSplineTrack.cs │ │ │ ├── PathSplineTrack.cs.meta │ │ │ ├── PathSplines.cs │ │ │ ├── PathSplines.cs.meta │ │ │ ├── TestingUnitTests.cs │ │ │ ├── TestingUnitTests.cs.meta │ │ │ ├── TestingZLegacy.cs │ │ │ ├── TestingZLegacy.cs.meta │ │ │ ├── TestingZLegacyExt.cs │ │ │ └── TestingZLegacyExt.cs.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── DefaultParticleReplacement.jpg │ │ │ ├── DefaultParticleReplacement.jpg.meta │ │ │ ├── Dude2d.png │ │ │ ├── Dude2d.png.meta │ │ │ ├── DustCloud.png │ │ │ ├── DustCloud.png.meta │ │ │ ├── HorizontalGradient.jpg │ │ │ ├── HorizontalGradient.jpg.meta │ │ │ ├── PowerUpStar.png │ │ │ └── PowerUpStar.png.meta │ ├── Framework.meta │ ├── Framework │ │ ├── LTDescr.cs │ │ ├── LTDescr.cs.meta │ │ ├── LTDescrOptional.cs │ │ ├── LTDescrOptional.cs.meta │ │ ├── LTSeq.cs │ │ ├── LTSeq.cs.meta │ │ ├── LeanAudio.cs │ │ ├── LeanAudio.cs.meta │ │ ├── LeanSmooth.cs │ │ ├── LeanSmooth.cs.meta │ │ ├── LeanTest.cs │ │ ├── LeanTest.cs.meta │ │ ├── LeanTween.cs │ │ ├── LeanTween.cs.meta │ │ ├── LeanTween.dll.zip │ │ ├── LeanTween.dll.zip.meta │ │ ├── LeanTweenExt.cs │ │ └── LeanTweenExt.cs.meta │ ├── LeanTween.asmdef │ ├── LeanTween.asmdef.meta │ ├── License.txt │ ├── License.txt.meta │ ├── ReadMe.txt │ └── ReadMe.txt.meta ├── LiteDB.meta ├── LiteDB │ ├── LiteDB.dll │ ├── LiteDB.dll.meta │ ├── link.xml │ └── link.xml.meta ├── Materials.meta ├── Materials │ ├── Base.meta │ ├── Base │ │ ├── BackgroundMaterial.mat │ │ ├── BackgroundMaterial.mat.meta │ │ ├── LaneHighlightMaterial.mat │ │ ├── LaneHighlightMaterial.mat.meta │ │ ├── OnTrackSpriteMaterial.mat │ │ ├── OnTrackSpriteMaterial.mat.meta │ │ ├── TrackMaterial.mat │ │ └── TrackMaterial.mat.meta │ ├── Notes.meta │ ├── Notes │ │ ├── ArcMaterial.mat │ │ ├── ArcMaterial.mat.meta │ │ ├── ArcShadowMaterial.mat │ │ ├── ArcShadowMaterial.mat.meta │ │ ├── ArcTapMaterial.mat │ │ ├── ArcTapMaterial.mat.meta │ │ ├── ArctapShadowMaterial.mat │ │ ├── ArctapShadowMaterial.mat.meta │ │ ├── BeatlineMaterial.mat │ │ ├── BeatlineMaterial.mat.meta │ │ ├── ConnectionLine.mat │ │ ├── ConnectionLine.mat.meta │ │ ├── HeightIndicatorMaterial.mat │ │ ├── HeightIndicatorMaterial.mat.meta │ │ ├── HoldMaterial.mat │ │ ├── HoldMaterial.mat.meta │ │ ├── TapMaterial.mat │ │ ├── TapMaterial.mat.meta │ │ ├── TraceMaterial.mat │ │ ├── TraceMaterial.mat.meta │ │ ├── TraceShadowMaterial.mat │ │ └── TraceShadowMaterial.mat.meta │ ├── Particle.meta │ └── Particle │ │ ├── ArcIndicator.mat │ │ ├── ArcIndicator.mat.meta │ │ ├── Billboarded.mat │ │ ├── Billboarded.mat.meta │ │ ├── EarlyJudge.mat │ │ ├── EarlyJudge.mat.meta │ │ ├── FarJudge.mat │ │ ├── FarJudge.mat.meta │ │ ├── HoldJudge.mat │ │ ├── HoldJudge.mat.meta │ │ ├── LateJudge.mat │ │ ├── LateJudge.mat.meta │ │ ├── LostJudge.mat │ │ ├── LostJudge.mat.meta │ │ ├── MaxPureJudge.mat │ │ ├── MaxPureJudge.mat.meta │ │ ├── PureJudge.mat │ │ ├── PureJudge.mat.meta │ │ ├── TapJudge.mat │ │ └── TapJudge.mat.meta ├── Meshes.meta ├── Meshes │ ├── Arc.fbx │ ├── Arc.fbx.meta │ ├── ArcShadow.fbx │ ├── ArcShadow.fbx.meta │ ├── Archead.fbx │ ├── Archead.fbx.meta │ ├── Arctap.fbx │ ├── Arctap.fbx.meta │ ├── ArctapShadow.fbx │ ├── ArctapShadow.fbx.meta │ ├── Beatline.fbx │ ├── Beatline.fbx.meta │ ├── ConnectionLine.fbx │ ├── ConnectionLine.fbx.meta │ ├── Hold.fbx │ ├── Hold.fbx.meta │ ├── Tap.fbx │ ├── Tap.fbx.meta │ ├── Trace.fbx │ ├── Trace.fbx.meta │ ├── TraceShadow.fbx │ ├── TraceShadow.fbx.meta │ ├── Tracehead.fbx │ └── Tracehead.fbx.meta ├── Prefabs.meta ├── Prefabs │ ├── Notes.meta │ ├── Notes │ │ ├── ArcHeadPrefab.prefab │ │ ├── ArcHeadPrefab.prefab.meta │ │ ├── ArcJudgePrefab.prefab │ │ ├── ArcJudgePrefab.prefab.meta │ │ ├── ArcPrefab.prefab │ │ ├── ArcPrefab.prefab.meta │ │ ├── ArcShadowPrefab.prefab │ │ ├── ArcShadowPrefab.prefab.meta │ │ ├── ArcTapPrefab.prefab │ │ ├── ArcTapPrefab.prefab.meta │ │ ├── ArctapShadowPrefab.prefab │ │ ├── ArctapShadowPrefab.prefab.meta │ │ ├── BeatlinePrefab.prefab │ │ ├── BeatlinePrefab.prefab.meta │ │ ├── ConnectionLine.prefab │ │ ├── ConnectionLine.prefab.meta │ │ ├── FloatLine.prefab │ │ ├── FloatLine.prefab.meta │ │ ├── HeightIndicator.prefab │ │ ├── HeightIndicator.prefab.meta │ │ ├── HoldPrefab.prefab │ │ ├── HoldPrefab.prefab.meta │ │ ├── TapPrefab.prefab │ │ ├── TapPrefab.prefab.meta │ │ ├── TraceHeadPrefab.prefab │ │ ├── TraceHeadPrefab.prefab.meta │ │ ├── TracePrefab.prefab │ │ ├── TracePrefab.prefab.meta │ │ ├── TraceShadowPrefab.prefab │ │ └── TraceShadowPrefab.prefab.meta │ ├── Particles.meta │ ├── Particles │ │ ├── ArcApproachIndicatorPrefab.prefab │ │ ├── ArcApproachIndicatorPrefab.prefab.meta │ │ ├── ArcParticle.prefab │ │ ├── ArcParticle.prefab.meta │ │ ├── TapJudgeParticle.prefab │ │ ├── TapJudgeParticle.prefab.meta │ │ ├── TextJudgeParticle.prefab │ │ ├── TextJudgeParticle.prefab.meta │ │ ├── TraceApproachIndicatorPrefab.prefab │ │ └── TraceApproachIndicatorPrefab.prefab.meta │ ├── Scenecontrol.meta │ ├── Scenecontrol │ │ ├── SpriteScenecontrolObjectBase.prefab │ │ ├── SpriteScenecontrolObjectBase.prefab.meta │ │ ├── TextScenecontrolObjectBase.prefab │ │ └── TextScenecontrolObjectBase.prefab.meta │ ├── UI.meta │ └── UI │ │ ├── SelectionMenu.meta │ │ ├── SelectionMenu │ │ ├── DifficultySmallItem.prefab │ │ ├── DifficultySmallItem.prefab.meta │ │ ├── FolderCell.prefab │ │ ├── FolderCell.prefab.meta │ │ ├── LevelCell.prefab │ │ ├── LevelCell.prefab.meta │ │ ├── LevelCellDifficultyItem.prefab │ │ ├── LevelCellDifficultyItem.prefab.meta │ │ ├── PackCell.prefab │ │ └── PackCell.prefab.meta │ │ ├── Shutter.prefab │ │ └── Shutter.prefab.meta ├── Resources.meta ├── SceneDependencyCache.meta ├── SceneDependencyCache │ ├── be6b2c9b9f886cb5ced80e992e4505a4.sceneWithBuildSettings │ ├── be6b2c9b9f886cb5ced80e992e4505a4.sceneWithBuildSettings.meta │ ├── e93091d480612504fc380b3000c61880.sceneWithBuildSettings │ └── e93091d480612504fc380b3000c61880.sceneWithBuildSettings.meta ├── Scenes.meta ├── Scenes │ ├── BootScene.unity │ ├── BootScene.unity.meta │ ├── GreetingScene.unity │ ├── GreetingScene.unity.meta │ ├── PlayScene.unity │ ├── PlayScene.unity.meta │ ├── ResultScene.unity │ ├── ResultScene.unity.meta │ ├── SelectionScene.unity │ └── SelectionScene.unity.meta ├── Scripts.meta ├── Scripts │ ├── ArcCore.asmdef │ ├── ArcCore.asmdef.meta │ ├── Gameplay.meta │ ├── Gameplay │ │ ├── ArcCore.Gameplay.asmdef │ │ ├── ArcCore.Gameplay.asmdef.meta │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── Instance.meta │ │ │ ├── Instance │ │ │ │ ├── AppearTime.cs │ │ │ │ ├── AppearTime.cs.meta │ │ │ │ ├── ArcColorID.cs │ │ │ │ ├── ArcColorID.cs.meta │ │ │ │ ├── ArcData.cs │ │ │ │ ├── ArcData.cs.meta │ │ │ │ ├── ArcGroupID.cs │ │ │ │ ├── ArcGroupID.cs.meta │ │ │ │ ├── ArcTapShadowReference.cs │ │ │ │ ├── ArcTapShadowReference.cs.meta │ │ │ │ ├── BaseLength.cs │ │ │ │ ├── BaseLength.cs.meta │ │ │ │ ├── BaseOffset.cs │ │ │ │ ├── BaseOffset.cs.meta │ │ │ │ ├── BaseShear.cs │ │ │ │ ├── BaseShear.cs.meta │ │ │ │ ├── BaseZScale.cs │ │ │ │ ├── BaseZScale.cs.meta │ │ │ │ ├── ChartEndTime.cs │ │ │ │ ├── ChartEndTime.cs.meta │ │ │ │ ├── ChartIncrTime.cs │ │ │ │ ├── ChartIncrTime.cs.meta │ │ │ │ ├── ChartLane.cs │ │ │ │ ├── ChartLane.cs.meta │ │ │ │ ├── ChartPosition.cs │ │ │ │ ├── ChartPosition.cs.meta │ │ │ │ ├── ChartTime.cs │ │ │ │ ├── ChartTime.cs.meta │ │ │ │ ├── ConnectionReference.cs │ │ │ │ ├── ConnectionReference.cs.meta │ │ │ │ ├── Cutoff.cs │ │ │ │ ├── Cutoff.cs.meta │ │ │ │ ├── DestroyOnTiming.cs │ │ │ │ ├── DestroyOnTiming.cs.meta │ │ │ │ ├── FloorPosition.cs │ │ │ │ ├── FloorPosition.cs.meta │ │ │ │ ├── HoldVisualHeld.cs │ │ │ │ ├── HoldVisualHeld.cs.meta │ │ │ │ ├── TimingGroup.cs │ │ │ │ └── TimingGroup.cs.meta │ │ │ ├── Tags.meta │ │ │ └── Tags │ │ │ │ ├── BypassJudgeScoping.cs │ │ │ │ ├── BypassJudgeScoping.cs.meta │ │ │ │ ├── Disappeared.cs │ │ │ │ ├── Disappeared.cs.meta │ │ │ │ ├── HoldLocked.cs │ │ │ │ ├── HoldLocked.cs.meta │ │ │ │ ├── IsTraceBodies.cs │ │ │ │ ├── IsTraceBodies.cs.meta │ │ │ │ ├── PastJudgeRange.cs │ │ │ │ ├── PastJudgeRange.cs.meta │ │ │ │ ├── WithinJudgeRange.cs │ │ │ │ ├── WithinJudgeRange.cs.meta │ │ │ │ ├── WithinRenderRange.cs │ │ │ │ └── WithinRenderRange.cs.meta │ │ ├── Conversion.cs │ │ ├── Conversion.cs.meta │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── ArcColorFSM.cs │ │ │ ├── ArcColorFSM.cs.meta │ │ │ ├── ArcPointData.cs │ │ │ ├── ArcPointData.cs.meta │ │ │ ├── GroupState.cs │ │ │ ├── GroupState.cs.meta │ │ │ ├── JudgeTracker.cs │ │ │ ├── JudgeTracker.cs.meta │ │ │ ├── ParticleBuffer.cs │ │ │ ├── ParticleBuffer.cs.meta │ │ │ ├── Struct4X.cs │ │ │ ├── Struct4X.cs.meta │ │ │ ├── TouchPoint.cs │ │ │ └── TouchPoint.cs.meta │ │ ├── EntityCreation.meta │ │ ├── EntityCreation │ │ │ ├── ArcEntityCreator.cs │ │ │ ├── ArcEntityCreator.cs.meta │ │ │ ├── ArclikeEntityCreator.cs │ │ │ ├── ArclikeEntityCreator.cs.meta │ │ │ ├── BeatlineEntityCreator.cs │ │ │ ├── BeatlineEntityCreator.cs.meta │ │ │ ├── HoldEntityCreator.cs │ │ │ ├── HoldEntityCreator.cs.meta │ │ │ ├── TapEntityCreator.cs │ │ │ ├── TapEntityCreator.cs.meta │ │ │ ├── TraceEntityCreator.cs │ │ │ └── TraceEntityCreator.cs.meta │ │ ├── JudgeManage.cs │ │ ├── JudgeManage.cs.meta │ │ ├── JudgeType.cs │ │ ├── JudgeType.cs.meta │ │ ├── MainHandlers.meta │ │ ├── MainHandlers │ │ │ ├── Conductor.cs │ │ │ ├── Conductor.cs.meta │ │ │ ├── GameplayCamera.cs │ │ │ ├── GameplayCamera.cs.meta │ │ │ ├── IndicatorHandler.cs │ │ │ ├── IndicatorHandler.cs.meta │ │ │ ├── InputHandler.cs │ │ │ ├── InputHandler.cs.meta │ │ │ ├── InputVisualFeedback.cs │ │ │ ├── InputVisualFeedback.cs.meta │ │ │ ├── ParticlePool.cs │ │ │ ├── ParticlePool.cs.meta │ │ │ ├── ScenecontrolHandler.cs │ │ │ ├── ScenecontrolHandler.cs.meta │ │ │ ├── ScoreHandler.cs │ │ │ └── ScoreHandler.cs.meta │ │ ├── Mathematics.meta │ │ ├── Mathematics │ │ │ ├── Circle2D.cs │ │ │ ├── Circle2D.cs.meta │ │ │ ├── FixedQ7.cs │ │ │ ├── FixedQ7.cs.meta │ │ │ ├── PosRot.cs │ │ │ ├── PosRot.cs.meta │ │ │ ├── Projection.cs │ │ │ ├── Projection.cs.meta │ │ │ ├── Rect2D.cs │ │ │ └── Rect2D.cs.meta │ │ ├── Objects.meta │ │ ├── Objects │ │ │ ├── Particle.meta │ │ │ ├── Particle │ │ │ │ ├── ArcIndicator.cs │ │ │ │ ├── ArcIndicator.cs.meta │ │ │ │ ├── IIndicator.cs │ │ │ │ ├── IIndicator.cs.meta │ │ │ │ ├── TraceIndicator.cs │ │ │ │ └── TraceIndicator.cs.meta │ │ │ ├── ScenecontrolObject.cs │ │ │ ├── ScenecontrolObject.cs.meta │ │ │ ├── SpriteScenecontrolObject.cs │ │ │ ├── SpriteScenecontrolObject.cs.meta │ │ │ ├── TextScenecontrolObject.cs │ │ │ └── TextScenecontrolObject.cs.meta │ │ ├── Parsing.meta │ │ ├── Parsing │ │ │ ├── ArcParser.cs │ │ │ ├── ArcParser.cs.meta │ │ │ ├── CommandParser.cs │ │ │ ├── CommandParser.cs.meta │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── AffSceneControlEvent.cs │ │ │ │ ├── AffSceneControlEvent.cs.meta │ │ │ │ ├── ArcEasing.cs │ │ │ │ ├── ArcEasing.cs.meta │ │ │ │ ├── ArcRaw.cs │ │ │ │ ├── ArcRaw.cs.meta │ │ │ │ ├── ArctapRaw.cs │ │ │ │ ├── ArctapRaw.cs.meta │ │ │ │ ├── CameraEasing.cs │ │ │ │ ├── CameraEasing.cs.meta │ │ │ │ ├── CameraEvent.cs │ │ │ │ ├── CameraEvent.cs.meta │ │ │ │ ├── ChartError.cs │ │ │ │ ├── ChartError.cs.meta │ │ │ │ ├── ChartErrorType.cs │ │ │ │ ├── ChartErrorType.cs.meta │ │ │ │ ├── ControlAxisKey.cs │ │ │ │ ├── ControlAxisKey.cs.meta │ │ │ │ ├── ControlEnableKey.cs │ │ │ │ ├── ControlEnableKey.cs.meta │ │ │ │ ├── ControlImageKey.cs │ │ │ │ ├── ControlImageKey.cs.meta │ │ │ │ ├── ControlIntKey.cs │ │ │ │ ├── ControlIntKey.cs.meta │ │ │ │ ├── ControlStringKey.cs │ │ │ │ ├── ControlStringKey.cs.meta │ │ │ │ ├── ControlValueKey.cs │ │ │ │ ├── ControlValueKey.cs.meta │ │ │ │ ├── HoldRaw.cs │ │ │ │ ├── HoldRaw.cs.meta │ │ │ │ ├── TapRaw.cs │ │ │ │ ├── TapRaw.cs.meta │ │ │ │ ├── TimingEvent.cs │ │ │ │ ├── TimingEvent.cs.meta │ │ │ │ ├── TimingEventEX.cs │ │ │ │ ├── TimingEventEX.cs.meta │ │ │ │ ├── TimingGroupFlag.cs │ │ │ │ ├── TimingGroupFlag.cs.meta │ │ │ │ ├── TimingRaw.cs │ │ │ │ └── TimingRaw.cs.meta │ │ │ ├── Easing.cs │ │ │ ├── Easing.cs.meta │ │ │ ├── EasingType.cs │ │ │ ├── EasingType.cs.meta │ │ │ ├── IChartParser.cs │ │ │ ├── IChartParser.cs.meta │ │ │ ├── ParsingException.cs │ │ │ └── ParsingException.cs.meta │ │ ├── PlayManager.cs │ │ ├── PlayManager.cs.meta │ │ ├── PlaySceneRepresentative.cs │ │ ├── PlaySceneRepresentative.cs.meta │ │ ├── Systems.meta │ │ └── Systems │ │ │ ├── FinalizeSystemBase.cs │ │ │ ├── FinalizeSystemBase.cs.meta │ │ │ ├── Groups.meta │ │ │ ├── Groups │ │ │ ├── CustomInitializationSystemGroup.cs │ │ │ ├── CustomInitializationSystemGroup.cs.meta │ │ │ ├── CustomTransformSystemGroup.cs │ │ │ ├── CustomTransformSystemGroup.cs.meta │ │ │ ├── JudgementSystemGroup.cs │ │ │ └── JudgementSystemGroup.cs.meta │ │ │ ├── Initialization.meta │ │ │ ├── Initialization │ │ │ ├── InitFinalizeSystem.cs │ │ │ ├── InitFinalizeSystem.cs.meta │ │ │ ├── InitSetupSystem.cs │ │ │ ├── InitSetupSystem.cs.meta │ │ │ ├── ScopingSystem.cs │ │ │ └── ScopingSystem.cs.meta │ │ │ ├── Judgement.meta │ │ │ ├── Judgement │ │ │ ├── ArcCollisionCheckSystem.cs │ │ │ ├── ArcCollisionCheckSystem.cs.meta │ │ │ ├── ArcColorSystem.cs │ │ │ ├── ArcColorSystem.cs.meta │ │ │ ├── ArcGraceCheckSystem.cs │ │ │ ├── ArcGraceCheckSystem.cs.meta │ │ │ ├── ArcIncrementSystem.cs │ │ │ ├── ArcIncrementSystem.cs.meta │ │ │ ├── ExpirableJudgeSystem.cs │ │ │ ├── ExpirableJudgeSystem.cs.meta │ │ │ ├── HoldHighlightSystem.cs │ │ │ ├── HoldHighlightSystem.cs.meta │ │ │ ├── JudgeFinalizeSystem.cs │ │ │ ├── JudgeFinalizeSystem.cs.meta │ │ │ ├── JudgeSetupSystem.cs │ │ │ ├── JudgeSetupSystem.cs.meta │ │ │ ├── TappableJudgeSystem.cs │ │ │ ├── TappableJudgeSystem.cs.meta │ │ │ ├── UnlockedHoldJudgeSystem.cs │ │ │ └── UnlockedHoldJudgeSystem.cs.meta │ │ │ ├── SetupSystemBase.cs │ │ │ ├── SetupSystemBase.cs.meta │ │ │ ├── Transform.meta │ │ │ └── Transform │ │ │ ├── MovingIndicatorsSystem.cs │ │ │ ├── MovingIndicatorsSystem.cs.meta │ │ │ ├── MovingNotesSystem.cs │ │ │ ├── MovingNotesSystem.cs.meta │ │ │ ├── ScaleAlongTrackSystem.cs │ │ │ ├── ScaleAlongTrackSystem.cs.meta │ │ │ ├── TransformFinalizeSystem.cs │ │ │ ├── TransformFinalizeSystem.cs.meta │ │ │ ├── TransformSetupSystem.cs │ │ │ └── TransformSetupSystem.cs.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── ArcCore.Scenes.asmdef │ │ ├── ArcCore.Scenes.asmdef.meta │ │ ├── PlayResult.cs │ │ ├── PlayResult.cs.meta │ │ ├── SceneNames.cs │ │ ├── SceneNames.cs.meta │ │ ├── SceneRepresentative.cs │ │ ├── SceneRepresentative.cs.meta │ │ ├── SceneTransitionManager.cs │ │ └── SceneTransitionManager.cs.meta │ ├── StartupBehaviour.cs │ ├── StartupBehaviour.cs.meta │ ├── Storage.meta │ ├── Storage │ │ ├── ArcCore.Storage.asmdef │ │ ├── ArcCore.Storage.asmdef.meta │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── ArccoreInfoType.cs │ │ │ ├── ArccoreInfoType.cs.meta │ │ │ ├── Chart.cs │ │ │ ├── Chart.cs.meta │ │ │ ├── ChartSettings.cs │ │ │ ├── ChartSettings.cs.meta │ │ │ ├── Difficulty.cs │ │ │ ├── Difficulty.cs.meta │ │ │ ├── DifficultyGroup.cs │ │ │ ├── DifficultyGroup.cs.meta │ │ │ ├── FileReference.cs │ │ │ ├── FileReference.cs.meta │ │ │ ├── IArccoreInfo.cs │ │ │ ├── IArccoreInfo.cs.meta │ │ │ ├── Level.cs │ │ │ ├── Level.cs.meta │ │ │ ├── Pack.cs │ │ │ ├── Pack.cs.meta │ │ │ ├── ScoreCategory.cs │ │ │ ├── ScoreCategory.cs.meta │ │ │ ├── Style.cs │ │ │ └── Style.cs.meta │ │ ├── Database.cs │ │ ├── Database.cs.meta │ │ ├── FileManagement.cs │ │ ├── FileManagement.cs.meta │ │ ├── FileStatics.cs │ │ ├── FileStatics.cs.meta │ │ ├── FileStorage.cs │ │ ├── FileStorage.cs.meta │ │ ├── JsonUserInput.cs │ │ ├── JsonUserInput.cs.meta │ │ ├── JsonUtils.cs │ │ ├── JsonUtils.cs.meta │ │ ├── Preferences.meta │ │ ├── Preferences │ │ │ ├── Preferences.cs │ │ │ └── Preferences.cs.meta │ │ ├── Query.meta │ │ ├── Query │ │ │ ├── LevelQuery.cs │ │ │ ├── LevelQuery.cs.meta │ │ │ ├── PackQuery.cs │ │ │ └── PackQuery.cs.meta │ │ ├── Settings.cs │ │ └── Settings.cs.meta │ ├── UI.meta │ ├── UI │ │ ├── ArcCore.UI.asmdef │ │ ├── ArcCore.UI.asmdef.meta │ │ ├── GreetingSceneRepresentative.cs │ │ ├── GreetingSceneRepresentative.cs.meta │ │ ├── Result.meta │ │ ├── Result │ │ │ ├── ResultDisplay.cs │ │ │ ├── ResultDisplay.cs.meta │ │ │ ├── ResultSceneRepresentative.cs │ │ │ └── ResultSceneRepresentative.cs.meta │ │ ├── SongSelection.meta │ │ └── SongSelection │ │ │ ├── DifficultyListDisplay.cs │ │ │ ├── DifficultyListDisplay.cs.meta │ │ │ ├── DisplayMethod.meta │ │ │ ├── DisplayMethod │ │ │ ├── GroupMethod.meta │ │ │ ├── GroupMethod │ │ │ │ ├── GroupByDifficultyMethod.cs │ │ │ │ ├── GroupByDifficultyMethod.cs.meta │ │ │ │ ├── GroupLevelMethod.cs │ │ │ │ ├── GroupLevelMethod.cs.meta │ │ │ │ ├── NoGroupingMethod.cs │ │ │ │ └── NoGroupingMethod.cs.meta │ │ │ ├── SortMethod.meta │ │ │ └── SortMethod │ │ │ │ ├── SortByDifficultyMethod.cs │ │ │ │ ├── SortByDifficultyMethod.cs.meta │ │ │ │ ├── SortByTitleMethod.cs │ │ │ │ ├── SortByTitleMethod.cs.meta │ │ │ │ ├── SortLevelMethod.cs │ │ │ │ └── SortLevelMethod.cs.meta │ │ │ ├── LevelInfoDisplay.cs │ │ │ ├── LevelInfoDisplay.cs.meta │ │ │ ├── LevelListDisplay.cs │ │ │ ├── LevelListDisplay.cs.meta │ │ │ ├── MenuItems.meta │ │ │ ├── MenuItems │ │ │ ├── DifficultyItem.cs │ │ │ ├── DifficultyItem.cs.meta │ │ │ ├── DifficultyItemData.cs │ │ │ ├── DifficultyItemData.cs.meta │ │ │ ├── LevelCell.cs │ │ │ ├── LevelCell.cs.meta │ │ │ ├── LevelCellData.cs │ │ │ ├── LevelCellData.cs.meta │ │ │ ├── PackCell.cs │ │ │ ├── PackCell.cs.meta │ │ │ ├── PackCellData.cs │ │ │ ├── PackCellData.cs.meta │ │ │ ├── SongFolder.cs │ │ │ ├── SongFolder.cs.meta │ │ │ ├── SongFolderData.cs │ │ │ └── SongFolderData.cs.meta │ │ │ ├── PackListDisplay.cs │ │ │ ├── PackListDisplay.cs.meta │ │ │ ├── SelectionMenu.cs │ │ │ ├── SelectionMenu.cs.meta │ │ │ ├── SelectionSceneRepresentative.cs │ │ │ ├── SelectionSceneRepresentative.cs.meta │ │ │ ├── SortingMethodSelect.cs │ │ │ └── SortingMethodSelect.cs.meta │ ├── Utilities.meta │ └── Utilities │ │ ├── ArcCore.Utilities.asmdef │ │ ├── ArcCore.Utilities.asmdef.meta │ │ ├── Base62.meta │ │ ├── Base62 │ │ ├── BitStream.cs │ │ ├── BitStream.cs.meta │ │ ├── EncodingExtensions.cs │ │ └── EncodingExtensions.cs.meta │ │ ├── Constants.cs │ │ ├── Constants.cs.meta │ │ ├── Conversion.cs │ │ ├── Conversion.cs.meta │ │ ├── EnumerableUtils.cs │ │ ├── EnumerableUtils.cs.meta │ │ ├── Extensions.meta │ │ ├── Extensions │ │ ├── ColorExtensions.cs │ │ ├── ColorExtensions.cs.meta │ │ ├── ECSExtensions.cs │ │ ├── ECSExtensions.cs.meta │ │ ├── ECSMonoBehaviour.cs │ │ ├── ECSMonoBehaviour.cs.meta │ │ ├── TransformExtensions.cs │ │ └── TransformExtensions.cs.meta │ │ ├── IEnumeratorUtils.cs │ │ ├── IEnumeratorUtils.cs.meta │ │ ├── IndexedList.cs │ │ ├── IndexedList.cs.meta │ │ ├── SpriteUtils.cs │ │ ├── SpriteUtils.cs.meta │ │ ├── StringParser.cs │ │ ├── StringParser.cs.meta │ │ ├── StringParserNew.cs │ │ ├── StringParserNew.cs.meta │ │ ├── StringUtils.cs │ │ ├── StringUtils.cs.meta │ │ ├── TimeUtils.cs │ │ └── TimeUtils.cs.meta ├── Shaders.meta ├── Shaders │ ├── Arc.shader │ ├── Arc.shader.meta │ ├── ArcIndicator.shader │ ├── ArcIndicator.shader.meta │ ├── ArcShadow.shader │ ├── ArcShadow.shader.meta │ ├── ArcTap.shader │ ├── ArcTap.shader.meta │ ├── ArcTapShadow.shader │ ├── ArcTapShadow.shader.meta │ ├── Background.shader │ ├── Background.shader.meta │ ├── Beatline.shader │ ├── Beatline.shader.meta │ ├── Billboard.shader │ ├── Billboard.shader.meta │ ├── ColorSpace.cginc │ ├── ColorSpace.cginc.meta │ ├── ConnectionShader.shader │ ├── ConnectionShader.shader.meta │ ├── DistanceColorMath.cginc │ ├── DistanceColorMath.cginc.meta │ ├── HeightIndicator.shader │ ├── HeightIndicator.shader.meta │ ├── Hold.shader │ ├── Hold.shader.meta │ ├── HoldJudge.shader │ ├── HoldJudge.shader.meta │ ├── OnTrackArctapShadow.shader │ ├── OnTrackArctapShadow.shader.meta │ ├── OnTrackSprites.shader │ ├── OnTrackSprites.shader.meta │ ├── Tap.shader │ ├── Tap.shader.meta │ ├── Trace.shader │ ├── Trace.shader.meta │ ├── Track.shader │ └── Track.shader.meta ├── StreamingAssets.meta ├── TempAssets.meta ├── Tests.meta ├── Tests │ ├── StorageTest.meta │ ├── StorageTest │ │ ├── FileImportTests.cs │ │ ├── FileImportTests.cs.meta │ │ ├── FileStorageTest.cs │ │ ├── FileStorageTest.cs.meta │ │ ├── JsonHelper.cs │ │ ├── JsonHelper.cs.meta │ │ ├── JsonInputTests.cs │ │ └── JsonInputTests.cs.meta │ ├── Tests.asmdef │ └── Tests.asmdef.meta ├── Textures.meta ├── Textures │ ├── BG.meta │ ├── BG │ │ ├── BaseConflict.png │ │ ├── BaseConflict.png.meta │ │ ├── BaseLight.png │ │ └── BaseLight.png.meta │ ├── Notes.meta │ ├── Notes │ │ ├── Arc.meta │ │ ├── Arc │ │ │ ├── ArcBody.meta │ │ │ ├── ArcBody │ │ │ │ ├── arc_body.png │ │ │ │ ├── arc_body.png.meta │ │ │ │ ├── arc_body_highlight.png │ │ │ │ └── arc_body_highlight.png.meta │ │ │ ├── ArcCap.png │ │ │ ├── ArcCap.png.meta │ │ │ ├── ArcTapShadow.png │ │ │ ├── ArcTapShadow.png.meta │ │ │ ├── arc_height.png │ │ │ └── arc_height.png.meta │ │ ├── ArcTap.meta │ │ ├── ArcTap │ │ │ ├── arctap_conflict.png │ │ │ ├── arctap_conflict.png.meta │ │ │ ├── arctap_light.png │ │ │ └── arctap_light.png.meta │ │ ├── Hold.meta │ │ ├── Hold │ │ │ ├── hold_conflict.png │ │ │ ├── hold_conflict.png.meta │ │ │ ├── hold_conflict_highlight.png │ │ │ ├── hold_conflict_highlight.png.meta │ │ │ ├── hold_light.png │ │ │ ├── hold_light.png.meta │ │ │ ├── hold_light_highlighted.png │ │ │ ├── hold_light_highlighted.png.meta │ │ │ ├── hold_textureoverlay.png │ │ │ └── hold_textureoverlay.png.meta │ │ ├── Particle.meta │ │ ├── Particle │ │ │ ├── particle_arc.png │ │ │ ├── particle_arc.png.meta │ │ │ ├── particle_conflict.png │ │ │ ├── particle_conflict.png.meta │ │ │ ├── particle_light.png │ │ │ └── particle_light.png.meta │ │ ├── Tap.meta │ │ └── Tap │ │ │ ├── tap_conflict.png │ │ │ ├── tap_conflict.png.meta │ │ │ ├── tap_light.png │ │ │ └── tap_light.png.meta │ ├── Particle.meta │ ├── Particle │ │ ├── early.png │ │ ├── early.png.meta │ │ ├── far.png │ │ ├── far.png.meta │ │ ├── late.png │ │ ├── late.png.meta │ │ ├── lost.png │ │ ├── lost.png.meta │ │ ├── maxpure.png │ │ ├── maxpure.png.meta │ │ ├── pure.png │ │ └── pure.png.meta │ ├── Track.meta │ ├── Track │ │ ├── Base.meta │ │ ├── Base │ │ │ ├── TrackDark.png │ │ │ ├── TrackDark.png.meta │ │ │ ├── TrackWhite.png │ │ │ └── TrackWhite.png.meta │ │ ├── CriticalLine.meta │ │ ├── CriticalLine │ │ │ ├── TrackCriticalLine.png │ │ │ └── TrackCriticalLine.png.meta │ │ ├── LaneHit.png │ │ ├── LaneHit.png.meta │ │ ├── SkyInput.meta │ │ ├── SkyInput │ │ │ ├── SkyInputLine.png │ │ │ └── SkyInputLine.png.meta │ │ ├── TrackLaneDivider.png │ │ └── TrackLaneDivider.png.meta │ ├── UI.meta │ └── UI │ │ ├── PlayPause.meta │ │ ├── PlayPause │ │ ├── Pause.png │ │ ├── Pause.png.meta │ │ ├── PausePressed.png │ │ ├── PausePressed.png.meta │ │ ├── Play.png │ │ ├── Play.png.meta │ │ ├── PlayPressed.png │ │ └── PlayPressed.png.meta │ │ ├── ShutterLeft.png │ │ ├── ShutterLeft.png.meta │ │ ├── ShutterRight.png │ │ ├── ShutterRight.png.meta │ │ ├── SongInfo.meta │ │ └── SongInfo │ │ ├── DifficultyOverlay.png │ │ ├── DifficultyOverlay.png.meta │ │ ├── ProgressGlow.png │ │ ├── ProgressGlow.png.meta │ │ ├── SongInfo.png │ │ ├── SongInfo.png.meta │ │ ├── UnknownCover.png │ │ └── UnknownCover.png.meta ├── logo.png └── logo.png.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_Android.json ├── BurstAotSettings_StandaloneWindows.json ├── BurstAotSettings_iOS.json ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | 3 | # IDE0090: Use 'new(...)' 4 | dotnet_diagnostic.IDE0090.severity = silent 5 | -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "components": [ 4 | "Microsoft.VisualStudio.Workload.ManagedGame" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /Assets/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4eb75deff7608348ba3698b782b15f1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animation/ShutterCanvas.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c2989b3f015b1e40b8c43aa242a7cf7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animation/ShutterIn.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f5715357c83e984ab52636a8795efcb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animation/ShutterInInfo.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5f3a80dac4b6274c99b9caf25935c48 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animation/ShutterOut.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9673d55f1e932894590096cec4709358 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animation/ShutterOutInfo.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c8874e2a7b308d4a8b704fa38e81615 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e882554637c8e2f4aa3e7174e94de140 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Audio/SongMixer.mixer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0893ca8f89ae564a84bb1a02dc66b6b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 24100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/CoroutineUtils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7ada6f8f91a7e04fb2d43b9f9e2fcfd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/CoroutineUtils/Coroutines.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4475745877b45541995a2d7f1ba5874 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/CoroutineUtils/Timer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65f883e01cda4864db6de80bc72b6f56 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9234d732df5c03040b9a0acc6b30fbd6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Editor/GameplayReference.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "GUID:c02d5ca67a0203d4f95286945576b853" 3 | } -------------------------------------------------------------------------------- /Assets/Editor/GameplayReference.asmref.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c6b4d22e64e63947ac2dbf6a3231848 3 | AssemblyDefinitionReferenceImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Editor/PlayManagerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89b708424d594174a88ca8df16c8fb97 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bc1b48f0b907334d9f2156f792f6d19 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Fonts/D-DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/D-DIN.otf -------------------------------------------------------------------------------- /Assets/Fonts/RationalInteger.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/RationalInteger.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/SairaCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/SairaCondensed-Regular.ttf -------------------------------------------------------------------------------- /Assets/Fonts/monofonto.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Fonts/monofonto.otf -------------------------------------------------------------------------------- /Assets/HierarchyScrollRect.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9fc0897426696c48abd91253f3d8b69 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/HierarchyScrollRect/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc668d53f19409447b76d2d572363f58 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/HierarchyScrollRect/Data/CellBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1440e294c05737149ba1cf3f743924ef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/HierarchyScrollRect/Data/CellDataBase.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections.Generic; 3 | 4 | namespace Zeroth.HierarchyScroll 5 | { 6 | public abstract class CellDataBase 7 | { 8 | public GameObject prefab; 9 | public List children; 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/HierarchyScrollRect/EasyObjectPool.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f848f0308776c4b4cb172046a3ce3cd7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/HierarchyScrollRect/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e5fce3188664ad4eb59d3a66781a35b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/HierarchyScrollRect/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97db9675aec6fed4d8cdd202e80c8733 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/HierarchyScrollRect/Zeroth.HierarchyScrollRect.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69792f2f63a1c1e4c90b73bbaacee529 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Lean.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcff5704151dbcf45bbd476b1fcb820f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Documentation/Documentation.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 343b9ec9f5c2b3a43b6e4cd68f5286ca 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc019970f49b6944d8006b096b2fc9f6 3 | folderAsset: yes 4 | timeCreated: 1474715825 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Fonts/VarelaRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Common/Examples/Fonts/VarelaRound-Regular.ttf -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b79f92f2c42ecd40bf9cd81c2e99056 3 | folderAsset: yes 4 | timeCreated: 1474763564 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Black.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72c44f820e292664ead684b85643fada 3 | timeCreated: 1549033570 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69c3c648559bfd34eaae3ff327107596 3 | timeCreated: 1552650262 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Circuit.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fba2ab79a742fc4380f0e83399f9fb6 3 | timeCreated: 1552650262 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Green.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7c2868437eddf248a6deb329de23d8e 3 | timeCreated: 1552650262 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Grey.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb19d4e9e6dff424daabfbc351d2dde1 3 | timeCreated: 1549033570 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Grid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41cd2401d126859418d064ea8f4fee8c 3 | timeCreated: 1554524255 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Orange.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d15897a066fc1bd4e873db20d70da822 3 | timeCreated: 1552650262 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Purple.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c57751e748651a4c9bd8f9f48e8cf5e 3 | timeCreated: 1552650262 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Red.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 738f118aa214360489366338953cfd32 3 | timeCreated: 1549033570 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/White.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4dab12b6ad08384ba8a3ce2f7eba5f7 3 | timeCreated: 1552650262 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Materials/Yellow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c37be6ad65a89fb48889627465fcdf16 3 | timeCreated: 1552650262 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Meshes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de51ed4ba7496be43ab6e9e3fb58a4b7 3 | folderAsset: yes 4 | timeCreated: 1552865915 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5abc7d04fb72cf144ba346589c56bff3 3 | folderAsset: yes 4 | timeCreated: 1553134942 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Prefabs/Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e397534993a3daa4fb62356a2b6e1856 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Prefabs/Canvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a17273a87cb5b81409ce39e4971ac6fc 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Prefabs/Demo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 298daca7decb9f846b5ff996ee97a495 3 | timeCreated: 1497330679 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Prefabs/Grid.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d8e5dc336efc8146938948f3cd24843 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Prefabs/InfoInUI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5db91b7e72558e745ac7c4d00d8d5ae8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Prefabs/InfoInWorld.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2093cc4f6d9a10409c4aa0552892627 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Prefabs/Label.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b06e85cdb86ff204aa4c8e276668b4c4 3 | timeCreated: 1566952951 4 | licenseType: Store 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Prefabs/Skybox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b05aa534361f5ea438f30501a4533ba8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bf9e3542b344f647a654566d9af6fc6 3 | folderAsset: yes 4 | timeCreated: 1553119457 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Scripts/LeanUpgradeEventSystem.cs: -------------------------------------------------------------------------------- 1 | // Removed -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b77d517d5da251844a7289759e258705 3 | folderAsset: yes 4 | timeCreated: 1474763801 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Shaders/Alpha.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d949f33aae55df4d92d64ec31581556 3 | timeCreated: 1474810484 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Shaders/Object.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c499d6dd2ed58ca40a1377bae53ec0ee 3 | timeCreated: 1474810484 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Shaders/Skybox.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 960aca9aa5d48ad4b8b522dbbab26d8a 3 | timeCreated: 1474763809 4 | licenseType: Store 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e027981c69a3b843b2e700aca187daa 3 | folderAsset: yes 4 | timeCreated: 1553135481 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Textures/Description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Common/Examples/Textures/Description.png -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Textures/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Common/Examples/Textures/Grid.png -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Textures/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Common/Examples/Textures/Heart.png -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Textures/Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Common/Examples/Textures/Left.png -------------------------------------------------------------------------------- /Assets/Lean/Common/Examples/Textures/Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Common/Examples/Textures/Right.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Extras/LeanFormatString.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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Common/LeanCommon.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LeanCommon", 3 | "references": [ 4 | "Unity.InputSystem" 5 | ], 6 | "includePlatforms": [], 7 | "excludePlatforms": [] 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Lean/Common/LeanCommon.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82c7e6eac44d7e048b22ad98800dcfc7 3 | timeCreated: 1589775064 4 | licenseType: Store 5 | AssemblyDefinitionImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Scripts/LeanInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d7cb908f09132640b4ef9497b45e0c0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Lean/Common/Scripts/LeanInspector.cs: -------------------------------------------------------------------------------- 1 | // Removed -------------------------------------------------------------------------------- /Assets/Lean/Common/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b161f7eaaf64aa40ba67688774eb06f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa389a3f9b662a541bcf774f99b89553 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Documentation/Documentation.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 798f690f309c3ff428933f2ca60759d0 3 | timeCreated: 1589790149 4 | licenseType: Store 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95e65142560c28d49a5fb6c79b9c1cb3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/02 Position.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c2c15d4b486fa448b4ad7eed4dace52 3 | timeCreated: 1490412094 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/03 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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/04 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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/05 Rotation.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c525e5b6627cf214993e6e54947d3194 3 | timeCreated: 1523843138 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/06 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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/07 Direction 8.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39fc81c139246c14cb65039a492df9df 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/08 Finger Tap.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9288129b03a30fd4590f54bacfa4fc2b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/09 Spawn.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 935b453473865f3458f13d20bc896092 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/10 Block.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e08b589e5c339642a6ebfc31372ffab 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/11 Double.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ba993e45bd8bc540a58ab0bf1a234f5 3 | timeCreated: 1480141504 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/12 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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/13 Transform.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcc6d67bd10127441a6feb2e68bfe9e8 3 | timeCreated: 1475330508 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/14 Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4503f8040e549f489cd402bce299069 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/15 Selectable.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32b6c4e824ab1a646a0178fbf08c24c4 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/16 Tap To Select.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0270b2d69ee57d34685f0d50ed0bdb12 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/17 Transform Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c0bfed60f6dc4d458e7182fae66de94 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/18 Limit = Stop At Max.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 596383cc7b114c94c86878b06efdaa31 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/19 Limit = Deselect First.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ff9b8a646d45e64182dafde410dce07 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/20 Destroy.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12f8ad357a87bf440bade5f78a603168 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/20 Transform Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 686177cc768e900428f25390746141f8 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/21 Tap To Toggle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b3bc245475ada847ab483d51b2d5d15 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/23 Press To Select.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd2a463cb86fbad4b92c709ebaf2b843 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/24 Transform Relative.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac9caf83cfcbe894eab16c237b2aeb74 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/25 Isolate.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7623668b6b9ad5b4aa2ae951866037e9 3 | timeCreated: 1475336619 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Finger Trail.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8717ad9118782244ba638a66799dba09 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4069c42ec9ec3e64f877a051d045dc7a 3 | folderAsset: yes 4 | timeCreated: 1474763564 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/ArrowCurve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/ArrowCurve.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/ArrowStraight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/ArrowStraight.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/ArrowTwist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/ArrowTwist.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/Ball.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 432080eddf3bc2449a2c54573812900e 3 | timeCreated: 1475156231 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/BigLogo+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/BigLogo+.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/Button.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/Canvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bebd5476321cdf84185c278059e299e4 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/Circle.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/Demo.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2a63f1f28575a549abdfbc4eb9b28d2 3 | timeCreated: 1497330679 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/FingerVisualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/FingerVisualization.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/GlowingDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/GlowingDot.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/GlowingLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/GlowingLine.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/GlowingTrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/GlowingTrail.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/Logo+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/Logo+.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/Plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/Plus.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Lean/Touch/Examples/Media/Square.png -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Media/Trail.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a249bfc9d8fe9874890b7170317078ab 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea05c88d78fb41a48bbecbb68faec836 3 | folderAsset: yes 4 | timeCreated: 1474724104 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Scripts/LeanInfoText.cs: -------------------------------------------------------------------------------- 1 | // Removed -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/Scripts/LeanTouchEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e801af14bb6ff642a16a53be53348be 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/TouchEvents.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ac725435c4f16446b182ce8844aac54 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Examples/TwistRotateCustomAxis.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e746ea22b442744c8a81882c3144327 3 | timeCreated: 1533093565 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Extras/LeanScreenQuery.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bebe214b343962245875722341016be2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Extras/LeanSelect.cs: -------------------------------------------------------------------------------- 1 | // Removed -------------------------------------------------------------------------------- /Assets/Lean/Touch/Extras/LeanSelect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1441ab36fe0a6dc4299525cd235c0a1a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Extras/LeanSelectBase.cs: -------------------------------------------------------------------------------- 1 | // Removed -------------------------------------------------------------------------------- /Assets/Lean/Touch/Extras/LeanSelectable.cs: -------------------------------------------------------------------------------- 1 | // Removed -------------------------------------------------------------------------------- /Assets/Lean/Touch/Extras/LeanSelectable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da60990a7a92dd748a8251609d58760e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/GUIDE.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88c231c083fde9e4bbc1a7fbb9bb0009 3 | timeCreated: 1564648639 4 | licenseType: Store 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/LeanTouch.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 688cfbbe2a536604ab4aa06ececa1da3 3 | timeCreated: 1589774955 4 | licenseType: Store 5 | AssemblyDefinitionImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c81e63ffd398d1c40b674a6ac07bbbd8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Lean/Touch/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f91f425854e5c9a4b99f0b1501bef8b8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/LeanTween.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff8cd83cca9c37444b3be21ecce21c76 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6737b2aaab0f546e39693df5f551dfc8 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb26df1b849af495bbce0f91bac5a3f7 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/assets/css.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f4f05e2c3c7b4c5eb028eb9c0c93886 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/assets/css/main.css.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2e6f2786cebb4eb8945b46000f02d18 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Documentation/assets/favicon.ico -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/assets/favicon.ico.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 751c9ec47ccc246ae9845f7503545585 3 | timeCreated: 1479470953 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/assets/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Redirector 5 | 6 | 7 | 8 | Click here to redirect 9 | 10 | 11 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/assets/index.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 395ceea41819e494b8fe14c2e7b05a00 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4bb1e3d3bec8431a82cb033f38b4ceb 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LTBezierPath.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7b721e4275c14b53a73241b9d0b256f 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LTDescr.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 728d9c45462a9409f8b8be1447f59e94 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LTEvent.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b8203605b4454b009a6fc1e269a8d50 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LTRect.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7ee5979c5f5f428d9c8735d84e09421 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LTSeq.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2208e3213ef84ee28cb1745e7eb9b26 3 | timeCreated: 1488755637 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LTSpline.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1adcbb4b77b884a4fb75bde98799d037 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LeanAudio.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddb683830b7524ebb8b302202c645c65 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LeanAudioOptions.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff952359765254c20b97874f5949c0d7 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LeanSmooth.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e988e3f0c183c44c29adbd5e82d6fd87 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LeanTween.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beea01b16f84c4f18a168afa5800b612 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/LeanTweenType.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85c97d3850f59444cb0751b3bc40b06d 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Redirector 5 | 6 | 7 | 8 | Click here to redirect 9 | 10 | 11 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/classes/index.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a23cc63a765c44c9c82fb33b1ecb455f 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/elements.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 932507f3c60bb4fcea847cba753363b8 3 | folderAsset: yes 4 | timeCreated: 1479470944 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/elements/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Redirector 5 | 6 | 7 | 8 | Click here to redirect 9 | 10 | 11 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/elements/index.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6a53cd107c1f4d5498ea9c736e3a650 3 | timeCreated: 1479471015 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Documentation/index.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78eeb9616e21d4178b574871040d7fa0 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19bfca9f9a913415ea58580f6667f922 3 | folderAsset: yes 4 | timeCreated: 1454272449 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LeanTween/Editor/LeanTweenDocumentationEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52fea17a2d56d46afa0d6cb52e2a4335 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 486852d399aed440aa95693d95263c16 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d71b219a4562400b9fabb60eb51396d 3 | folderAsset: yes 4 | timeCreated: 1460027769 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived/2dUnlitWithFade.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bce9282b1bfd475284fd2e72b37403c 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived/GrumpyCat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Archived/GrumpyCat.jpeg -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived/OldGUIExamplesCS.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 876bfcaf53a664f29a628faa9fa332fc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived/OldGUIExamplesCS.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec27881ee9cf54018ac9bd5706c2fdab 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived/SoBeautiful.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Archived/SoBeautiful.gif -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived/TestingPunch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8abaf57a262a44a994d8e7bcbc035e0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived/TestingPunch.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cd53863374404f7b8e101f758cc46e7 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived/TestingRigidbodyCS.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1172f23ac87274d9f941c26abca49be5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Archived/TestingRigidbodyCS.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85c5a0f0e397a4579b42c67c6dce87ef 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a8596587ab4843d2ad8706c4d9c173b 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/AlphBumps.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12c720f1dd5674502bc1185ff99b70f9 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/AlphaReadyMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61731bf38a6fa4d66b536bc03fc8eb3f 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/DirectionalArrowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79809b4fc57ad41b982c1dd5ceb812b2 3 | timeCreated: 1535222686 4 | licenseType: Store 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/FrictionLess.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1560575207a7b4f27bcd4ab2aeb2e3a1 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Futoro_PersonSprites.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Material/Futoro_PersonSprites.jpg -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Futoro_PlanetMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b98784ec692b4e00a86fa1044ad8998 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Futoro_Ring.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Material/Futoro_Ring.psd -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Futoro_SineWave.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2eed51ebc4ee4089986bb1639255f0e 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Futuro_Bar.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Material/Futuro_Bar.psd -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Futuro_ButtonBack.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Material/Futuro_ButtonBack.psd -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Futuro_ButtonBackDark.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Material/Futuro_ButtonBackDark.psd -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Futuro_SineWave.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Material/Futuro_SineWave.psd -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Futuro_WindowBack.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Material/Futuro_WindowBack.psd -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Graph.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8a5e544bfa0d416892e87b12e93911b 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/GridLines.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a06e258e3bf640e885048b32fdf51b7 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Ground.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6784005974824c55b2b59b5bda24153 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/LineGlowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 658f4eba50cce41098da6ed347d8d270 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/Mock2d.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab11516f0780f4d438844432fc7e8070 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/ParticleGlow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8de91330a48c540279c3bc6e3aff2b4d 3 | timeCreated: 1465674294 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/PointMark.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e77db49bc9fb6499290655245ce9bc95 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/SpaceLineGlowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d170a8aa584240f4b18ce6a5e58ef2e 3 | timeCreated: 1535294217 4 | licenseType: Store 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/TrackCar.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e55a11a05aa141af9f3be5e921cc003 3 | timeCreated: 1460231732 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/TrackFollowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9efbdb862990242178d5b47a40b48e80 3 | timeCreated: 1460232167 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/TrackGlowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f99cee49392444d14b5e8c16cd41348d 3 | timeCreated: 1460232340 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/TrackLines.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54538213a935248b8ac1ce7b42140cad 3 | timeCreated: 1460233706 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/TrailFollowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff16fb4a90fe84bec9c8f29698aa0eed 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Material/WalkingStick.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3285d6d0bc506494b8fecba4d7aada26 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59b55a9208dd7467b964ad4ead1ef272 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/2dText.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/2dText.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/AdvancedExamplesText.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/AdvancedExamplesText.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/BasicExamplesText.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/BasicExamplesText.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/CameraShakeText.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/CameraShakeText.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/CurvePathsText.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/CurvePathsText.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/DirectionalArrow.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/DirectionalArrow.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/EndlessDrivingText.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/EndlessDrivingText.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/ExampleCar.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/ExampleCar.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/ExampleFirTree.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/ExampleFirTree.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Grid.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/Grid.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/LeanTween-Icon.blend.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/LeanTween-Icon.blend.zip -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/LeanTween-Icon.blend.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fb081ef63f8c4c92a76f0b593f7abb0 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/LeanTween.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6cb897ad03b148b0b891659e4337604 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/LeanTweenHD-Icon.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/LeanTweenHD-Icon.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f652ae6214c614941a0954f4ad56666e 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/LMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02a8bb137b3dc465e834a60da68b0faa 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/LineMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf41397dc908943a38769b3d61f3877a 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/Material.001.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee920b9374bc046b4a8b04eec2888d20 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af31d53076fd745faa5f05dae96c15c3 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/Material_001.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9041dec3e4f243ad92eacfec2f65378 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 221234e77532a4e3b96e5cce2b41b771 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/SimpleAvatarAlphaBlue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39a7c2c726d36466a82bb11886f760e1 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/SimpleAvatarBlue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e86c6ee57cd4c400ea5852025bc7b7c3 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/SimpleAvatarHat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 894fe1d86fb5943f6a486e218bba2072 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/SimpleAvatarMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5732f0a6e68964f3eb5c3ebb94242055 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/SimpleAvatarSpace.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9682c3da6d5384d098160b19ba3e02c5 3 | timeCreated: 1535222988 4 | licenseType: Store 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/SubTitleText.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33b82a22301d648c5afa1a682a259e5d 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/Materials/eanTween.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f619dcfcfb4564405b5fe5ea207c9199 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/SimpleAvatar.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/SimpleAvatar.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Models/SimpleAvatarPieces.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Models/SimpleAvatarPieces.fbx -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e27dc266d79d248949ea519da436426c 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/Avatar2dParticles.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d50011a464d5f44ccbfefb117020e5cb 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/AvatarAlpha.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f033a1cc164a48d99c0ccbd9425d153 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/AvatarDiffuse 1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 672fd62036f744e79b75297e492c996e 3 | timeCreated: 1539547676 4 | licenseType: Store 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/AvatarDiffuse.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 992f36b41308f41f1bc39908c2c27dda 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/AvatarEventsCS.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c9c5d81a80e84e90af37f2113c12b2d 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/AvatarSpace.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e02878730c48147bb9fc414aabee207b 3 | timeCreated: 1535222974 4 | licenseType: Store 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/AvatarSparkles.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b796b489cc4c447c91c00d4136b0e54 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/BasicExamplesText.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b4ce6f9ebfb948a58b5b05397daaaea 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/DustCloud.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a6e1cb160a414c6cbe7d27b34d381a1 3 | timeCreated: 1488749437 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/EndlessPiece.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Prefabs/EndlessPiece.prefab -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/EndlessPiece.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c73e0cec0a374576a4b47fbb49921d5 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/GridLine.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d9158a373e64481db63423af851bdc9 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Prefabs/Grids.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a9d822b319924ae7a120c7f2ba0b067 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91c0707acdbf242e19dc1de4ada750e5 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/Following.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae5e9d334639a484786a9badbf5b387a 3 | timeCreated: 1535208261 4 | licenseType: Store 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/GeneralAdvancedTechniques.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed31b9589883b4d19a6bc0f50d57edec 3 | timeCreated: 1461066353 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/GeneralBasic.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 733435822951d4505bbf44759df1613d 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/GeneralBasics2d.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db7afcf97d5f646b9986f7e84ca1ac68 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/GeneralCameraShake.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a99971c1311c6405d8d2897f3f42ad32 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/GeneralEasingTypes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 721616f4ed65645df9e1919c91909eb8 3 | timeCreated: 1471870210 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/GeneralEvents.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e603302e334b4bd0bef351e0f1e050c 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/GeneralSequencer.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28ab900ace00b47e39ad8fef65f3170a 3 | timeCreated: 1488722111 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/GeneralSimpleUi.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7534096fc06e2452687df015b87d7cfa 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/GeneralUISpace.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 698925ae1198741f09200bbe0cbbff86 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/LogoCinematic.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68ea271dda32c4c209e4419b091b2288 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/PathBezier.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 173c35c3d8996463384732672075da90 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/PathBezier2d.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 363f43ea320c54cd7ade42f54f59c232 3 | timeCreated: 1493585933 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/PathSpline2d.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5daea63c1cc14d709cb8f5dc7d19173 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/PathSplineEndless.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a7ce2e628c14472a9fb2af42917d270 3 | timeCreated: 1460314600 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/PathSplinePerformance.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 924b0d7269de44f8398015b04e7ba081 3 | timeCreated: 1460893840 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/PathSplineTrack.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e3bee443b13540cc845f5476188d8b1 3 | timeCreated: 1460208221 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/PathSplines.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7851b12d34d54ef0bc16d6d34318d75 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/TestingUnitTests.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22e1e363584e94ef6a9661ede1f4e358 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/TestingZLegacy.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d3c1732ee5ca4e86bf2497c4404c656 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scenes/TestingZLegacyExt.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bd7a031b280f4530b42f2591cf98025 3 | timeCreated: 1533844429 4 | licenseType: Store 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd3a10f67e2b7486caaf1ac6b519b3ae 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/Archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Scripts/Archive.zip -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/Archive.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 950dff8c2dd5346409806b627ff3691f 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/GeneralBasic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2605544ab2e14c93a780ca20c108cfe 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/GeneralBasics2d.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b39dd70d168b4cbea9a7b8561d9accc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/GeneralCameraShake.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a650682fa3d54a57a2521dbf9f6eac2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/GeneralEventsListeners.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd679d4fbbd8d475ba7187561370c3aa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/GeneralSimpleUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19c352f230e8b46f08abbbd7cc11edb8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/GeneralUISpace.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc2ddccee016148b189d987f564ee08e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/LogoCinematic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 674f3c10d8880408e875a9e6c3ee83bb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/PathBezier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac2038ba3961049ed889ae71039982cd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/PathSpline.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef4235237d8d8413c9d5807cf0a1f77b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/PathSpline2d.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15c036b11e3ff486ea685da06fa305f6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/PathSplines.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de0396ae3eef541c190f0e6962090454 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/TestingUnitTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fef58bd01146344429d022b95c6af872 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Scripts/TestingZLegacy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed8575995d061498aa84acbaf0b377de 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e39f8f3dc0404757be9a05da7cc9802 3 | -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Textures/DefaultParticleReplacement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Textures/DefaultParticleReplacement.jpg -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Textures/Dude2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Textures/Dude2d.png -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Textures/DustCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Textures/DustCloud.png -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Textures/HorizontalGradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Textures/HorizontalGradient.jpg -------------------------------------------------------------------------------- /Assets/LeanTween/Examples/Textures/PowerUpStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Examples/Textures/PowerUpStar.png -------------------------------------------------------------------------------- /Assets/LeanTween/Framework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3f23ec8eb7c24f0bbb1d41bf96c154f 3 | folderAsset: yes 4 | timeCreated: 1469292088 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/LeanTween/Framework/LeanSmooth.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ca0f285af8dd4270bd759978223faad 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/LeanTween/Framework/LeanTween.dll.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LeanTween/Framework/LeanTween.dll.zip -------------------------------------------------------------------------------- /Assets/LeanTween/Framework/LeanTween.dll.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffeadda6aaa064923a3f7e28ff26afb1 3 | timeCreated: 1477948563 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/LeanTween.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LeanTween" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/LeanTween/LeanTween.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8fa562e860a0fc41a1dd6424ddd6fd4 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/LeanTween/License.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e389e9bcd4f944c338327697bd209cad 3 | timeCreated: 1469016738 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LeanTween/ReadMe.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1e0da947b69648fdb1884d602088d92 3 | -------------------------------------------------------------------------------- /Assets/LiteDB.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3181ec17b6a9744eba74fc2551f644e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/LiteDB/LiteDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/LiteDB/LiteDB.dll -------------------------------------------------------------------------------- /Assets/LiteDB/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7804c044039d5f846a51d45576c17a36 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a10b4f185a3385e49b8cfdb579b38d5e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa229bf9b6ad34b4993d28cc449fe128 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Base/BackgroundMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32ceee0f8c55db245bf729f964ab40ea 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Base/LaneHighlightMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a01f0efa4f3f4bb43a5c67be07068411 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Base/OnTrackSpriteMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4abd9e26aa9fa6d448aa96ac05147348 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Base/TrackMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86c02878cdf1fb6429800c379e91cffa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8aab7c68e9369204987ff5c1850b085d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/ArcMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a9129239f6b3054db310a0864ba9eb2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/ArcShadowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c02a50a169abdb740bf09c45439e8902 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/ArcTapMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b35862633b8a63e4496aa5538d42e711 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/ArctapShadowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96f098b3a13502c4ebca34feffe126bb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/BeatlineMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffde2b9c268c0614aae33b9db85e7c56 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/ConnectionLine.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38253c2000e212f469e293f00d194d23 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/HeightIndicatorMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7df61da0627a5714080a4c06cd73892e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/HoldMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d1502073230e8240b33235e73e7f2c6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/TapMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7661c7ca1ac4a740a4f06a7cc2af7bb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/TraceMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34c3ab2db1945b848a3df9cf1ea5c654 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Notes/TraceShadowMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d2d9654992ee9c49bf0298ecc30e19a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b364594a233b5a541b8fbdc00e55d83a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/ArcIndicator.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb295d16a9798eb438bb66c2d5d3a3ac 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/Billboarded.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a27adbdc0132214ab669a1720e70911 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/EarlyJudge.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dbf25aac95a06b44aac98241838f18b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/FarJudge.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7655ef33b463fe4e966141c3dc67a26 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/HoldJudge.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac9182970d3f88b4bb31da73e330c234 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/LateJudge.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12a41c74ef2d7d148a91d410e166101d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/LostJudge.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e721c71e3c78b104087159df33602562 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/MaxPureJudge.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f3b793efef2378498300204427018df 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/PureJudge.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dbd22eb58858374bb54bcc8cb4c053b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Particle/TapJudge.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d506d698aa7892d42b4392a90622bf56 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Meshes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd1bd9a9a88ed234995bcb95775dbede 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Meshes/Arc.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/Arc.fbx -------------------------------------------------------------------------------- /Assets/Meshes/ArcShadow.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/ArcShadow.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Archead.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/Archead.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Arctap.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/Arctap.fbx -------------------------------------------------------------------------------- /Assets/Meshes/ArctapShadow.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/ArctapShadow.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Beatline.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/Beatline.fbx -------------------------------------------------------------------------------- /Assets/Meshes/ConnectionLine.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/ConnectionLine.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Hold.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/Hold.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Tap.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/Tap.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Trace.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/Trace.fbx -------------------------------------------------------------------------------- /Assets/Meshes/TraceShadow.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/TraceShadow.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Tracehead.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Meshes/Tracehead.fbx -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 621ae578f8f4c0043bfc7c3a0a843aab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61296fc77eef3e543a2c12e8841761e6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/ArcHeadPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b24d1c1972c41248a79cdcf8945cede 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/ArcJudgePrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2003e5b2a68091a4389ca0afbfd139d6 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/ArcPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b34afa0455f74444afc52de081d35b2 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/ArcShadowPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 214e882901cb10a409006d01ba409ccc 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/ArcTapPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1916ae4801f8520438e76fb06614e538 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/ArctapShadowPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8dd83811280464479564fb9b71d73d9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/BeatlinePrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1adf085d2c359624aab5977033528e8d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/ConnectionLine.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2d95facb0a89ed46b986440d2d9628e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/FloatLine.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 863d5b0fae81e4a4ab8b37387c0f0c1b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/HeightIndicator.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 112bbb63291d4b24da269b7d9c9179ea 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/HoldPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1e2e728e75223c488b75baf1d36daa0 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/TapPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4e0fa23086e0e74e98c16b8d525d520 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/TraceHeadPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd1943fb6e80d1b4e8c848eb655b9d3f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/TracePrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c43598f4d61754a4db9a149e30d6c50d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Notes/TraceShadowPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32fb81c32838fc345b0d528f30592ec4 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Particles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a59c810a210d36e4e907f0b894d3aff3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/ArcApproachIndicatorPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a57bd2af70dcde44b3c75defd27ea0e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/ArcParticle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41b1b4021cb204944a67bfe468124817 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/TapJudgeParticle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 262362bfbb58c214da105f4aa68f70cd 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/TextJudgeParticle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e315c788f3d4ac144a2bdce65a0ba334 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/TraceApproachIndicatorPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebec4eb2639504f4ab68a4691d666f10 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Scenecontrol.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59588ca27e84b984d896c0fe73cd6adf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs/Scenecontrol/SpriteScenecontrolObjectBase.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ced645ab65eea64191a6c95e44806bb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Scenecontrol/TextScenecontrolObjectBase.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2ee584a94ab6b44c98d1f1805bc1634 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 005b5851f1991ef429d567b6d9bcdc76 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/SelectionMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e97db897e64d2894c97c0a295429a88a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/SelectionMenu/DifficultySmallItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d02cd965034a2034c85ebeaca70c7550 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/SelectionMenu/FolderCell.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fbf4d5f15bf6d94a984d1a2cdf46efe 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/SelectionMenu/LevelCell.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc55ba9dbf93e944d8e295fed1687a98 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/SelectionMenu/LevelCellDifficultyItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fbeedeab9089bb41855ffcc0ed2fc91 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/SelectionMenu/PackCell.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87c00a0af05c5534f861a94b83af6552 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/Shutter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea57947241b86b246aeee771438d156b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 924df34180047d8438a2cd9b663ecda2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SceneDependencyCache.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4b31158ba121fa4582c3bb0acee9678 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/SceneDependencyCache/be6b2c9b9f886cb5ced80e992e4505a4.sceneWithBuildSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/SceneDependencyCache/be6b2c9b9f886cb5ced80e992e4505a4.sceneWithBuildSettings -------------------------------------------------------------------------------- /Assets/SceneDependencyCache/be6b2c9b9f886cb5ced80e992e4505a4.sceneWithBuildSettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be6b2c9b9f886cb5ced80e992e4505a4 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/SceneDependencyCache/e93091d480612504fc380b3000c61880.sceneWithBuildSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/SceneDependencyCache/e93091d480612504fc380b3000c61880.sceneWithBuildSettings -------------------------------------------------------------------------------- /Assets/SceneDependencyCache/e93091d480612504fc380b3000c61880.sceneWithBuildSettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e93091d480612504fc380b3000c61880 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c72753e05e187f488a47a4f0536d19c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/BootScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adfa26e25f354b34b9f8afb50f90f79c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/GreetingScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bf72d69fde4d234daa97444e79a18f5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/PlayScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3962a210f0393ca4897d4dc34d8759bf 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/ResultScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b4e3cfa46e41c8409b4008a271612e7 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/SelectionScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85d0d2a2a78848f41bb7f328bfe9326e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e145f1894f98d5548bc7e2b14e429aea 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/ArcCore.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 362193e02f3e6f6419453da8be866f20 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 121d7aec81acda64f836f65c6df8b0a6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/ArcCore.Gameplay.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c02d5ca67a0203d4f95286945576b853 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57d5b8229d86bcb4ebc80c9139cc97a1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components/Instance.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52167417024f08c4092090a4054d7582 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components/Instance/ChartTime.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Components 4 | { 5 | [GenerateAuthoringComponent] 6 | public struct ChartTime : IComponentData 7 | { 8 | public int value; 9 | public ChartTime(int v) => value = v; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components/Tags.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1982ab94de29f034eaae9d4d36f903e2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components/Tags/Disappeared.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Components.Tags 4 | { 5 | public struct Disappeared : IComponentData 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components/Tags/HoldLocked.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Components.Tags 4 | { 5 | [GenerateAuthoringComponent] 6 | public struct HoldLocked : IComponentData 7 | {} 8 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components/Tags/IsTraceBodies.cs: -------------------------------------------------------------------------------- 1 | 2 | using Unity.Entities; 3 | 4 | namespace ArcCore.Gameplay.Components.Tags 5 | { 6 | [GenerateAuthoringComponent] 7 | public struct IsTraceBodies : IComponentData 8 | {} 9 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components/Tags/PastJudgeRange.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Components.Tags 4 | { 5 | public struct PastJudgeRange : IComponentData 6 | { } 7 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components/Tags/WithinJudgeRange.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Components.Tags 4 | { 5 | public struct WithinJudgeRange : IComponentData 6 | { } 7 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Components/Tags/WithinRenderRange.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Components.Tags 4 | { 5 | public struct WithinRenderRange : IComponentData 6 | { } 7 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Conversion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49ee05cf55a656f44b09b23ca9430ab2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c568e509b480b7468875a06b63902ee 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/ArcColorFSM.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f41111e453c3afa4896a6ecf3bac18da 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/ArcPointData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec62f637df79dd643a59de95cd974dd1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/GroupState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d483c31927121614ea8b4140068a6bfe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/JudgeTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14d21263293b7d54bac6a4c81fdbd34d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/Struct4X.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d4060ab9c8e0bc40af5072899d7d0a1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/TouchPoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 789795ea11b8da84bbfce739a07bdf7b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/EntityCreation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4dcb18b805e56914fbb160fb02ca5d1e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/JudgeManage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dca0c2315fa681c4f8cc73b3fdb29c4c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/JudgeType.cs: -------------------------------------------------------------------------------- 1 | namespace ArcCore.Gameplay 2 | { 3 | public enum JudgeType 4 | { 5 | MaxPure, 6 | LatePure, 7 | EarlyPure, 8 | LateFar, 9 | EarlyFar, 10 | Lost 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/JudgeType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d6491651d747264abecf9a0020d1fce 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/MainHandlers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27b30a1acc20d4c4a8d3d826737f94d3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Mathematics.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00dad15c3cb8ff54db8f47b6524a12a4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Objects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ef397b085f81304d8186fa062fadec6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Objects/Particle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b0fc584c4141ba40b46e59b40ae05fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Parsing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85b55b9d39fad764a940e6178ae5fcf1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Parsing/ArcParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad6f2352d83be674e9a2c50afeceb112 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Parsing/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00b829037a069af46add3a4bc0a15689 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Parsing/Data/ArcEasing.cs: -------------------------------------------------------------------------------- 1 | namespace ArcCore.Gameplay.Parsing.Data 2 | { 3 | public enum ArcEasing 4 | { 5 | b, 6 | s, 7 | si, 8 | so, 9 | sisi, 10 | soso, 11 | siso, 12 | sosi 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Parsing/Data/CameraEasing.cs: -------------------------------------------------------------------------------- 1 | namespace ArcCore.Gameplay.Parsing.Data 2 | { 3 | public enum CameraEasing 4 | { 5 | l, 6 | qi, 7 | qo, 8 | s 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Parsing/Data/TimingEvent.cs: -------------------------------------------------------------------------------- 1 | namespace ArcCore.Gameplay.Parsing.Data 2 | { 3 | public struct TimingEvent 4 | { 5 | public int timing; 6 | public float baseFloorPosition; 7 | public float bpm; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Parsing/Data/TimingEventEX.cs: -------------------------------------------------------------------------------- 1 | using ArcCore.Gameplay.Data; 2 | 3 | namespace ArcCore.Gameplay.Parsing.Data 4 | { 5 | public struct TimingEventEX 6 | { 7 | public int timing; 8 | public Floorpos baseFloorPosition; 9 | public float bpm; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Parsing/Data/TimingGroupFlag.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ArcCore.Gameplay.Parsing.Data 4 | { 5 | [Flags] 6 | public enum TimingGroupFlag 7 | { 8 | None = 0, 9 | NoInput = 0b0001, 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Parsing/Easing.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37d86de184b831c49875faf891180411 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/PlayManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 360e29db28a5dd245b5792ec68341e7d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 10600 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Systems.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99100ca555ceff640980032455d26f49 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Systems/Groups.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03a1043831ac64c469abccad789cb659 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Systems/Initialization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2074ebdad2671384f8fea35795245459 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Systems/Initialization/InitFinalizeSystem.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Systems 4 | { 5 | [UpdateInGroup(typeof(CustomInitializationSystemGroup)), UpdateAfter(typeof(ScopingSystem))] 6 | public class InitFinalizeSystem : FinalizeSystemBase 7 | {} 8 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Systems/Initialization/InitSetupSystem.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Systems 4 | { 5 | [UpdateInGroup(typeof(CustomInitializationSystemGroup), OrderFirst = true)] 6 | public class InitSetupSystem : SetupSystemBase 7 | {} 8 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Systems/Judgement.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5661b76ced5aaf546ae0433235299105 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Systems/Transform.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf266e423b3adf8408bb5dda3f0fa28e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Systems/Transform/TransformFinalizeSystem.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Systems 4 | { 5 | [UpdateInGroup(typeof(CustomTransformSystemGroup)), UpdateAfter(typeof(ScaleAlongTrackSystem))] 6 | public class TransformFinalizeSystem : FinalizeSystemBase 7 | {} 8 | } -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Systems/Transform/TransformSetupSystem.cs: -------------------------------------------------------------------------------- 1 | using Unity.Entities; 2 | 3 | namespace ArcCore.Gameplay.Systems 4 | { 5 | [UpdateInGroup(typeof(CustomTransformSystemGroup), OrderFirst = true)] 6 | public class TransformSetupSystem : SetupSystemBase 7 | {} 8 | } -------------------------------------------------------------------------------- /Assets/Scripts/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5bcf3c2b5c7533439492f0c62cb3d60 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Scenes/ArcCore.Scenes.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a6c4402b0d58fb4394343b49a704dd3 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts/Scenes/PlayResult.cs: -------------------------------------------------------------------------------- 1 | using ArcCore.Storage.Data; 2 | 3 | namespace ArcCore.Scenes 4 | { 5 | public struct PlayResult 6 | { 7 | public Chart Chart { get; set; } 8 | public int Score { get; set; } 9 | //TODO: More properties 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/Scripts/Scenes/PlayResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbb8ba9cbcc8c1a4ea0e9bfd89dd3f94 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Scenes/SceneNames.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90bd57cfb9c86704ba392b60af5a78ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Scenes/SceneRepresentative.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6d3f2691880cf84e90ce8b3871f099d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/StartupBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d301d52a40174b489d7821ff95d696d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: -17100 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3d0bcbfc70dce947ad069aecf74e3fd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/ArcCore.Storage.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 191478108d8919440846a43a6b42ac49 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a41bd38b20c34aa40966478906b6ae02 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/ArccoreInfoType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ArcCore.Storage.Data 4 | { 5 | [Flags] 6 | public enum ArccoreInfoType : byte 7 | { 8 | Level = 1, 9 | Pack = 2, 10 | Partner = 4, 11 | 12 | All = Level | Pack | Partner 13 | } 14 | } -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/Chart.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20140855db9ddae4eb8c1764d6a56fdf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/ChartSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d1b59f77367caa41b90180ab02865a3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/Difficulty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb08557d6c0892c46b7c2909aaa7f975 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/FileReference.cs: -------------------------------------------------------------------------------- 1 | using LiteDB; 2 | 3 | namespace ArcCore.Storage.Data 4 | { 5 | public class FileReference 6 | { 7 | [BsonId] public string VirtualPath { get; set; } 8 | public string RealPath { get; set; } 9 | public string CorrectHashPath { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/FileReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afa42376f9710804aaeee11426519bd8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/IArccoreInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad855275dd0ff494bb08f201e611457d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/Level.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 084b1d46a8dce134c9e267cb539390eb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/Pack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33e9a4b4d78f2e5429633acd962f38c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/ScoreCategory.cs: -------------------------------------------------------------------------------- 1 | namespace ArcCore.Storage.Data 2 | { 3 | public enum ScoreCategory 4 | { 5 | None, 6 | Fail, 7 | EasyClear, 8 | NormalClear, 9 | HardClear, 10 | FullRecall, 11 | PureMemory, 12 | Max 13 | } 14 | } -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/ScoreCategory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e6a39d411d33e644bc83bb6053399de 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/Style.cs: -------------------------------------------------------------------------------- 1 | namespace ArcCore.Storage.Data 2 | { 3 | public enum Style 4 | { 5 | Light, 6 | Conflict 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/Style.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d89c5f355de49f4897949100960e048 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Database.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14ea560caa1a73e4d9affbe6e300f09c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/FileManagement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d963a4f44d478f4cbf7feca9ab5e0fb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/FileStatics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2724139793b459418e8c7ae90a8cf0b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/FileStorage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 922cd0bb604e46b48b216c87555aa13f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/JsonUserInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c783a5c580483547a1c8ff39eb698ff 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/JsonUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75e7060361d76e648b7906cff24da38b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Preferences.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bb18f5a9cf11c34e94fdc381b317415 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Query.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed6041318a0252645b193295b0d0a86b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Query/LevelQuery.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f69c78fe1b0be21458410fd437749240 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Query/PackQuery.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 869866915a4731846a20af7f81cb97fa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Settings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 330b9e3763fb9284bb473061337723f7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41feb207e63ca444c8f78c170cab10f4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/ArcCore.UI.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 536aef6c3f5596845b4973354bcef9f6 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Result.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33d54a681ab3a834aa90ed1b54a5c4b5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Result/ResultDisplay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9662279e5df6a4944873fe7cc145c576 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/Result/ResultSceneRepresentative.cs: -------------------------------------------------------------------------------- 1 | using ArcCore.Scenes; 2 | 3 | namespace ArcCore.UI 4 | { 5 | public class ResultSceneRepresentative : SceneRepresentative 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Scripts/UI/SongSelection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a4b42957ce3e8643ba8bad678041e4d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/SongSelection/DisplayMethod.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04756b6466d9bc64ca879eb5c3840791 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/SongSelection/DisplayMethod/GroupMethod.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4759c6cf53604c46a2539e29e55b187 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/SongSelection/DisplayMethod/SortMethod.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c10a39571cb89b548b3d5d1067d56c93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/SongSelection/MenuItems.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03b2cf6571d2ecd43875be18e1135e5e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/SongSelection/MenuItems/LevelCellData.cs: -------------------------------------------------------------------------------- 1 | 2 | using Zeroth.HierarchyScroll; 3 | using ArcCore.Storage.Data; 4 | 5 | namespace ArcCore.UI.SongSelection 6 | { 7 | public class LevelCellData : CellDataBase 8 | { 9 | public Chart chart; 10 | public Level level; 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/Scripts/UI/SongSelection/MenuItems/SongFolderData.cs: -------------------------------------------------------------------------------- 1 | 2 | using Zeroth.HierarchyScroll; 3 | 4 | namespace ArcCore.UI.SongSelection 5 | { 6 | public class SongFolderData : CellDataBase 7 | { 8 | public string title; 9 | } 10 | } -------------------------------------------------------------------------------- /Assets/Scripts/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c06086814b69d2a41a067bace1581871 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/ArcCore.Utilities.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dc54619463f16448b1417f0ca89e83a 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/Base62.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7588bd42e9c1e3a4b8b5105d4f484ec3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/Base62/BitStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d8567a53a34ca344965bcd9de80df39 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/Constants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 753da7833ea06864db1642333a1f26b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/Conversion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a07790a39cbdbd4db5525fb9d8bb9de 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/EnumerableUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3d8641d2dc551d40be4b9d88dc39fa4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b747dcc1819c0148bf06a03a1995bc6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/IEnumeratorUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7713454262193444b0899c64ee59d09 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/IndexedList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fae090ed26eeda5489460cd0f523b06c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/SpriteUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7111d255d9e75254d96d0e8d23e1fb30 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/StringParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7020b639de87ffe4e8caa82bc9f984af 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/StringParserNew.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2acb14690d32a2c458cfa63dc56fa3f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/StringUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efa67c0bcda9c6142b67a65a34f915f2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/TimeUtils.cs: -------------------------------------------------------------------------------- 1 | namespace ArcCore.Utilities 2 | { 3 | public static class TimeUtils 4 | { 5 | public static float TicksToSec(long ticks) => ticks / 10_000_000f; 6 | public static long SecToTicks(float sec) => (long)(sec * 10_000_000); 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Scripts/Utilities/TimeUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ec468da1340cd48a0e9aa612e59e72 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c4a8168b23d4a34e9c954da1f8594e6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Shaders/Arc.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd501c7b0e19d7f4bb64ff6d1295ab52 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/ArcIndicator.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0282905e01b84c642ac05a74364343f6 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/ArcShadow.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1850b4b54e3855a419e91448d47e556d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/ArcTap.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a3795edf89691d49985ad852476095b 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/ArcTapShadow.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e6ff9562b1240b43af129aff8a9b47d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/Background.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aeb7fd7e28e34474b9a6ca3d5b4aec0e 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/Beatline.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e439050fec8839447bc37825da39a074 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/Billboard.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e4db11935f40634599da2ba007a6e0f 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/ColorSpace.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5afbb38263abac2408125e6bfcd1f629 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/ConnectionShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f63aa18386579944b9c1000ea330d626 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/DistanceColorMath.cginc: -------------------------------------------------------------------------------- 1 | float alpha_from_pos(float z) 2 | { 3 | return clamp(5 + 0.04024144869 * z, 0, 1); 4 | } -------------------------------------------------------------------------------- /Assets/Shaders/DistanceColorMath.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c803dc47c509fd42a1eb91a5010d927 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/HeightIndicator.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aed2be068dd4f874894731824287d084 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/Hold.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d5702983bbb691488d5f3eba0805804 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/HoldJudge.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b16c453c67b5f44da46deb738ae50a6 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/OnTrackArctapShadow.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17fdcd5d930506f4bbe56a255f4ea227 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/OnTrackSprites.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 934dd731daaf5d04896a82397c1bb0ab 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/Tap.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95652c7c0ea7ece418148c80362f6ded 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/Trace.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f048bdcf78e6ea44c9a270266ee942c2 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/Track.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ca2780d518901e45811eb3665fc091a 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81805caf8cad8f0439866da2a89be685 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TempAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae9e2ec50ccd2374da94f24b4d23984f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57dd58c15c72e0f42a8d9e25fac4282a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Tests/StorageTest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a58962a130174264f9a9d284381e488e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Tests/StorageTest/JsonHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c503a0c73b4f474eb1c57079f3b66c2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Tests/Tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2723613e20fca134c85f9579368ba082 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53503594e84205a40a2ad96fee592b29 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/BG.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c08e17e7f29a3f6438fb9ef2d1000d0c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/BG/BaseConflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/BG/BaseConflict.png -------------------------------------------------------------------------------- /Assets/Textures/BG/BaseLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/BG/BaseLight.png -------------------------------------------------------------------------------- /Assets/Textures/Notes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2572470874df5f4499d6ccdbb10724c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Notes/Arc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c268b3ee3fbb0db4f8a9d6fb8e5fa21c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Notes/Arc/ArcBody.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aedcced5de912c84ca3332c3987a370a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Notes/Arc/ArcBody/arc_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Arc/ArcBody/arc_body.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Arc/ArcBody/arc_body_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Arc/ArcBody/arc_body_highlight.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Arc/ArcCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Arc/ArcCap.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Arc/ArcTapShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Arc/ArcTapShadow.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Arc/arc_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Arc/arc_height.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/ArcTap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f679c4313b9b254eb3a7757d6d06557 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Notes/ArcTap/arctap_conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/ArcTap/arctap_conflict.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/ArcTap/arctap_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/ArcTap/arctap_light.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Hold.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 672c6093bd20be04ba2d9421ffa2b275 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Notes/Hold/hold_conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Hold/hold_conflict.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Hold/hold_conflict_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Hold/hold_conflict_highlight.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Hold/hold_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Hold/hold_light.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Hold/hold_light_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Hold/hold_light_highlighted.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Hold/hold_textureoverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Hold/hold_textureoverlay.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Particle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 281d874042443a1438bce6696749eb4f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Notes/Particle/particle_arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Particle/particle_arc.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Particle/particle_conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Particle/particle_conflict.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Particle/particle_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Particle/particle_light.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Tap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbffc58c761097340ad95449a4a91297 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Notes/Tap/tap_conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Tap/tap_conflict.png -------------------------------------------------------------------------------- /Assets/Textures/Notes/Tap/tap_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Notes/Tap/tap_light.png -------------------------------------------------------------------------------- /Assets/Textures/Particle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c41e0744b60ce6c4da5c1beb49ab6618 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Particle/early.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Particle/early.png -------------------------------------------------------------------------------- /Assets/Textures/Particle/far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Particle/far.png -------------------------------------------------------------------------------- /Assets/Textures/Particle/late.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Particle/late.png -------------------------------------------------------------------------------- /Assets/Textures/Particle/lost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Particle/lost.png -------------------------------------------------------------------------------- /Assets/Textures/Particle/maxpure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Particle/maxpure.png -------------------------------------------------------------------------------- /Assets/Textures/Particle/pure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Particle/pure.png -------------------------------------------------------------------------------- /Assets/Textures/Track.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6d1d01e650ea424ea2fa2853dfd8550 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Track/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52caf127f92f8974f952a8909d75685b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Track/Base/TrackDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Track/Base/TrackDark.png -------------------------------------------------------------------------------- /Assets/Textures/Track/Base/TrackWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Track/Base/TrackWhite.png -------------------------------------------------------------------------------- /Assets/Textures/Track/CriticalLine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49bedeac4faeb344b86d14b3bdf0e701 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Track/CriticalLine/TrackCriticalLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Track/CriticalLine/TrackCriticalLine.png -------------------------------------------------------------------------------- /Assets/Textures/Track/LaneHit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Track/LaneHit.png -------------------------------------------------------------------------------- /Assets/Textures/Track/SkyInput.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b5a426cbfc61fe40a380fc94c6e7f11 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/Track/SkyInput/SkyInputLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Track/SkyInput/SkyInputLine.png -------------------------------------------------------------------------------- /Assets/Textures/Track/TrackLaneDivider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/Track/TrackLaneDivider.png -------------------------------------------------------------------------------- /Assets/Textures/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0256c05352ddade4c8977c3fcf71c37b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/UI/PlayPause.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9706e500c19cb8409bc876827c8c8ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/UI/PlayPause/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/PlayPause/Pause.png -------------------------------------------------------------------------------- /Assets/Textures/UI/PlayPause/PausePressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/PlayPause/PausePressed.png -------------------------------------------------------------------------------- /Assets/Textures/UI/PlayPause/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/PlayPause/Play.png -------------------------------------------------------------------------------- /Assets/Textures/UI/PlayPause/PlayPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/PlayPause/PlayPressed.png -------------------------------------------------------------------------------- /Assets/Textures/UI/ShutterLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/ShutterLeft.png -------------------------------------------------------------------------------- /Assets/Textures/UI/ShutterRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/ShutterRight.png -------------------------------------------------------------------------------- /Assets/Textures/UI/SongInfo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c55b0586573682741ae9d3aee11b6b0f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Textures/UI/SongInfo/DifficultyOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/SongInfo/DifficultyOverlay.png -------------------------------------------------------------------------------- /Assets/Textures/UI/SongInfo/ProgressGlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/SongInfo/ProgressGlow.png -------------------------------------------------------------------------------- /Assets/Textures/UI/SongInfo/SongInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/SongInfo/SongInfo.png -------------------------------------------------------------------------------- /Assets/Textures/UI/SongInfo/UnknownCover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/Textures/UI/SongInfo/UnknownCover.png -------------------------------------------------------------------------------- /Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thElement/ArcCore/7f63fa08429e670349762d517eeaf0c089e2c73d/Assets/logo.png -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/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 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.4.33f1 2 | m_EditorVersionWithRevision: 2019.4.33f1 (c9b2b02eeeef) 3 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/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 | } --------------------------------------------------------------------------------