├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── generate_certs.yml │ ├── ios_setup.yml │ ├── release_internal.yml │ └── release_public.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .vsconfig ├── Assets ├── AudioClips.meta ├── AudioClips │ ├── Arc.wav │ ├── Arc.wav.meta │ ├── Calibrate.ogg │ ├── Calibrate.ogg.meta │ ├── ResultScreen.ogg │ ├── ResultScreen.ogg.meta │ ├── Retry.wav │ ├── Retry.wav.meta │ ├── SongSelect.wav │ ├── SongSelect.wav.meta │ ├── SongStartEditor.wav │ ├── SongStartEditor.wav.meta │ ├── SongStartGameplay.wav │ ├── SongStartGameplay.wav.meta │ ├── SongStartPostLoad.wav │ ├── SongStartPostLoad.wav.meta │ ├── SongStartPostLoadAlt.wav │ ├── SongStartPostLoadAlt.wav.meta │ ├── Tap.wav │ ├── Tap.wav.meta │ ├── vineboom.ogg │ └── vineboom.ogg.meta ├── Editor.meta ├── Editor │ ├── AnimatorEditor.cs │ ├── AnimatorEditor.cs.meta │ ├── ArcCreate.Editor.asmdef │ ├── ArcCreate.Editor.asmdef.meta │ ├── AudioServiceEditor.cs │ ├── AudioServiceEditor.cs.meta │ ├── EffectServiceEditor.cs │ ├── EffectServiceEditor.cs.meta │ ├── EmmyTest.cs │ ├── EmmyTest.cs.meta │ ├── EntitlementsPostprocessStep.cs │ ├── EntitlementsPostprocessStep.cs.meta │ ├── I18nTextEditor.cs │ ├── I18nTextEditor.cs.meta │ ├── ScriptBatch.cs │ ├── ScriptBatch.cs.meta │ ├── StorageEditor.cs │ ├── StorageEditor.cs.meta │ ├── WaveformDisplayEditor.cs │ └── WaveformDisplayEditor.cs.meta ├── Fonts.meta ├── Fonts │ ├── FontFiles.meta │ ├── FontFiles │ │ ├── NotoSans-Bold.ttf │ │ ├── NotoSans-Bold.ttf.meta │ │ ├── NotoSans-Light.ttf │ │ ├── NotoSans-Light.ttf.meta │ │ ├── NotoSans-Regular.ttf │ │ ├── NotoSans-Regular.ttf.meta │ │ ├── NotoSansHK-Regular.otf │ │ ├── NotoSansHK-Regular.otf.meta │ │ ├── NotoSansJP-Regular.otf │ │ ├── NotoSansJP-Regular.otf.meta │ │ ├── NotoSansKR-Regular.otf │ │ ├── NotoSansKR-Regular.otf.meta │ │ ├── NotoSansSC-Regular.otf │ │ ├── NotoSansSC-Regular.otf.meta │ │ ├── NotoSansThai.ttf │ │ ├── NotoSansThai.ttf.meta │ │ ├── Saira-Medium.ttf │ │ ├── Saira-Medium.ttf.meta │ │ ├── Saira-Regular.ttf │ │ ├── Saira-Regular.ttf.meta │ │ ├── SourceCodePro-Regular.otf │ │ └── SourceCodePro-Regular.otf.meta │ ├── NotoSans-Bold SDF.asset │ ├── NotoSans-Bold SDF.asset.meta │ ├── NotoSans-Light SDF.asset │ ├── NotoSans-Light SDF.asset.meta │ ├── NotoSans-Regular SDF Overlay.mat │ ├── NotoSans-Regular SDF Overlay.mat.meta │ ├── NotoSans-Regular SDF.asset │ ├── NotoSans-Regular SDF.asset.meta │ ├── NotoSansHK-Regular SDF.asset │ ├── NotoSansHK-Regular SDF.asset.meta │ ├── NotoSansJP-Regular SDF.asset │ ├── NotoSansJP-Regular SDF.asset.meta │ ├── NotoSansKR-Regular SDF.asset │ ├── NotoSansKR-Regular SDF.asset.meta │ ├── NotoSansSC-Regular SDF.asset │ ├── NotoSansSC-Regular SDF.asset.meta │ ├── NotoSansThai SDF.asset │ ├── NotoSansThai SDF.asset.meta │ ├── Saira-Medium SDF DiffNumber.mat │ ├── Saira-Medium SDF DiffNumber.mat.meta │ ├── Saira-Medium SDF Outline.mat │ ├── Saira-Medium SDF Outline.mat.meta │ ├── Saira-Medium SDF Overlay.mat │ ├── Saira-Medium SDF Overlay.mat.meta │ ├── Saira-Medium SDF.asset │ ├── Saira-Medium SDF.asset.meta │ ├── Saira-Regular SDF.asset │ ├── Saira-Regular SDF.asset.meta │ ├── SourceCodePro-Regular SDF.asset │ └── SourceCodePro-Regular SDF.asset.meta ├── Materials.meta ├── Materials │ ├── Compose.meta │ ├── Compose │ │ ├── ArcTapNotePreview.mat │ │ ├── ArcTapNotePreview.mat.meta │ │ ├── NotePreview.mat │ │ ├── NotePreview.mat.meta │ │ ├── VerticalPanel.mat │ │ ├── VerticalPanel.mat.meta │ │ ├── Waveform.mat │ │ └── Waveform.mat.meta │ ├── Gameplay.meta │ ├── Gameplay │ │ ├── Grid.mat │ │ ├── Grid.mat.meta │ │ ├── Note.meta │ │ ├── Note │ │ │ ├── Arc.mat │ │ │ ├── Arc.mat.meta │ │ │ ├── ArcCap.mat │ │ │ ├── ArcCap.mat.meta │ │ │ ├── ArcHighlight.mat │ │ │ ├── ArcHighlight.mat.meta │ │ │ ├── ArcTap.mat │ │ │ ├── ArcTap.mat.meta │ │ │ ├── ArcTapShadow.mat │ │ │ ├── ArcTapShadow.mat.meta │ │ │ ├── ConnectionLine.mat │ │ │ ├── ConnectionLine.mat.meta │ │ │ ├── HeightIndicator.mat │ │ │ ├── HeightIndicator.mat.meta │ │ │ ├── Hold.mat │ │ │ ├── Hold.mat.meta │ │ │ ├── Shadow.mat │ │ │ ├── Shadow.mat.meta │ │ │ ├── Tap.mat │ │ │ ├── Tap.mat.meta │ │ │ ├── Trace.mat │ │ │ └── Trace.mat.meta │ │ ├── Particle.meta │ │ ├── Particle │ │ │ ├── ArcNoteParticle.mat │ │ │ ├── ArcNoteParticle.mat.meta │ │ │ ├── FloatLine.mat │ │ │ ├── FloatLine.mat.meta │ │ │ ├── HoldNoteParticle.mat │ │ │ ├── HoldNoteParticle.mat.meta │ │ │ ├── TapParticle.mat │ │ │ ├── TapParticle.mat.meta │ │ │ ├── TapSfxParticle.mat │ │ │ ├── TapSfxParticle.mat.meta │ │ │ ├── TextGoodParticle.mat │ │ │ ├── TextGoodParticle.mat.meta │ │ │ ├── TextLostParticle.mat │ │ │ ├── TextLostParticle.mat.meta │ │ │ ├── TextPerfectParticle.mat │ │ │ └── TextPerfectParticle.mat.meta │ │ ├── PracticeeWaveform.mat │ │ ├── PracticeeWaveform.mat.meta │ │ ├── Scenecontrol.meta │ │ ├── Scenecontrol │ │ │ ├── ColorBurn.mat │ │ │ ├── ColorBurn.mat.meta │ │ │ ├── ColorDodge.mat │ │ │ ├── ColorDodge.mat.meta │ │ │ ├── Darken.mat │ │ │ ├── Darken.mat.meta │ │ │ ├── Default.mat │ │ │ ├── Default.mat.meta │ │ │ ├── Difference.mat │ │ │ ├── Difference.mat.meta │ │ │ ├── Exclusion.mat │ │ │ ├── Exclusion.mat.meta │ │ │ ├── FastAdd.mat │ │ │ ├── FastAdd.mat.meta │ │ │ ├── FastDarken.mat │ │ │ ├── FastDarken.mat.meta │ │ │ ├── FastLighten.mat │ │ │ ├── FastLighten.mat.meta │ │ │ ├── FastMultiply.mat │ │ │ ├── FastMultiply.mat.meta │ │ │ ├── FastScreen.mat │ │ │ ├── FastScreen.mat.meta │ │ │ ├── HardLight.mat │ │ │ ├── HardLight.mat.meta │ │ │ ├── Lighten.mat │ │ │ ├── Lighten.mat.meta │ │ │ ├── LinearBurn.mat │ │ │ ├── LinearBurn.mat.meta │ │ │ ├── LinearDodge.mat │ │ │ ├── LinearDodge.mat.meta │ │ │ ├── LinearLight.mat │ │ │ ├── LinearLight.mat.meta │ │ │ ├── Multiply.mat │ │ │ ├── Multiply.mat.meta │ │ │ ├── Overlay.mat │ │ │ ├── Overlay.mat.meta │ │ │ ├── PatternOverlayHUD.mat │ │ │ ├── PatternOverlayHUD.mat.meta │ │ │ ├── Screen.mat │ │ │ ├── Screen.mat.meta │ │ │ ├── SoftLight.mat │ │ │ ├── SoftLight.mat.meta │ │ │ ├── Subtract.mat │ │ │ ├── Subtract.mat.meta │ │ │ ├── VividLight.mat │ │ │ └── VividLight.mat.meta │ │ ├── Sprite.mat │ │ ├── Sprite.mat.meta │ │ ├── Track.mat │ │ ├── Track.mat.meta │ │ ├── TrackEdge.mat │ │ └── TrackEdge.mat.meta │ ├── Selection.meta │ └── Selection │ │ ├── Background.mat │ │ ├── Background.mat.meta │ │ ├── CellShadow.mat │ │ ├── CellShadow.mat.meta │ │ ├── FadeMiddlle.mat │ │ ├── FadeMiddlle.mat.meta │ │ ├── Masked.mat │ │ ├── Masked.mat.meta │ │ ├── PatternOverlay.mat │ │ ├── PatternOverlay.mat.meta │ │ ├── PatternOverlayDifficulty.mat │ │ ├── PatternOverlayDifficulty.mat.meta │ │ ├── PatternOverlayResult.mat │ │ ├── PatternOverlayResult.mat.meta │ │ ├── PatternOverlayTransition.mat │ │ ├── PatternOverlayTransition.mat.meta │ │ ├── TriangleTile.mat │ │ └── TriangleTile.mat.meta ├── Meshes.meta ├── Meshes │ ├── ArcDecorations.fbx │ ├── ArcDecorations.fbx.meta │ ├── ArcTaps.fbx │ ├── ArcTaps.fbx.meta │ ├── ConnectionLine.fbx │ ├── ConnectionLine.fbx.meta │ ├── Hold.fbx │ ├── Hold.fbx.meta │ ├── Tap.fbx │ └── Tap.fbx.meta ├── Plugins.meta ├── Plugins │ ├── Android.meta │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifest.xml.meta │ │ ├── ArcCreateHelper.java │ │ └── ArcCreateHelper.java.meta │ ├── Castle.Core.dll │ ├── Castle.Core.dll.meta │ ├── Castle.Core.xml │ ├── Castle.Core.xml.meta │ ├── ColorPicker.meta │ ├── ColorPicker │ │ ├── AlphaBackground.png │ │ ├── AlphaBackground.png.meta │ │ ├── ColorPicker.asmdef │ │ ├── ColorPicker.asmdef.meta │ │ ├── ColorPicker.cs │ │ ├── ColorPicker.cs.meta │ │ ├── ColorPickerMaterial.mat │ │ ├── ColorPickerMaterial.mat.meta │ │ ├── ColorPickerShader.shader │ │ ├── ColorPickerShader.shader.meta │ │ ├── ColorPreview.cs │ │ ├── ColorPreview.cs.meta │ │ ├── Gradient.png │ │ └── Gradient.png.meta │ ├── DOTween.meta │ ├── DOTween │ │ ├── DOTween.XML │ │ ├── DOTween.XML.meta │ │ ├── DOTween.dll │ │ ├── DOTween.dll.meta │ │ ├── Demigiant.DOTween.asmdef │ │ ├── Demigiant.DOTween.asmdef.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── DOTweenEditor.XML │ │ │ ├── DOTweenEditor.XML.meta │ │ │ ├── DOTweenEditor.dll │ │ │ ├── DOTweenEditor.dll.meta │ │ │ ├── DOTweenUpgradeManager.XML │ │ │ ├── DOTweenUpgradeManager.XML.meta │ │ │ ├── Imgs.meta │ │ │ └── Imgs │ │ │ │ ├── DOTweenIcon.png │ │ │ │ ├── DOTweenIcon.png.meta │ │ │ │ ├── DOTweenMiniIcon.png │ │ │ │ ├── DOTweenMiniIcon.png.meta │ │ │ │ ├── Footer.png │ │ │ │ ├── Footer.png.meta │ │ │ │ ├── Footer_dark.png │ │ │ │ ├── Footer_dark.png.meta │ │ │ │ ├── Header.jpg │ │ │ │ └── Header.jpg.meta │ │ ├── Modules.meta │ │ ├── Modules │ │ │ ├── DOTweenModuleAudio.cs │ │ │ ├── DOTweenModuleAudio.cs.meta │ │ │ ├── DOTweenModuleEPOOutline.cs │ │ │ ├── DOTweenModuleEPOOutline.cs.meta │ │ │ ├── DOTweenModulePhysics.cs │ │ │ ├── DOTweenModulePhysics.cs.meta │ │ │ ├── DOTweenModulePhysics2D.cs │ │ │ ├── DOTweenModulePhysics2D.cs.meta │ │ │ ├── DOTweenModuleSprite.cs │ │ │ ├── DOTweenModuleSprite.cs.meta │ │ │ ├── DOTweenModuleUI.cs │ │ │ ├── DOTweenModuleUI.cs.meta │ │ │ ├── DOTweenModuleUnityVersion.cs │ │ │ ├── DOTweenModuleUnityVersion.cs.meta │ │ │ ├── DOTweenModuleUtils.cs │ │ │ └── DOTweenModuleUtils.cs.meta │ │ ├── readme.txt │ │ └── readme.txt.meta │ ├── DynamicPanels.meta │ ├── DynamicPanels │ │ ├── Cursors.meta │ │ ├── Cursors │ │ │ ├── CursorResizeHorizontal.psd │ │ │ ├── CursorResizeHorizontal.psd.meta │ │ │ ├── CursorResizeTopLeft.psd │ │ │ ├── CursorResizeTopLeft.psd.meta │ │ │ ├── CursorResizeTopRight.psd │ │ │ ├── CursorResizeTopRight.psd.meta │ │ │ ├── CursorResizeVertical.psd │ │ │ └── CursorResizeVertical.psd.meta │ │ ├── DemoScene.unity │ │ ├── DemoScene.unity.meta │ │ ├── DynamicPanels.Runtime.asmdef │ │ ├── DynamicPanels.Runtime.asmdef.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── DynamicPanels.Editor.asmdef │ │ │ ├── DynamicPanels.Editor.asmdef.meta │ │ │ ├── DynamicPanelsCanvasEditor.cs │ │ │ └── DynamicPanelsCanvasEditor.cs.meta │ │ ├── README.txt │ │ ├── README.txt.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── DynamicPanel.prefab │ │ │ ├── DynamicPanel.prefab.meta │ │ │ ├── DynamicPanelPreview.prefab │ │ │ ├── DynamicPanelPreview.prefab.meta │ │ │ ├── DynamicPanelTab.prefab │ │ │ └── DynamicPanelTab.prefab.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Anchoring.meta │ │ │ ├── Anchoring │ │ │ │ ├── AnchorZoneBase.cs │ │ │ │ ├── AnchorZoneBase.cs.meta │ │ │ │ ├── CanvasAnchorZone.cs │ │ │ │ ├── CanvasAnchorZone.cs.meta │ │ │ │ ├── PanelAnchorZone.cs │ │ │ │ ├── PanelAnchorZone.cs.meta │ │ │ │ ├── PanelHeaderAnchorZone.cs │ │ │ │ └── PanelHeaderAnchorZone.cs.meta │ │ │ ├── DynamicPanelsCanvas.cs │ │ │ ├── DynamicPanelsCanvas.cs.meta │ │ │ ├── Grouping.meta │ │ │ ├── Grouping │ │ │ │ ├── IPanelGroupElement.cs │ │ │ │ ├── IPanelGroupElement.cs.meta │ │ │ │ ├── PanelGroup.cs │ │ │ │ ├── PanelGroup.cs.meta │ │ │ │ ├── UnanchoredPanelGroup.cs │ │ │ │ └── UnanchoredPanelGroup.cs.meta │ │ │ ├── Helpers.meta │ │ │ ├── Helpers │ │ │ │ ├── NonDrawingGraphic.cs │ │ │ │ ├── NonDrawingGraphic.cs.meta │ │ │ │ ├── PanelCursorHandler.cs │ │ │ │ ├── PanelCursorHandler.cs.meta │ │ │ │ ├── PanelHeader.cs │ │ │ │ ├── PanelHeader.cs.meta │ │ │ │ ├── PanelNotificationCenter.cs │ │ │ │ ├── PanelNotificationCenter.cs.meta │ │ │ │ ├── PanelResizeHelper.cs │ │ │ │ ├── PanelResizeHelper.cs.meta │ │ │ │ ├── PanelSerialization.cs │ │ │ │ ├── PanelSerialization.cs.meta │ │ │ │ ├── PanelTab.cs │ │ │ │ ├── PanelTab.cs.meta │ │ │ │ ├── PanelUtils.cs │ │ │ │ └── PanelUtils.cs.meta │ │ │ ├── Panel.cs │ │ │ ├── Panel.cs.meta │ │ │ ├── PanelManager.cs │ │ │ └── PanelManager.cs.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── CloseButton.psd │ │ │ ├── CloseButton.psd.meta │ │ │ ├── PanelBackground.psd │ │ │ ├── PanelBackground.psd.meta │ │ │ ├── PanelTabBackground.psd │ │ │ └── PanelTabBackground.psd.meta │ ├── FuzzySharp.dll │ ├── FuzzySharp.dll.meta │ ├── Graphy.meta │ ├── Graphy │ │ ├── Changelog.txt │ │ ├── Changelog.txt.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── GraphyDebuggerEditor.cs │ │ │ ├── GraphyDebuggerEditor.cs.meta │ │ │ ├── GraphyEditorStyle.cs │ │ │ ├── GraphyEditorStyle.cs.meta │ │ │ ├── GraphyManagerEditor.cs │ │ │ ├── GraphyManagerEditor.cs.meta │ │ │ ├── GraphyMenuItem.cs │ │ │ ├── GraphyMenuItem.cs.meta │ │ │ ├── Tayx.Graphy.Editor.asmdef │ │ │ └── Tayx.Graphy.Editor.asmdef.meta │ │ ├── Font.meta │ │ ├── Font │ │ │ ├── Northwest-Bold.meta │ │ │ ├── Northwest-Bold │ │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt │ │ │ │ ├── ERIC-TIRADO-NORTHWEST-LICENSE.txt.meta │ │ │ │ ├── NORTHWEST-B.otf │ │ │ │ └── NORTHWEST-B.otf.meta │ │ │ ├── Roboto.meta │ │ │ └── Roboto │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── LICENSE.txt.meta │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Bold.ttf.meta │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ └── Roboto-Regular.ttf.meta │ │ ├── GUI.meta │ │ ├── GUI │ │ │ ├── GraphyGUISkin.guiskin │ │ │ └── GraphyGUISkin.guiskin.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Audio_Spectrum_Graph.mat │ │ │ ├── Audio_Spectrum_Graph.mat.meta │ │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat │ │ │ ├── Audio_Spectrum_Highest_Values_Graph.mat.meta │ │ │ ├── FPS_Graph.mat │ │ │ ├── FPS_Graph.mat.meta │ │ │ ├── RAM_Allocated_Graph.mat │ │ │ ├── RAM_Allocated_Graph.mat.meta │ │ │ ├── RAM_Mono_Graph.mat │ │ │ ├── RAM_Mono_Graph.mat.meta │ │ │ ├── RAM_Reserved_Graph.mat │ │ │ └── RAM_Reserved_Graph.mat.meta │ │ ├── Prefab.meta │ │ ├── Prefab │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── ADVANCED - Module.prefab │ │ │ │ ├── ADVANCED - Module.prefab.meta │ │ │ │ ├── AUDIO - Module.prefab │ │ │ │ ├── AUDIO - Module.prefab.meta │ │ │ │ ├── FPS - Module.prefab │ │ │ │ ├── FPS - Module.prefab.meta │ │ │ │ ├── RAM - Module.prefab │ │ │ │ └── RAM - Module.prefab.meta │ │ │ ├── [Graphy] VR.prefab │ │ │ ├── [Graphy] VR.prefab.meta │ │ │ ├── [Graphy].prefab │ │ │ └── [Graphy].prefab.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Readme! - Graphy - Documentation.pdf │ │ ├── Readme! - Graphy - Documentation.pdf.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── Advanced.meta │ │ │ ├── Advanced │ │ │ │ ├── G_AdvancedData.cs │ │ │ │ └── G_AdvancedData.cs.meta │ │ │ ├── Audio.meta │ │ │ ├── Audio │ │ │ │ ├── G_AudioGraph.cs │ │ │ │ ├── G_AudioGraph.cs.meta │ │ │ │ ├── G_AudioManager.cs │ │ │ │ ├── G_AudioManager.cs.meta │ │ │ │ ├── G_AudioMonitor.cs │ │ │ │ ├── G_AudioMonitor.cs.meta │ │ │ │ ├── G_AudioText.cs │ │ │ │ └── G_AudioText.cs.meta │ │ │ ├── Fps.meta │ │ │ ├── Fps │ │ │ │ ├── G_FpsGraph.cs │ │ │ │ ├── G_FpsGraph.cs.meta │ │ │ │ ├── G_FpsManager.cs │ │ │ │ ├── G_FpsManager.cs.meta │ │ │ │ ├── G_FpsMonitor.cs │ │ │ │ ├── G_FpsMonitor.cs.meta │ │ │ │ ├── G_FpsText.cs │ │ │ │ └── G_FpsText.cs.meta │ │ │ ├── Graph.meta │ │ │ ├── Graph │ │ │ │ ├── G_Graph.cs │ │ │ │ └── G_Graph.cs.meta │ │ │ ├── GraphyDebugger.cs │ │ │ ├── GraphyDebugger.cs.meta │ │ │ ├── GraphyManager.cs │ │ │ ├── GraphyManager.cs.meta │ │ │ ├── Ram.meta │ │ │ ├── Ram │ │ │ │ ├── G_RamGraph.cs │ │ │ │ ├── G_RamGraph.cs.meta │ │ │ │ ├── G_RamManager.cs │ │ │ │ ├── G_RamManager.cs.meta │ │ │ │ ├── G_RamMonitor.cs │ │ │ │ ├── G_RamMonitor.cs.meta │ │ │ │ ├── G_RamText.cs │ │ │ │ └── G_RamText.cs.meta │ │ │ ├── Shader.meta │ │ │ ├── Shader │ │ │ │ ├── G_GraphShader.cs │ │ │ │ └── G_GraphShader.cs.meta │ │ │ ├── Tayx.Graphy.asmdef │ │ │ ├── Tayx.Graphy.asmdef.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ │ ├── IModifiableState.cs │ │ │ │ ├── IModifiableState.cs.meta │ │ │ │ ├── IMovable.cs │ │ │ │ └── IMovable.cs.meta │ │ │ ├── Util.meta │ │ │ └── Util │ │ │ │ ├── G_ExtensionMethods.cs │ │ │ │ ├── G_ExtensionMethods.cs.meta │ │ │ │ ├── G_FloatString.cs │ │ │ │ ├── G_FloatString.cs.meta │ │ │ │ ├── G_Intstring.cs │ │ │ │ ├── G_Intstring.cs.meta │ │ │ │ ├── G_Singleton.cs │ │ │ │ └── G_Singleton.cs.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── GraphMobile.shader │ │ │ ├── GraphMobile.shader.meta │ │ │ ├── GraphStandard.shader │ │ │ └── GraphStandard.shader.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ │ ├── 2x2_Texture.png │ │ │ ├── 2x2_Texture.png.meta │ │ │ ├── Debugger_Logo_Dark.png │ │ │ ├── Debugger_Logo_Dark.png.meta │ │ │ ├── Debugger_Logo_White.png │ │ │ ├── Debugger_Logo_White.png.meta │ │ │ ├── Manager_Logo_Dark.png │ │ │ ├── Manager_Logo_Dark.png.meta │ │ │ ├── Manager_Logo_White.png │ │ │ ├── Manager_Logo_White.png.meta │ │ │ ├── Rounded_Rect_10px.png │ │ │ └── Rounded_Rect_10px.png.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── Jace.dll │ ├── Jace.dll.meta │ ├── MaterialIcons.meta │ ├── MaterialIcons │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── MaterialIcon.Editor.asmdef │ │ │ ├── MaterialIcon.Editor.asmdef.meta │ │ │ ├── MaterialIconEditor.cs │ │ │ ├── MaterialIconEditor.cs.meta │ │ │ ├── MaterialIconSelectionWindow.cs │ │ │ ├── MaterialIconSelectionWindow.cs.meta │ │ │ ├── MenuOptions.cs │ │ │ └── MenuOptions.cs.meta │ │ ├── MaterialIcon.asmdef │ │ ├── MaterialIcon.asmdef.meta │ │ ├── MaterialIcon.cs │ │ ├── MaterialIcon.cs.meta │ │ ├── MaterialIcons-Regular.ttf │ │ ├── MaterialIcons-Regular.ttf.meta │ │ ├── codepoints │ │ ├── codepoints.meta │ │ ├── readme.txt │ │ └── readme.txt.meta │ ├── MoonSharp.Interpreter.dll │ ├── MoonSharp.Interpreter.dll.meta │ ├── MoonSharp.VsCodeDebugger.dll │ ├── MoonSharp.VsCodeDebugger.dll.meta │ ├── NAudio.dll │ ├── NAudio.dll.meta │ ├── NSubstitute.dll │ ├── NSubstitute.dll.meta │ ├── NSubstitute.xml │ ├── NSubstitute.xml.meta │ ├── Native Audio.meta │ ├── Native Audio │ │ └── Runtime │ │ │ ├── E7.NativeAudio.asmdef │ │ │ └── E7.NativeAudio.asmdef.meta │ ├── NativeFilePicker.meta │ ├── NativeFilePicker │ │ ├── Android.meta │ │ ├── Android │ │ │ ├── FPCallbackHelper.cs │ │ │ ├── FPCallbackHelper.cs.meta │ │ │ ├── FPPermissionCallbackAndroid.cs │ │ │ ├── FPPermissionCallbackAndroid.cs.meta │ │ │ ├── FPResultCallbackAndroid.cs │ │ │ ├── FPResultCallbackAndroid.cs.meta │ │ │ ├── NativeFilePicker.aar │ │ │ └── NativeFilePicker.aar.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── NativeFilePicker.Editor.asmdef │ │ │ ├── NativeFilePicker.Editor.asmdef.meta │ │ │ ├── NativeFilePickerCustomTypes.cs │ │ │ ├── NativeFilePickerCustomTypes.cs.meta │ │ │ ├── NativeFilePickerPostProcessBuild.cs │ │ │ └── NativeFilePickerPostProcessBuild.cs.meta │ │ ├── NativeFilePicker.Runtime.asmdef │ │ ├── NativeFilePicker.Runtime.asmdef.meta │ │ ├── NativeFilePicker.cs │ │ ├── NativeFilePicker.cs.meta │ │ ├── NativeFilePickerCustomTypes.asset │ │ ├── NativeFilePickerCustomTypes.asset.meta │ │ ├── README.txt │ │ ├── README.txt.meta │ │ ├── iOS.meta │ │ └── iOS │ │ │ ├── FPResultCallbackiOS.cs │ │ │ ├── FPResultCallbackiOS.cs.meta │ │ │ ├── NativeFilePicker.mm │ │ │ └── NativeFilePicker.mm.meta │ ├── SafeAreaHelper.meta │ ├── SafeAreaHelper │ │ ├── SafeArea.cs │ │ └── SafeArea.cs.meta │ ├── SimpleFileBrowser.meta │ ├── SimpleFileBrowser │ │ ├── Android.meta │ │ ├── Android │ │ │ ├── FBCallbackHelper.cs │ │ │ ├── FBCallbackHelper.cs.meta │ │ │ ├── FBDirectoryReceiveCallbackAndroid.cs │ │ │ ├── FBDirectoryReceiveCallbackAndroid.cs.meta │ │ │ ├── FBPermissionCallbackAndroid.cs │ │ │ ├── FBPermissionCallbackAndroid.cs.meta │ │ │ ├── SimpleFileBrowser.aar │ │ │ └── SimpleFileBrowser.aar.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── SimpleFileBrowserItem.prefab │ │ │ ├── SimpleFileBrowserItem.prefab.meta │ │ │ ├── SimpleFileBrowserQuickLink.prefab │ │ │ └── SimpleFileBrowserQuickLink.prefab.meta │ │ ├── README.txt │ │ ├── README.txt.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── SimpleFileBrowserCanvas.prefab │ │ │ └── SimpleFileBrowserCanvas.prefab.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── EventSystemHandler.cs │ │ │ ├── EventSystemHandler.cs.meta │ │ │ ├── FileBrowser.cs │ │ │ ├── FileBrowser.cs.meta │ │ │ ├── FileBrowserAccessRestrictedPanel.cs │ │ │ ├── FileBrowserAccessRestrictedPanel.cs.meta │ │ │ ├── FileBrowserContextMenu.cs │ │ │ ├── FileBrowserContextMenu.cs.meta │ │ │ ├── FileBrowserCursorHandler.cs │ │ │ ├── FileBrowserCursorHandler.cs.meta │ │ │ ├── FileBrowserFileOperationConfirmationPanel.cs │ │ │ ├── FileBrowserFileOperationConfirmationPanel.cs.meta │ │ │ ├── FileBrowserHelpers.cs │ │ │ ├── FileBrowserHelpers.cs.meta │ │ │ ├── FileBrowserItem.cs │ │ │ ├── FileBrowserItem.cs.meta │ │ │ ├── FileBrowserMovement.cs │ │ │ ├── FileBrowserMovement.cs.meta │ │ │ ├── FileBrowserQuickLink.cs │ │ │ ├── FileBrowserQuickLink.cs.meta │ │ │ ├── FileBrowserRenamedItem.cs │ │ │ ├── FileBrowserRenamedItem.cs.meta │ │ │ ├── NonDrawingGraphic.cs │ │ │ ├── NonDrawingGraphic.cs.meta │ │ │ ├── SimpleRecycledListView.meta │ │ │ ├── SimpleRecycledListView │ │ │ │ ├── IListViewAdapter.cs │ │ │ │ ├── IListViewAdapter.cs.meta │ │ │ │ ├── ListItem.cs │ │ │ │ ├── ListItem.cs.meta │ │ │ │ ├── RecycledListView.cs │ │ │ │ └── RecycledListView.cs.meta │ │ │ ├── UISkin.cs │ │ │ └── UISkin.cs.meta │ │ ├── SimpleFileBrowser.Runtime.asmdef │ │ ├── SimpleFileBrowser.Runtime.asmdef.meta │ │ ├── Skins.meta │ │ ├── Skins │ │ │ ├── DarkSkin.asset │ │ │ ├── DarkSkin.asset.meta │ │ │ ├── LightSkin.asset │ │ │ └── LightSkin.asset.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── Checkmark.psd │ │ │ ├── Checkmark.psd.meta │ │ │ ├── DropdownArrow.psd │ │ │ ├── DropdownArrow.psd.meta │ │ │ ├── ErrorIcon.psd │ │ │ ├── ErrorIcon.psd.meta │ │ │ ├── FileIcons.meta │ │ │ ├── FileIcons │ │ │ ├── ArchiveIcon.png │ │ │ ├── ArchiveIcon.png.meta │ │ │ ├── AudioFileIcon.png │ │ │ ├── AudioFileIcon.png.meta │ │ │ ├── DefaultFileIcon.png │ │ │ ├── DefaultFileIcon.png.meta │ │ │ ├── DriveIcon.png │ │ │ ├── DriveIcon.png.meta │ │ │ ├── ExecutableIcon.png │ │ │ ├── ExecutableIcon.png.meta │ │ │ ├── FolderIcon.png │ │ │ ├── FolderIcon.png.meta │ │ │ ├── ImageFileIcon.png │ │ │ ├── ImageFileIcon.png.meta │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE.txt.meta │ │ │ ├── PdfFileIcon.png │ │ │ ├── PdfFileIcon.png.meta │ │ │ ├── TextFileIcon.png │ │ │ ├── TextFileIcon.png.meta │ │ │ ├── VideoFileIcon.png │ │ │ └── VideoFileIcon.png.meta │ │ │ ├── ForwardArrow.psd │ │ │ ├── ForwardArrow.psd.meta │ │ │ ├── MultiSelectionToggleOff.psd │ │ │ ├── MultiSelectionToggleOff.psd.meta │ │ │ ├── MultiSelectionToggleOn.psd │ │ │ ├── MultiSelectionToggleOn.psd.meta │ │ │ ├── ResizeCursor.psd │ │ │ ├── ResizeCursor.psd.meta │ │ │ ├── SimpleFileBrowserDrag.psd │ │ │ ├── SimpleFileBrowserDrag.psd.meta │ │ │ ├── SimpleFileBrowserMoreOptions.psd │ │ │ ├── SimpleFileBrowserMoreOptions.psd.meta │ │ │ ├── SimpleFileBrowserSlicedBackground1.psd │ │ │ ├── SimpleFileBrowserSlicedBackground1.psd.meta │ │ │ ├── SimpleFileBrowserSlicedBackground2.psd │ │ │ ├── SimpleFileBrowserSlicedBackground2.psd.meta │ │ │ ├── SimpleFileBrowserSlicedBackground3.psd │ │ │ ├── SimpleFileBrowserSlicedBackground3.psd.meta │ │ │ ├── SimpleFileBrowserSlicedBackground4.psd │ │ │ ├── SimpleFileBrowserSlicedBackground4.psd.meta │ │ │ ├── SimpleFileBrowserSlicedBackground5.psd │ │ │ ├── SimpleFileBrowserSlicedBackground5.psd.meta │ │ │ ├── SimpleFileBrowserSpriteAtlas.spriteatlas │ │ │ └── SimpleFileBrowserSpriteAtlas.spriteatlas.meta │ ├── StandaloneFileBrowser.meta │ ├── StandaloneFileBrowser │ │ ├── IStandaloneFileBrowser.cs │ │ ├── IStandaloneFileBrowser.cs.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── Linux.meta │ │ │ ├── Linux │ │ │ │ ├── x86_64.meta │ │ │ │ └── x86_64 │ │ │ │ │ ├── libStandaloneFileBrowser.so │ │ │ │ │ └── libStandaloneFileBrowser.so.meta │ │ │ ├── Ookii.Dialogs.dll │ │ │ ├── Ookii.Dialogs.dll.meta │ │ │ ├── ShellFileDialogs.dll │ │ │ ├── ShellFileDialogs.dll.meta │ │ │ ├── StandaloneFileBrowser.bundle.meta │ │ │ ├── StandaloneFileBrowser.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Info.plist.meta │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ ├── MacOS │ │ │ │ │ ├── StandaloneFileBrowser │ │ │ │ │ └── StandaloneFileBrowser.meta │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── StandaloneFileBrowser.jslib │ │ │ └── StandaloneFileBrowser.jslib.meta │ │ ├── SFB.Runtime.asmdef │ │ ├── SFB.Runtime.asmdef.meta │ │ ├── StandaloneFileBrowser.cs │ │ ├── StandaloneFileBrowser.cs.meta │ │ ├── StandaloneFileBrowserEditor.cs │ │ ├── StandaloneFileBrowserEditor.cs.meta │ │ ├── StandaloneFileBrowserLinux.cs │ │ ├── StandaloneFileBrowserLinux.cs.meta │ │ ├── StandaloneFileBrowserMac.cs │ │ ├── StandaloneFileBrowserMac.cs.meta │ │ ├── StandaloneFileBrowserWindows.cs │ │ └── StandaloneFileBrowserWindows.cs.meta │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Runtime.CompilerServices.Unsafe.dll.meta │ ├── System.Runtime.CompilerServices.Unsafe.xml │ ├── System.Runtime.CompilerServices.Unsafe.xml.meta │ ├── System.Threading.Tasks.Extensions.dll │ ├── System.Threading.Tasks.Extensions.dll.meta │ ├── System.Threading.Tasks.Extensions.xml │ ├── System.Threading.Tasks.Extensions.xml.meta │ ├── UIGradient.meta │ ├── UIGradient │ │ ├── SetDirty.cs │ │ ├── SetDirty.cs.meta │ │ ├── UICornersGradient.cs │ │ ├── UICornersGradient.cs.meta │ │ ├── UIGradient.asmdef │ │ ├── UIGradient.asmdef.meta │ │ ├── UIGradient.cs │ │ ├── UIGradient.cs.meta │ │ ├── UIGradientUtils.cs │ │ ├── UIGradientUtils.cs.meta │ │ ├── UITextCornersGradient.cs │ │ ├── UITextCornersGradient.cs.meta │ │ ├── UITextGradient.cs │ │ └── UITextGradient.cs.meta │ ├── UltraLiteDB.dll │ ├── UltraLiteDB.dll.meta │ ├── YamlDotNet.meta │ └── YamlDotNet │ │ ├── Core.meta │ │ ├── Core │ │ ├── AnchorNotFoundException.cs │ │ ├── AnchorNotFoundException.cs.meta │ │ ├── CharacterAnalyzer.cs │ │ ├── CharacterAnalyzer.cs.meta │ │ ├── Constants.cs │ │ ├── Constants.cs.meta │ │ ├── Cursor.cs │ │ ├── Cursor.cs.meta │ │ ├── Emitter.cs │ │ ├── Emitter.cs.meta │ │ ├── EmitterSettings.cs │ │ ├── EmitterSettings.cs.meta │ │ ├── EmitterState.cs │ │ ├── EmitterState.cs.meta │ │ ├── Events.meta │ │ ├── Events │ │ │ ├── AnchorAlias.cs │ │ │ ├── AnchorAlias.cs.meta │ │ │ ├── Comment.cs │ │ │ ├── Comment.cs.meta │ │ │ ├── DocumentEnd.cs │ │ │ ├── DocumentEnd.cs.meta │ │ │ ├── DocumentStart.cs │ │ │ ├── DocumentStart.cs.meta │ │ │ ├── EventType.cs │ │ │ ├── EventType.cs.meta │ │ │ ├── IParsingEventVisitor.cs │ │ │ ├── IParsingEventVisitor.cs.meta │ │ │ ├── MappingEnd.cs │ │ │ ├── MappingEnd.cs.meta │ │ │ ├── MappingStart.cs │ │ │ ├── MappingStart.cs.meta │ │ │ ├── MappingStyle.cs │ │ │ ├── MappingStyle.cs.meta │ │ │ ├── NodeEvent.cs │ │ │ ├── NodeEvent.cs.meta │ │ │ ├── ParsingEvent.cs │ │ │ ├── ParsingEvent.cs.meta │ │ │ ├── Scalar.cs │ │ │ ├── Scalar.cs.meta │ │ │ ├── SequenceEnd.cs │ │ │ ├── SequenceEnd.cs.meta │ │ │ ├── SequenceStart.cs │ │ │ ├── SequenceStart.cs.meta │ │ │ ├── SequenceStyle.cs │ │ │ ├── SequenceStyle.cs.meta │ │ │ ├── StreamEnd.cs │ │ │ ├── StreamEnd.cs.meta │ │ │ ├── StreamStart.cs │ │ │ └── StreamStart.cs.meta │ │ ├── FakeList.cs │ │ ├── FakeList.cs.meta │ │ ├── ForwardAnchorNotSupportedException.cs │ │ ├── ForwardAnchorNotSupportedException.cs.meta │ │ ├── HashCode.cs │ │ ├── HashCode.cs.meta │ │ ├── IEmitter.cs │ │ ├── IEmitter.cs.meta │ │ ├── ILookAheadBuffer.cs │ │ ├── ILookAheadBuffer.cs.meta │ │ ├── IParser.cs │ │ ├── IParser.cs.meta │ │ ├── IScanner.cs │ │ ├── IScanner.cs.meta │ │ ├── InsertionQueue.cs │ │ ├── InsertionQueue.cs.meta │ │ ├── LookAheadBuffer.cs │ │ ├── LookAheadBuffer.cs.meta │ │ ├── Mark.cs │ │ ├── Mark.cs.meta │ │ ├── MaximumRecursionLevelReachedException.cs │ │ ├── MaximumRecursionLevelReachedException.cs.meta │ │ ├── MergingParser.cs │ │ ├── MergingParser.cs.meta │ │ ├── Parser.cs │ │ ├── Parser.cs.meta │ │ ├── ParserExtensions.cs │ │ ├── ParserExtensions.cs.meta │ │ ├── ParserState.cs │ │ ├── ParserState.cs.meta │ │ ├── RecursionLevel.cs │ │ ├── RecursionLevel.cs.meta │ │ ├── ScalarStyle.cs │ │ ├── ScalarStyle.cs.meta │ │ ├── Scanner.cs │ │ ├── Scanner.cs.meta │ │ ├── SemanticErrorException.cs │ │ ├── SemanticErrorException.cs.meta │ │ ├── SimpleKey.cs │ │ ├── SimpleKey.cs.meta │ │ ├── StringLookAheadBuffer.cs │ │ ├── StringLookAheadBuffer.cs.meta │ │ ├── SyntaxErrorException.cs │ │ ├── SyntaxErrorException.cs.meta │ │ ├── TagDirectiveCollection.cs │ │ ├── TagDirectiveCollection.cs.meta │ │ ├── Tokens.meta │ │ ├── Tokens │ │ │ ├── Anchor.cs │ │ │ ├── Anchor.cs.meta │ │ │ ├── AnchorAlias.cs │ │ │ ├── AnchorAlias.cs.meta │ │ │ ├── BlockEnd.cs │ │ │ ├── BlockEnd.cs.meta │ │ │ ├── BlockEntry.cs │ │ │ ├── BlockEntry.cs.meta │ │ │ ├── BlockMappingStart.cs │ │ │ ├── BlockMappingStart.cs.meta │ │ │ ├── BlockSequenceStart.cs │ │ │ ├── BlockSequenceStart.cs.meta │ │ │ ├── Comment.cs │ │ │ ├── Comment.cs.meta │ │ │ ├── DocumentEnd.cs │ │ │ ├── DocumentEnd.cs.meta │ │ │ ├── DocumentStart.cs │ │ │ ├── DocumentStart.cs.meta │ │ │ ├── FlowEntry.cs │ │ │ ├── FlowEntry.cs.meta │ │ │ ├── FlowMappingEnd.cs │ │ │ ├── FlowMappingEnd.cs.meta │ │ │ ├── FlowMappingStart.cs │ │ │ ├── FlowMappingStart.cs.meta │ │ │ ├── FlowSequenceEnd.cs │ │ │ ├── FlowSequenceEnd.cs.meta │ │ │ ├── FlowSequenceStart.cs │ │ │ ├── FlowSequenceStart.cs.meta │ │ │ ├── Key.cs │ │ │ ├── Key.cs.meta │ │ │ ├── Scalar.cs │ │ │ ├── Scalar.cs.meta │ │ │ ├── StreamEnd.cs │ │ │ ├── StreamEnd.cs.meta │ │ │ ├── StreamStart.cs │ │ │ ├── StreamStart.cs.meta │ │ │ ├── Tag.cs │ │ │ ├── Tag.cs.meta │ │ │ ├── TagDirective.cs │ │ │ ├── TagDirective.cs.meta │ │ │ ├── Token.cs │ │ │ ├── Token.cs.meta │ │ │ ├── Value.cs │ │ │ ├── Value.cs.meta │ │ │ ├── VersionDirective.cs │ │ │ └── VersionDirective.cs.meta │ │ ├── Version.cs │ │ ├── Version.cs.meta │ │ ├── YamlException.cs │ │ └── YamlException.cs.meta │ │ ├── Helpers.meta │ │ ├── Helpers │ │ ├── ExpressionExtensions.cs │ │ ├── ExpressionExtensions.cs.meta │ │ ├── GenericCollectionToNonGenericAdapter.cs │ │ ├── GenericCollectionToNonGenericAdapter.cs.meta │ │ ├── GenericDictionaryToNonGenericAdapter.cs │ │ ├── GenericDictionaryToNonGenericAdapter.cs.meta │ │ ├── Portability.cs │ │ └── Portability.cs.meta │ │ ├── Readme.txt │ │ ├── Readme.txt.meta │ │ ├── RepresentationModel.meta │ │ ├── RepresentationModel │ │ ├── DocumentLoadingState.cs │ │ ├── DocumentLoadingState.cs.meta │ │ ├── EmitterState.cs │ │ ├── EmitterState.cs.meta │ │ ├── IYamlVisitor.cs │ │ ├── IYamlVisitor.cs.meta │ │ ├── YamlAliasNode.cs │ │ ├── YamlAliasNode.cs.meta │ │ ├── YamlDocument.cs │ │ ├── YamlDocument.cs.meta │ │ ├── YamlMappingNode.cs │ │ ├── YamlMappingNode.cs.meta │ │ ├── YamlNode.cs │ │ ├── YamlNode.cs.meta │ │ ├── YamlNodeIdentityEqualityComparer.cs │ │ ├── YamlNodeIdentityEqualityComparer.cs.meta │ │ ├── YamlNodeType.cs │ │ ├── YamlNodeType.cs.meta │ │ ├── YamlScalarNode.cs │ │ ├── YamlScalarNode.cs.meta │ │ ├── YamlSequenceNode.cs │ │ ├── YamlSequenceNode.cs.meta │ │ ├── YamlStream.cs │ │ ├── YamlStream.cs.meta │ │ ├── YamlVisitor.cs │ │ ├── YamlVisitor.cs.meta │ │ ├── YamlVisitorBase.cs │ │ └── YamlVisitorBase.cs.meta │ │ ├── Serialization.meta │ │ ├── Serialization │ │ ├── BuilderSkeleton.cs │ │ ├── BuilderSkeleton.cs.meta │ │ ├── Converters.meta │ │ ├── Converters │ │ │ ├── DateTimeConverter.cs │ │ │ ├── DateTimeConverter.cs.meta │ │ │ ├── GuidConverter.cs │ │ │ ├── GuidConverter.cs.meta │ │ │ ├── SystemTypeConverter.cs │ │ │ └── SystemTypeConverter.cs.meta │ │ ├── Deserializer.cs │ │ ├── Deserializer.cs.meta │ │ ├── DeserializerBuilder.cs │ │ ├── DeserializerBuilder.cs.meta │ │ ├── EmissionPhaseObjectGraphVisitorArgs.cs │ │ ├── EmissionPhaseObjectGraphVisitorArgs.cs.meta │ │ ├── EventEmitters.meta │ │ ├── EventEmitters │ │ │ ├── ChainedEventEmitter.cs │ │ │ ├── ChainedEventEmitter.cs.meta │ │ │ ├── JsonEventEmitter.cs │ │ │ ├── JsonEventEmitter.cs.meta │ │ │ ├── TypeAssigningEventEmitter.cs │ │ │ ├── TypeAssigningEventEmitter.cs.meta │ │ │ ├── WriterEventEmitter.cs │ │ │ └── WriterEventEmitter.cs.meta │ │ ├── EventInfo.cs │ │ ├── EventInfo.cs.meta │ │ ├── IAliasProvider.cs │ │ ├── IAliasProvider.cs.meta │ │ ├── IDeserializer.cs │ │ ├── IDeserializer.cs.meta │ │ ├── IEventEmitter.cs │ │ ├── IEventEmitter.cs.meta │ │ ├── INamingConvention.cs │ │ ├── INamingConvention.cs.meta │ │ ├── INodeDeserializer.cs │ │ ├── INodeDeserializer.cs.meta │ │ ├── INodeTypeResolver.cs │ │ ├── INodeTypeResolver.cs.meta │ │ ├── IObjectDescriptor.cs │ │ ├── IObjectDescriptor.cs.meta │ │ ├── IObjectFactory.cs │ │ ├── IObjectFactory.cs.meta │ │ ├── IObjectGraphTraversalStrategy.cs │ │ ├── IObjectGraphTraversalStrategy.cs.meta │ │ ├── IObjectGraphVisitor.cs │ │ ├── IObjectGraphVisitor.cs.meta │ │ ├── IPropertyDescriptor.cs │ │ ├── IPropertyDescriptor.cs.meta │ │ ├── IRegistrationLocationSelectionSyntax.cs │ │ ├── IRegistrationLocationSelectionSyntax.cs.meta │ │ ├── ISerializer.cs │ │ ├── ISerializer.cs.meta │ │ ├── ITypeInspector.cs │ │ ├── ITypeInspector.cs.meta │ │ ├── ITypeResolver.cs │ │ ├── ITypeResolver.cs.meta │ │ ├── IValueDeserializer.cs │ │ ├── IValueDeserializer.cs.meta │ │ ├── IValuePromise.cs │ │ ├── IValuePromise.cs.meta │ │ ├── IValueSerializer.cs │ │ ├── IValueSerializer.cs.meta │ │ ├── IYamlConvertible.cs │ │ ├── IYamlConvertible.cs.meta │ │ ├── IYamlSerializable.cs │ │ ├── IYamlSerializable.cs.meta │ │ ├── IYamlTypeConverter.cs │ │ ├── IYamlTypeConverter.cs.meta │ │ ├── LazyComponentRegistrationList.cs │ │ ├── LazyComponentRegistrationList.cs.meta │ │ ├── LazyComponentRegistrationListExtensions.cs │ │ ├── LazyComponentRegistrationListExtensions.cs.meta │ │ ├── NamingConventions.meta │ │ ├── NamingConventions │ │ │ ├── CamelCaseNamingConvention.cs │ │ │ ├── CamelCaseNamingConvention.cs.meta │ │ │ ├── HyphenatedNamingConvention.cs │ │ │ ├── HyphenatedNamingConvention.cs.meta │ │ │ ├── NullNamingConvention.cs │ │ │ ├── NullNamingConvention.cs.meta │ │ │ ├── PascalCaseNamingConvention.cs │ │ │ ├── PascalCaseNamingConvention.cs.meta │ │ │ ├── UnderscoredNamingConvention.cs │ │ │ └── UnderscoredNamingConvention.cs.meta │ │ ├── NodeDeserializers.meta │ │ ├── NodeDeserializers │ │ │ ├── ArrayNodeDeserializer.cs │ │ │ ├── ArrayNodeDeserializer.cs.meta │ │ │ ├── CollectionNodeDeserializer.cs │ │ │ ├── CollectionNodeDeserializer.cs.meta │ │ │ ├── DictionaryNodeDeserializer.cs │ │ │ ├── DictionaryNodeDeserializer.cs.meta │ │ │ ├── EnumerableNodeDeserializer.cs │ │ │ ├── EnumerableNodeDeserializer.cs.meta │ │ │ ├── NullNodeDeserializer.cs │ │ │ ├── NullNodeDeserializer.cs.meta │ │ │ ├── ObjectNodeDeserializer.cs │ │ │ ├── ObjectNodeDeserializer.cs.meta │ │ │ ├── ScalarNodeDeserializer.cs │ │ │ ├── ScalarNodeDeserializer.cs.meta │ │ │ ├── TypeConverterNodeDeserializer.cs │ │ │ ├── TypeConverterNodeDeserializer.cs.meta │ │ │ ├── YamlConvertibleNodeDeserializer.cs │ │ │ ├── YamlConvertibleNodeDeserializer.cs.meta │ │ │ ├── YamlSerializableNodeDeserializer.cs │ │ │ └── YamlSerializableNodeDeserializer.cs.meta │ │ ├── NodeTypeResolvers.meta │ │ ├── NodeTypeResolvers │ │ │ ├── DefaultContainersNodeTypeResolver.cs │ │ │ ├── DefaultContainersNodeTypeResolver.cs.meta │ │ │ ├── RejectUnknownTagsNodeTypeResolver.cs │ │ │ ├── RejectUnknownTagsNodeTypeResolver.cs.meta │ │ │ ├── TagNodeTypeResolver.cs │ │ │ ├── TagNodeTypeResolver.cs.meta │ │ │ ├── TypeNameInTagNodeTypeResolver.cs │ │ │ ├── TypeNameInTagNodeTypeResolver.cs.meta │ │ │ ├── YamlConvertibleTypeResolver.cs │ │ │ ├── YamlConvertibleTypeResolver.cs.meta │ │ │ ├── YamlSerializableTypeResolver.cs │ │ │ └── YamlSerializableTypeResolver.cs.meta │ │ ├── Nothing.cs │ │ ├── Nothing.cs.meta │ │ ├── ObjectDescriptor.cs │ │ ├── ObjectDescriptor.cs.meta │ │ ├── ObjectFactories.meta │ │ ├── ObjectFactories │ │ │ ├── DefaultObjectFactory.cs │ │ │ ├── DefaultObjectFactory.cs.meta │ │ │ ├── LambdaObjectFactory.cs │ │ │ └── LambdaObjectFactory.cs.meta │ │ ├── ObjectGraphTraversalStrategies.meta │ │ ├── ObjectGraphTraversalStrategies │ │ │ ├── FullObjectGraphTraversalStrategy.cs │ │ │ ├── FullObjectGraphTraversalStrategy.cs.meta │ │ │ ├── RoundtripObjectGraphTraversalStrategy.cs │ │ │ └── RoundtripObjectGraphTraversalStrategy.cs.meta │ │ ├── ObjectGraphTraversalStrategyFactory.cs │ │ ├── ObjectGraphTraversalStrategyFactory.cs.meta │ │ ├── ObjectGraphVisitors.meta │ │ ├── ObjectGraphVisitors │ │ │ ├── AnchorAssigner.cs │ │ │ ├── AnchorAssigner.cs.meta │ │ │ ├── AnchorAssigningObjectGraphVisitor.cs │ │ │ ├── AnchorAssigningObjectGraphVisitor.cs.meta │ │ │ ├── ChainedObjectGraphVisitor.cs │ │ │ ├── ChainedObjectGraphVisitor.cs.meta │ │ │ ├── CustomSerializationObjectGraphVisitor.cs │ │ │ ├── CustomSerializationObjectGraphVisitor.cs.meta │ │ │ ├── DefaultExclusiveObjectGraphVisitor.cs │ │ │ ├── DefaultExclusiveObjectGraphVisitor.cs.meta │ │ │ ├── EmittingObjectGraphVisitor.cs │ │ │ ├── EmittingObjectGraphVisitor.cs.meta │ │ │ ├── PreProcessingPhaseObjectGraphVisitorSkeleton.cs │ │ │ └── PreProcessingPhaseObjectGraphVisitorSkeleton.cs.meta │ │ ├── PropertyDescriptor.cs │ │ ├── PropertyDescriptor.cs.meta │ │ ├── SerializationOptions.cs │ │ ├── SerializationOptions.cs.meta │ │ ├── Serializer.cs │ │ ├── Serializer.cs.meta │ │ ├── SerializerBuilder.cs │ │ ├── SerializerBuilder.cs.meta │ │ ├── StreamFragment.cs │ │ ├── StreamFragment.cs.meta │ │ ├── TagMappings.cs │ │ ├── TagMappings.cs.meta │ │ ├── TypeInspectors.meta │ │ ├── TypeInspectors │ │ │ ├── CachedTypeInspector.cs │ │ │ ├── CachedTypeInspector.cs.meta │ │ │ ├── CompositeTypeInspector.cs │ │ │ ├── CompositeTypeInspector.cs.meta │ │ │ ├── NamingConventionTypeInspector.cs │ │ │ ├── NamingConventionTypeInspector.cs.meta │ │ │ ├── ReadableAndWritablePropertiesTypeInspector.cs │ │ │ ├── ReadableAndWritablePropertiesTypeInspector.cs.meta │ │ │ ├── ReadableFieldsTypeInspector.cs │ │ │ ├── ReadableFieldsTypeInspector.cs.meta │ │ │ ├── ReadablePropertiesTypeInspector.cs │ │ │ ├── ReadablePropertiesTypeInspector.cs.meta │ │ │ ├── TypeInspectorSkeleton.cs │ │ │ └── TypeInspectorSkeleton.cs.meta │ │ ├── TypeResolvers.meta │ │ ├── TypeResolvers │ │ │ ├── DynamicTypeResolver.cs │ │ │ ├── DynamicTypeResolver.cs.meta │ │ │ ├── StaticTypeResolver.cs │ │ │ └── StaticTypeResolver.cs.meta │ │ ├── Utilities.meta │ │ ├── Utilities │ │ │ ├── IPostDeserializationCallback.cs │ │ │ ├── IPostDeserializationCallback.cs.meta │ │ │ ├── ObjectAnchorCollection.cs │ │ │ ├── ObjectAnchorCollection.cs.meta │ │ │ ├── ReflectionUtility.cs │ │ │ ├── ReflectionUtility.cs.meta │ │ │ ├── SerializerState.cs │ │ │ ├── SerializerState.cs.meta │ │ │ ├── StringExtensions.cs │ │ │ ├── StringExtensions.cs.meta │ │ │ ├── TypeConverter.cs │ │ │ └── TypeConverter.cs.meta │ │ ├── ValueDeserializers.meta │ │ ├── ValueDeserializers │ │ │ ├── AliasValueDeserializer.cs │ │ │ ├── AliasValueDeserializer.cs.meta │ │ │ ├── NodeValueDeserializer.cs │ │ │ └── NodeValueDeserializer.cs.meta │ │ ├── YamlAttributeOverrides.cs │ │ ├── YamlAttributeOverrides.cs.meta │ │ ├── YamlAttributeOverridesInspector.cs │ │ ├── YamlAttributeOverridesInspector.cs.meta │ │ ├── YamlAttributesTypeInspector.cs │ │ ├── YamlAttributesTypeInspector.cs.meta │ │ ├── YamlFormatter.cs │ │ ├── YamlFormatter.cs.meta │ │ ├── YamlIgnoreAttribute.cs │ │ ├── YamlIgnoreAttribute.cs.meta │ │ ├── YamlMember.cs │ │ └── YamlMember.cs.meta │ │ ├── YamlDotNet.asmdef │ │ ├── YamlDotNet.asmdef.meta │ │ ├── YamlDotNet.license.txt │ │ └── YamlDotNet.license.txt.meta ├── Prefabs.meta ├── Prefabs │ ├── Editor.meta │ ├── Editor │ │ ├── Buttons.meta │ │ ├── Buttons │ │ │ ├── IconButton.prefab │ │ │ ├── IconButton.prefab.meta │ │ │ ├── TextButton.prefab │ │ │ ├── TextButton.prefab.meta │ │ │ ├── TextIconButton.prefab │ │ │ ├── TextIconButton.prefab.meta │ │ │ ├── TextIconButtonSmall.prefab │ │ │ ├── TextIconButtonSmall.prefab.meta │ │ │ ├── TextIconButtonSquare.prefab │ │ │ └── TextIconButtonSquare.prefab.meta │ │ ├── ChartRow.prefab │ │ ├── ChartRow.prefab.meta │ │ ├── ContextMenu.meta │ │ ├── ContextMenu │ │ │ ├── ContextMenuButton.prefab │ │ │ ├── ContextMenuButton.prefab.meta │ │ │ ├── ContextMenuCategory.prefab │ │ │ └── ContextMenuCategory.prefab.meta │ │ ├── CustomLayoutRow.prefab │ │ ├── CustomLayoutRow.prefab.meta │ │ ├── DefaultViewRow.prefab │ │ ├── DefaultViewRow.prefab.meta │ │ ├── Dialogs.meta │ │ ├── Dialogs │ │ │ ├── TextDialog.prefab │ │ │ ├── TextDialog.prefab.meta │ │ │ ├── TextDialogButton.prefab │ │ │ └── TextDialogButton.prefab.meta │ │ ├── Fields.meta │ │ ├── Fields │ │ │ ├── ArcColorInputField.prefab │ │ │ ├── ArcColorInputField.prefab.meta │ │ │ ├── ArcTypeField.prefab │ │ │ ├── ArcTypeField.prefab.meta │ │ │ ├── ChartPathInput.prefab │ │ │ ├── ChartPathInput.prefab.meta │ │ │ ├── ColorInputField.prefab │ │ │ ├── ColorInputField.prefab.meta │ │ │ ├── ColorSelector.prefab │ │ │ ├── ColorSelector.prefab.meta │ │ │ ├── Dropdown.prefab │ │ │ ├── Dropdown.prefab.meta │ │ │ ├── FileInputField.prefab │ │ │ ├── FileInputField.prefab.meta │ │ │ ├── ImageInputField.prefab │ │ │ ├── ImageInputField.prefab.meta │ │ │ ├── InputField.prefab │ │ │ ├── InputField.prefab.meta │ │ │ ├── NumberInputField.prefab │ │ │ ├── NumberInputField.prefab.meta │ │ │ ├── OptionsPanel.prefab │ │ │ ├── OptionsPanel.prefab.meta │ │ │ ├── SliderRange.prefab │ │ │ ├── SliderRange.prefab.meta │ │ │ ├── TimingGroupField.prefab │ │ │ ├── TimingGroupField.prefab.meta │ │ │ ├── Toggle.prefab │ │ │ └── Toggle.prefab.meta │ │ ├── Grid.meta │ │ ├── Grid │ │ │ ├── EditorBeatline.prefab │ │ │ ├── EditorBeatline.prefab.meta │ │ │ ├── VerticalArea.prefab │ │ │ ├── VerticalArea.prefab.meta │ │ │ ├── VerticalLine.prefab │ │ │ └── VerticalLine.prefab.meta │ │ ├── Macros.meta │ │ ├── Macros │ │ │ ├── CheckboxMacroField.prefab │ │ │ ├── CheckboxMacroField.prefab.meta │ │ │ ├── DescriptionMacroField.prefab │ │ │ ├── DescriptionMacroField.prefab.meta │ │ │ ├── DropdownMacroField.prefab │ │ │ ├── DropdownMacroField.prefab.meta │ │ │ ├── MacroCell.prefab │ │ │ ├── MacroCell.prefab.meta │ │ │ ├── TextMacroField.prefab │ │ │ └── TextMacroField.prefab.meta │ │ ├── Navigation.meta │ │ ├── Navigation │ │ │ ├── KeybindHint.prefab │ │ │ ├── KeybindHint.prefab.meta │ │ │ ├── Keystroke.prefab │ │ │ └── Keystroke.prefab.meta │ │ ├── RawEditor.meta │ │ ├── RawEditor │ │ │ ├── LineHighlight.prefab │ │ │ ├── LineHighlight.prefab.meta │ │ │ ├── ScrollHighlight.prefab │ │ │ └── ScrollHighlight.prefab.meta │ │ ├── Separator.prefab │ │ ├── Separator.prefab.meta │ │ ├── Tables.meta │ │ ├── Tables │ │ │ ├── CameraRow.prefab │ │ │ ├── CameraRow.prefab.meta │ │ │ ├── ColorPickerRow.prefab │ │ │ ├── ColorPickerRow.prefab.meta │ │ │ ├── ColumnName.prefab │ │ │ ├── ColumnName.prefab.meta │ │ │ ├── GroupRow.prefab │ │ │ ├── GroupRow.prefab.meta │ │ │ ├── LastRunMacroRow.prefab │ │ │ ├── LastRunMacroRow.prefab.meta │ │ │ ├── ScenecontrolColumnName.prefab │ │ │ ├── ScenecontrolColumnName.prefab.meta │ │ │ ├── ScenecontrolField.prefab │ │ │ ├── ScenecontrolField.prefab.meta │ │ │ ├── ScenecontrolRow.prefab │ │ │ ├── ScenecontrolRow.prefab.meta │ │ │ ├── TimingGroupPickerRow.prefab │ │ │ ├── TimingGroupPickerRow.prefab.meta │ │ │ ├── TimingRow.prefab │ │ │ └── TimingRow.prefab.meta │ │ ├── Timeline.meta │ │ └── Timeline │ │ │ ├── Marker.prefab │ │ │ ├── Marker.prefab.meta │ │ │ ├── MarkerRange.prefab │ │ │ ├── MarkerRange.prefab.meta │ │ │ ├── Tick.prefab │ │ │ ├── Tick.prefab.meta │ │ │ ├── Timestamp.prefab │ │ │ └── Timestamp.prefab.meta │ ├── Gameplay.meta │ ├── Gameplay │ │ ├── ArcNoteParticle.prefab │ │ ├── ArcNoteParticle.prefab.meta │ │ ├── Beatline.prefab │ │ ├── Beatline.prefab.meta │ │ ├── FloatLine.prefab │ │ ├── FloatLine.prefab.meta │ │ ├── HoldNoteParticle.prefab │ │ ├── HoldNoteParticle.prefab.meta │ │ ├── LaneHit.prefab │ │ ├── LaneHit.prefab.meta │ │ ├── ScenecontrolCanvas.prefab │ │ ├── ScenecontrolCanvas.prefab.meta │ │ ├── ScenecontrolImage.prefab │ │ ├── ScenecontrolImage.prefab.meta │ │ ├── ScenecontrolNoteGroup.prefab │ │ ├── ScenecontrolNoteGroup.prefab.meta │ │ ├── ScenecontrolSprite.prefab │ │ ├── ScenecontrolSprite.prefab.meta │ │ ├── ScenecontrolText.prefab │ │ ├── ScenecontrolText.prefab.meta │ │ ├── TapParticle.prefab │ │ ├── TapParticle.prefab.meta │ │ ├── TapSfxParticle.prefab │ │ ├── TapSfxParticle.prefab.meta │ │ ├── TextParticle.prefab │ │ └── TextParticle.prefab.meta │ ├── Remote.meta │ ├── Remote │ │ ├── RemoteDeviceRow.prefab │ │ └── RemoteDeviceRow.prefab.meta │ ├── Selection.meta │ └── Selection │ │ ├── DialogButton.prefab │ │ ├── DialogButton.prefab.meta │ │ ├── DifficultyCell.prefab │ │ ├── DifficultyCell.prefab.meta │ │ ├── Enum.prefab │ │ ├── Enum.prefab.meta │ │ ├── GroupRow.prefab │ │ ├── GroupRow.prefab.meta │ │ ├── LevelRow.prefab │ │ ├── LevelRow.prefab.meta │ │ ├── LocaleCell.prefab │ │ ├── LocaleCell.prefab.meta │ │ ├── PackCell.prefab │ │ ├── PackCell.prefab.meta │ │ ├── PlayResultDisplay.prefab │ │ ├── PlayResultDisplay.prefab.meta │ │ ├── Toggle.prefab │ │ └── Toggle.prefab.meta ├── Resources.meta ├── Resources │ ├── DOTweenSettings.asset │ └── DOTweenSettings.asset.meta ├── Scenes.meta ├── Scenes │ ├── Boot.unity │ ├── Boot.unity.meta │ ├── Compose.unity │ ├── Compose.unity.meta │ ├── Gameplay.unity │ ├── Gameplay.unity.meta │ ├── Gameplay_Profiles.meta │ ├── Gameplay_Profiles │ │ ├── PostProcessing Profile.asset │ │ └── PostProcessing Profile.asset.meta │ ├── Greeting.unity │ ├── Greeting.unity.meta │ ├── Remote.unity │ ├── Remote.unity.meta │ ├── Result.unity │ ├── Result.unity.meta │ ├── Select.unity │ ├── Select.unity.meta │ ├── Storage.unity │ └── Storage.unity.meta ├── ScriptableObjects.meta ├── ScriptableObjects │ ├── Editor.meta │ ├── Editor │ │ ├── KeystrokeSprites.asset │ │ └── KeystrokeSprites.asset.meta │ ├── GameplayData.asset │ ├── GameplayData.asset.meta │ ├── Shutter.meta │ ├── Shutter │ │ ├── Alias.asset │ │ ├── Alias.asset.meta │ │ ├── Charter.asset │ │ ├── Charter.asset.meta │ │ ├── Composer.asset │ │ ├── Composer.asset.meta │ │ ├── Difficulty.asset │ │ ├── Difficulty.asset.meta │ │ ├── DifficultyColor.asset │ │ ├── DifficultyColor.asset.meta │ │ ├── Illustrator.asset │ │ ├── Illustrator.asset.meta │ │ ├── JacketArt.asset │ │ ├── JacketArt.asset.meta │ │ ├── PlayCount.asset │ │ ├── PlayCount.asset.meta │ │ ├── RetryCount.asset │ │ ├── RetryCount.asset.meta │ │ ├── Title.asset │ │ └── Title.asset.meta │ ├── SkinOptions.meta │ ├── SkinOptions │ │ ├── Accent.meta │ │ ├── Accent │ │ │ ├── AccentColorless.asset │ │ │ ├── AccentColorless.asset.meta │ │ │ ├── AccentConflict.asset │ │ │ ├── AccentConflict.asset.meta │ │ │ ├── AccentDynamix.asset │ │ │ ├── AccentDynamix.asset.meta │ │ │ ├── AccentLight.asset │ │ │ └── AccentLight.asset.meta │ │ ├── AlignmentColorless.asset │ │ ├── AlignmentColorless.asset.meta │ │ ├── AlignmentConflict.asset │ │ ├── AlignmentConflict.asset.meta │ │ ├── AlignmentLight.asset │ │ ├── AlignmentLight.asset.meta │ │ ├── Note.meta │ │ ├── Note │ │ │ ├── NoteConflict.asset │ │ │ ├── NoteConflict.asset.meta │ │ │ ├── NoteJoyconConflict.asset │ │ │ ├── NoteJoyconConflict.asset.meta │ │ │ ├── NoteJoyconLight.asset │ │ │ ├── NoteJoyconLight.asset.meta │ │ │ ├── NoteLight.asset │ │ │ ├── NoteLight.asset.meta │ │ │ ├── NoteTouchConflict.asset │ │ │ ├── NoteTouchConflict.asset.meta │ │ │ ├── NoteTouchLight.asset │ │ │ └── NoteTouchLight.asset.meta │ │ ├── Particle.meta │ │ ├── Particle │ │ │ ├── ParticleColorless.asset │ │ │ ├── ParticleColorless.asset.meta │ │ │ ├── ParticleConflict.asset │ │ │ ├── ParticleConflict.asset.meta │ │ │ ├── ParticleLight.asset │ │ │ ├── ParticleLight.asset.meta │ │ │ ├── ParticleMiraiConflict.asset │ │ │ ├── ParticleMiraiConflict.asset.meta │ │ │ ├── ParticleMiraiLight.asset │ │ │ └── ParticleMiraiLight.asset.meta │ │ ├── SingleLine.meta │ │ ├── SingleLine │ │ │ ├── SingleLineConflict.asset │ │ │ ├── SingleLineConflict.asset.meta │ │ │ ├── SingleLineLight.asset │ │ │ ├── SingleLineLight.asset.meta │ │ │ ├── SingleLineNeo.asset │ │ │ ├── SingleLineNeo.asset.meta │ │ │ ├── SingleLineNone.asset │ │ │ └── SingleLineNone.asset.meta │ │ ├── Track.meta │ │ └── Track │ │ │ ├── TrackArcana.asset │ │ │ ├── TrackArcana.asset.meta │ │ │ ├── TrackBlack.asset │ │ │ ├── TrackBlack.asset.meta │ │ │ ├── TrackColorless.asset │ │ │ ├── TrackColorless.asset.meta │ │ │ ├── TrackConflict.asset │ │ │ ├── TrackConflict.asset.meta │ │ │ ├── TrackConflictVs.asset │ │ │ ├── TrackConflictVs.asset.meta │ │ │ ├── TrackFinale.asset │ │ │ ├── TrackFinale.asset.meta │ │ │ ├── TrackLight.asset │ │ │ ├── TrackLight.asset.meta │ │ │ ├── TrackNijuusei.asset │ │ │ ├── TrackNijuusei.asset.meta │ │ │ ├── TrackPentiment.asset │ │ │ ├── TrackPentiment.asset.meta │ │ │ ├── TrackRei.asset │ │ │ ├── TrackRei.asset.meta │ │ │ ├── TrackTempestissimo.asset │ │ │ └── TrackTempestissimo.asset.meta │ ├── StorageData.asset │ ├── StorageData.asset.meta │ ├── Themes.meta │ └── Themes │ │ ├── DefaultThemeGroup.asset │ │ ├── DefaultThemeGroup.asset.meta │ │ ├── Result.meta │ │ ├── Result │ │ ├── BackgroundArrow.asset │ │ ├── BackgroundArrow.asset.meta │ │ ├── Frames.asset │ │ ├── Frames.asset.meta │ │ ├── FramesDarker.asset │ │ ├── FramesDarker.asset.meta │ │ ├── TextOnBackground.asset │ │ ├── TextOnBackground.asset.meta │ │ ├── Triangle.asset │ │ └── Triangle.asset.meta │ │ ├── SceneTransition.meta │ │ ├── SceneTransition │ │ ├── BackgroundFrame.asset │ │ ├── BackgroundFrame.asset.meta │ │ ├── Corner1.asset │ │ ├── Corner1.asset.meta │ │ ├── Corner2.asset │ │ ├── Corner2.asset.meta │ │ ├── Corner3.asset │ │ ├── Corner3.asset.meta │ │ ├── Grid.asset │ │ ├── Grid.asset.meta │ │ ├── InfoFrame.asset │ │ ├── InfoFrame.asset.meta │ │ ├── InfoTitleText.asset │ │ ├── InfoTitleText.asset.meta │ │ ├── SongTitleFrame.asset │ │ ├── SongTitleFrame.asset.meta │ │ ├── TriangleTile1.asset │ │ ├── TriangleTile1.asset.meta │ │ ├── TriangleTile2.asset │ │ └── TriangleTile2.asset.meta │ │ ├── Select.meta │ │ └── Select │ │ ├── GroupCell.asset │ │ └── GroupCell.asset.meta ├── Scripts.meta ├── Scripts │ ├── ChartFormat.meta │ ├── ChartFormat │ │ ├── Aff.meta │ │ ├── Aff │ │ │ ├── AffChartFileWriter.cs │ │ │ ├── AffChartFileWriter.cs.meta │ │ │ ├── AffChartReader.File.cs │ │ │ ├── AffChartReader.File.cs.meta │ │ │ ├── AffChartReader.Line.cs │ │ │ └── AffChartReader.Line.cs.meta │ │ ├── ArcCreate.ChartFormat.asmdef │ │ ├── ArcCreate.ChartFormat.asmdef.meta │ │ ├── ChartFileWriterFactory.cs │ │ ├── ChartFileWriterFactory.cs.meta │ │ ├── ChartReader.cs │ │ ├── ChartReader.cs.meta │ │ ├── ChartReaderFactory.cs │ │ ├── ChartReaderFactory.cs.meta │ │ ├── ChartSerializer.cs │ │ ├── ChartSerializer.cs.meta │ │ ├── Errors.meta │ │ ├── Errors │ │ │ ├── ChartError.cs │ │ │ ├── ChartError.cs.meta │ │ │ ├── ChartFileErrors.cs │ │ │ └── ChartFileErrors.cs.meta │ │ ├── FileAccess.meta │ │ ├── FileAccess │ │ │ ├── IFileAccessWrapper.cs │ │ │ ├── IFileAccessWrapper.cs.meta │ │ │ ├── PhysicalFileAccess.cs │ │ │ ├── PhysicalFileAccess.cs.meta │ │ │ ├── VirtualFileAccess.cs │ │ │ └── VirtualFileAccess.cs.meta │ │ ├── IChartFileWriter.cs │ │ ├── IChartFileWriter.cs.meta │ │ ├── Types.meta │ │ └── Types │ │ │ ├── JudgementMap.cs │ │ │ ├── JudgementMap.cs.meta │ │ │ ├── RawArc.cs │ │ │ ├── RawArc.cs.meta │ │ │ ├── RawArcTap.cs │ │ │ ├── RawArcTap.cs.meta │ │ │ ├── RawCamera.cs │ │ │ ├── RawCamera.cs.meta │ │ │ ├── RawEvent.cs │ │ │ ├── RawEvent.cs.meta │ │ │ ├── RawEventType.cs │ │ │ ├── RawEventType.cs.meta │ │ │ ├── RawFragment.cs │ │ │ ├── RawFragment.cs.meta │ │ │ ├── RawHold.cs │ │ │ ├── RawHold.cs.meta │ │ │ ├── RawInclude.cs │ │ │ ├── RawInclude.cs.meta │ │ │ ├── RawSceneControl.cs │ │ │ ├── RawSceneControl.cs.meta │ │ │ ├── RawTap.cs │ │ │ ├── RawTap.cs.meta │ │ │ ├── RawTiming.cs │ │ │ ├── RawTiming.cs.meta │ │ │ ├── RawTimingGroup.cs │ │ │ ├── RawTimingGroup.cs.meta │ │ │ ├── SideOverride.cs │ │ │ └── SideOverride.cs.meta │ ├── Compose.meta │ ├── Compose │ │ ├── ArcCreate.Compose.asmdef │ │ ├── ArcCreate.Compose.asmdef.meta │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── CreditsDialog.cs │ │ │ ├── CreditsDialog.cs.meta │ │ │ ├── Dialog.cs │ │ │ ├── Dialog.cs.meta │ │ │ ├── Fields.meta │ │ │ ├── Fields │ │ │ │ ├── ArcColorInputField.cs │ │ │ │ ├── ArcColorInputField.cs.meta │ │ │ │ ├── ArcColorSelector.cs │ │ │ │ ├── ArcColorSelector.cs.meta │ │ │ │ ├── ArcTypeSelector.cs │ │ │ │ ├── ArcTypeSelector.cs.meta │ │ │ │ ├── ChartFilePathInputField.cs │ │ │ │ ├── ChartFilePathInputField.cs.meta │ │ │ │ ├── ColorInputField.cs │ │ │ │ ├── ColorInputField.cs.meta │ │ │ │ ├── FilePath.cs │ │ │ │ ├── FilePath.cs.meta │ │ │ │ ├── FileSelectField.cs │ │ │ │ ├── FileSelectField.cs.meta │ │ │ │ ├── ImageFileSelectField.cs │ │ │ │ ├── ImageFileSelectField.cs.meta │ │ │ │ ├── NumberInputField.cs │ │ │ │ ├── NumberInputField.cs.meta │ │ │ │ ├── Option.cs │ │ │ │ ├── Option.cs.meta │ │ │ │ ├── OptionsPanel.cs │ │ │ │ ├── OptionsPanel.cs.meta │ │ │ │ ├── SliderRange.cs │ │ │ │ ├── SliderRange.cs.meta │ │ │ │ ├── TimingGroupField.cs │ │ │ │ └── TimingGroupField.cs.meta │ │ │ ├── FullScreenToggle.cs │ │ │ ├── FullScreenToggle.cs.meta │ │ │ ├── GameplayViewport.cs │ │ │ ├── GameplayViewport.cs.meta │ │ │ ├── IItemNameDialogConsumer.cs │ │ │ ├── IItemNameDialogConsumer.cs.meta │ │ │ ├── OnFullscreen.cs │ │ │ ├── OnFullscreen.cs.meta │ │ │ ├── PanelLayoutManager.cs │ │ │ ├── PanelLayoutManager.cs.meta │ │ │ ├── PanelLayoutRow.cs │ │ │ ├── PanelLayoutRow.cs.meta │ │ │ ├── RebuildLayoutOnEnable.cs │ │ │ ├── RebuildLayoutOnEnable.cs.meta │ │ │ ├── SaveItemNameDialog.cs │ │ │ ├── SaveItemNameDialog.cs.meta │ │ │ ├── Scroll.meta │ │ │ ├── Scroll │ │ │ │ ├── ScrollDetector.cs │ │ │ │ ├── ScrollDetector.cs.meta │ │ │ │ ├── ScrollReceiver.cs │ │ │ │ ├── ScrollReceiver.cs.meta │ │ │ │ ├── ScrollSensitivity.cs │ │ │ │ ├── ScrollSensitivity.cs.meta │ │ │ │ ├── ScrollSensitivityInputField.cs │ │ │ │ └── ScrollSensitivityInputField.cs.meta │ │ │ ├── SettingFields.cs │ │ │ ├── SettingFields.cs.meta │ │ │ ├── ShutterPreview.cs │ │ │ ├── ShutterPreview.cs.meta │ │ │ ├── Table.meta │ │ │ ├── Table │ │ │ │ ├── Row.cs │ │ │ │ ├── Row.cs.meta │ │ │ │ ├── Table.cs │ │ │ │ └── Table.cs.meta │ │ │ ├── VerticalSplitter.cs │ │ │ ├── VerticalSplitter.cs.meta │ │ │ ├── Window.meta │ │ │ └── Window │ │ │ │ ├── Window.cs │ │ │ │ ├── Window.cs.meta │ │ │ │ ├── WindowDragHandler.cs │ │ │ │ └── WindowDragHandler.cs.meta │ │ ├── ComposeException.cs │ │ ├── ComposeException.cs.meta │ │ ├── ComposeManager.cs │ │ ├── ComposeManager.cs.meta │ │ ├── Cursor.meta │ │ ├── Cursor │ │ │ ├── CursorService.cs │ │ │ ├── CursorService.cs.meta │ │ │ ├── ICursorService.cs │ │ │ └── ICursorService.cs.meta │ │ ├── Editing.meta │ │ ├── Editing │ │ │ ├── Clipboard.cs │ │ │ ├── Clipboard.cs.meta │ │ │ ├── Delete.cs │ │ │ ├── Delete.cs.meta │ │ │ ├── Dragging.cs │ │ │ ├── Dragging.cs.meta │ │ │ ├── Measurer.cs │ │ │ ├── Measurer.cs.meta │ │ │ ├── Mirror.cs │ │ │ ├── Mirror.cs.meta │ │ │ ├── NoteCreation.cs │ │ │ ├── NoteCreation.cs.meta │ │ │ ├── NoteModifyTarget.cs │ │ │ ├── NoteModifyTarget.cs.meta │ │ │ ├── NotePallete.cs │ │ │ └── NotePallete.cs.meta │ │ ├── EventsEditor.meta │ │ ├── EventsEditor │ │ │ ├── Camera.meta │ │ │ ├── Camera │ │ │ │ ├── CameraRow.cs │ │ │ │ ├── CameraRow.cs.meta │ │ │ │ ├── CameraTable.cs │ │ │ │ ├── CameraTable.cs.meta │ │ │ │ ├── CameraViewProperty.cs │ │ │ │ ├── CameraViewProperty.cs.meta │ │ │ │ ├── CameraViewRow.cs │ │ │ │ ├── CameraViewRow.cs.meta │ │ │ │ ├── CameraViews.cs │ │ │ │ └── CameraViews.cs.meta │ │ │ ├── EventsEditor.cs │ │ │ ├── EventsEditor.cs.meta │ │ │ ├── Group.meta │ │ │ ├── Group │ │ │ │ ├── GroupRow.cs │ │ │ │ ├── GroupRow.cs.meta │ │ │ │ ├── GroupTable.cs │ │ │ │ └── GroupTable.cs.meta │ │ │ ├── Scenecontrol.meta │ │ │ ├── Scenecontrol │ │ │ │ ├── CommandTypes.meta │ │ │ │ ├── CommandTypes │ │ │ │ │ ├── EnwidenCameraType.cs │ │ │ │ │ ├── EnwidenCameraType.cs.meta │ │ │ │ │ ├── EnwidenLanesType.cs │ │ │ │ │ ├── EnwidenLanesType.cs.meta │ │ │ │ │ ├── GroupAlphaType.cs │ │ │ │ │ ├── GroupAlphaType.cs.meta │ │ │ │ │ ├── HideGroupType.cs │ │ │ │ │ ├── HideGroupType.cs.meta │ │ │ │ │ ├── IBuiltInScenecontrolType.cs │ │ │ │ │ ├── IBuiltInScenecontrolType.cs.meta │ │ │ │ │ ├── LuaScenecontrol.cs │ │ │ │ │ ├── LuaScenecontrol.cs.meta │ │ │ │ │ ├── LuaScenecontrolType.cs │ │ │ │ │ ├── LuaScenecontrolType.cs.meta │ │ │ │ │ ├── TrackDisplayType.cs │ │ │ │ │ └── TrackDisplayType.cs.meta │ │ │ │ ├── IScenecontrolType.cs │ │ │ │ ├── IScenecontrolType.cs.meta │ │ │ │ ├── ParametersRow.cs │ │ │ │ ├── ParametersRow.cs.meta │ │ │ │ ├── ScenecontrolLuaEnvironment.cs │ │ │ │ ├── ScenecontrolLuaEnvironment.cs.meta │ │ │ │ ├── ScenecontrolRow.cs │ │ │ │ ├── ScenecontrolRow.cs.meta │ │ │ │ ├── ScenecontrolTable.cs │ │ │ │ └── ScenecontrolTable.cs.meta │ │ │ ├── Timing.meta │ │ │ └── Timing │ │ │ │ ├── TimingRow.cs │ │ │ │ ├── TimingRow.cs.meta │ │ │ │ ├── TimingTable.cs │ │ │ │ └── TimingTable.cs.meta │ │ ├── Grid.meta │ │ ├── Grid │ │ │ ├── GridService.cs │ │ │ ├── GridService.cs.meta │ │ │ ├── GridSettings.cs │ │ │ ├── GridSettings.cs.meta │ │ │ ├── IGridService.cs │ │ │ ├── IGridService.cs.meta │ │ │ ├── MeshBuilder.cs │ │ │ ├── MeshBuilder.cs.meta │ │ │ ├── Timing.meta │ │ │ ├── Timing │ │ │ │ ├── BeatlineColorSetting.cs │ │ │ │ ├── BeatlineColorSetting.cs.meta │ │ │ │ ├── EditorBeatlineGenerator.cs │ │ │ │ ├── EditorBeatlineGenerator.cs.meta │ │ │ │ ├── TimingGrid.cs │ │ │ │ └── TimingGrid.cs.meta │ │ │ ├── Vertical.meta │ │ │ └── Vertical │ │ │ │ ├── Area.cs │ │ │ │ ├── Area.cs.meta │ │ │ │ ├── DefaultVerticalGridSettings.cs │ │ │ │ ├── DefaultVerticalGridSettings.cs.meta │ │ │ │ ├── IVerticalGridSettings.cs │ │ │ │ ├── IVerticalGridSettings.cs.meta │ │ │ │ ├── Line.cs │ │ │ │ ├── Line.cs.meta │ │ │ │ ├── LuaVerticalGridSettings.cs │ │ │ │ ├── LuaVerticalGridSettings.cs.meta │ │ │ │ ├── VerticalGrid.cs │ │ │ │ ├── VerticalGrid.cs.meta │ │ │ │ ├── VerticalGridHelper.cs │ │ │ │ └── VerticalGridHelper.cs.meta │ │ ├── History.meta │ │ ├── History │ │ │ ├── Commands.meta │ │ │ ├── Commands │ │ │ │ ├── AddTimingGroupCommand.cs │ │ │ │ ├── AddTimingGroupCommand.cs.meta │ │ │ │ ├── CombinedCommand.cs │ │ │ │ ├── CombinedCommand.cs.meta │ │ │ │ ├── EditTimingGroupProperitesCommand.cs │ │ │ │ ├── EditTimingGroupProperitesCommand.cs.meta │ │ │ │ ├── EventCommand.cs │ │ │ │ ├── EventCommand.cs.meta │ │ │ │ ├── RemoveTimingGroupCommand.cs │ │ │ │ └── RemoveTimingGroupCommand.cs.meta │ │ │ ├── HistoryService.cs │ │ │ ├── HistoryService.cs.meta │ │ │ ├── ICommand.cs │ │ │ ├── ICommand.cs.meta │ │ │ ├── IHistoryService.cs │ │ │ └── IHistoryService.cs.meta │ │ ├── Macros.meta │ │ ├── Macros │ │ │ ├── API.meta │ │ │ ├── API │ │ │ │ ├── Constraints.meta │ │ │ │ ├── Constraints │ │ │ │ │ ├── EventSelectionConstraint.cs │ │ │ │ │ ├── EventSelectionConstraint.cs.meta │ │ │ │ │ ├── FieldConstraint.cs │ │ │ │ │ └── FieldConstraint.cs.meta │ │ │ │ ├── Event.cs │ │ │ │ ├── Event.cs.meta │ │ │ │ ├── InputMethods.meta │ │ │ │ ├── InputMethods │ │ │ │ │ ├── DialogField.cs │ │ │ │ │ ├── DialogField.cs.meta │ │ │ │ │ ├── DialogInput.cs │ │ │ │ │ ├── DialogInput.cs.meta │ │ │ │ │ ├── EventSelectionInput.cs │ │ │ │ │ ├── EventSelectionInput.cs.meta │ │ │ │ │ ├── EventSelectionRequest.cs │ │ │ │ │ ├── EventSelectionRequest.cs.meta │ │ │ │ │ ├── IRequest.cs │ │ │ │ │ ├── IRequest.cs.meta │ │ │ │ │ ├── MacroRequest.cs │ │ │ │ │ ├── MacroRequest.cs.meta │ │ │ │ │ ├── TrackInput.cs │ │ │ │ │ └── TrackInput.cs.meta │ │ │ │ ├── MacroBuilder.cs │ │ │ │ ├── MacroBuilder.cs.meta │ │ │ │ ├── MacroContext.cs │ │ │ │ ├── MacroContext.cs.meta │ │ │ │ ├── Persistent.cs │ │ │ │ ├── Persistent.cs.meta │ │ │ │ ├── Types.meta │ │ │ │ └── Types │ │ │ │ │ ├── Command.cs │ │ │ │ │ ├── Command.cs.meta │ │ │ │ │ ├── LuaArc.cs │ │ │ │ │ ├── LuaArc.cs.meta │ │ │ │ │ ├── LuaArcTap.cs │ │ │ │ │ ├── LuaArcTap.cs.meta │ │ │ │ │ ├── LuaCamera.cs │ │ │ │ │ ├── LuaCamera.cs.meta │ │ │ │ │ ├── LuaChartCommand.cs │ │ │ │ │ ├── LuaChartCommand.cs.meta │ │ │ │ │ ├── LuaChartEvent.cs │ │ │ │ │ ├── LuaChartEvent.cs.meta │ │ │ │ │ ├── LuaHold.cs │ │ │ │ │ ├── LuaHold.cs.meta │ │ │ │ │ ├── LuaScenecontrol.cs │ │ │ │ │ ├── LuaScenecontrol.cs.meta │ │ │ │ │ ├── LuaTap.cs │ │ │ │ │ ├── LuaTap.cs.meta │ │ │ │ │ ├── LuaTiming.cs │ │ │ │ │ ├── LuaTiming.cs.meta │ │ │ │ │ ├── LuaTimingGroup.cs │ │ │ │ │ └── LuaTimingGroup.cs.meta │ │ │ ├── IMacroService.cs │ │ │ ├── IMacroService.cs.meta │ │ │ ├── MacroDefinition.cs │ │ │ ├── MacroDefinition.cs.meta │ │ │ ├── MacroLuaEnvironment.cs │ │ │ ├── MacroLuaEnvironment.cs.meta │ │ │ ├── MacroService.cs │ │ │ ├── MacroService.cs.meta │ │ │ ├── Select.meta │ │ │ ├── Select │ │ │ │ ├── LastRunMacroRow.cs │ │ │ │ ├── LastRunMacroRow.cs.meta │ │ │ │ ├── LastRunMacroTable.cs │ │ │ │ ├── LastRunMacroTable.cs.meta │ │ │ │ ├── MacroCell.cs │ │ │ │ ├── MacroCell.cs.meta │ │ │ │ ├── MacroPicker.cs │ │ │ │ └── MacroPicker.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── BaseField.cs │ │ │ │ ├── BaseField.cs.meta │ │ │ │ ├── CheckboxMacroField.cs │ │ │ │ ├── CheckboxMacroField.cs.meta │ │ │ │ ├── DescriptionMacroField.cs │ │ │ │ ├── DescriptionMacroField.cs.meta │ │ │ │ ├── DropdownMacroField.cs │ │ │ │ ├── DropdownMacroField.cs.meta │ │ │ │ ├── MacroDialog.cs │ │ │ │ ├── MacroDialog.cs.meta │ │ │ │ ├── TextMacroField.cs │ │ │ │ └── TextMacroField.cs.meta │ │ ├── Navigation.meta │ │ ├── Navigation │ │ │ ├── Actions.meta │ │ │ ├── Actions │ │ │ │ ├── CompositeAction.cs │ │ │ │ ├── CompositeAction.cs.meta │ │ │ │ ├── EditorAction.cs │ │ │ │ ├── EditorAction.cs.meta │ │ │ │ ├── EditorScope.cs │ │ │ │ ├── EditorScope.cs.meta │ │ │ │ ├── IAction.cs │ │ │ │ ├── IAction.cs.meta │ │ │ │ ├── MacroAction.cs │ │ │ │ ├── MacroAction.cs.meta │ │ │ │ ├── SubAction.cs │ │ │ │ └── SubAction.cs.meta │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ │ ├── ContextRequirementAttribute.cs │ │ │ │ ├── ContextRequirementAttribute.cs.meta │ │ │ │ ├── EditorActionAttribute.cs │ │ │ │ ├── EditorActionAttribute.cs.meta │ │ │ │ ├── EditorScopeAttribute.cs │ │ │ │ ├── EditorScopeAttribute.cs.meta │ │ │ │ ├── IContextRequirement.cs │ │ │ │ ├── IContextRequirement.cs.meta │ │ │ │ ├── KeybindHintAttribute.cs │ │ │ │ ├── KeybindHintAttribute.cs.meta │ │ │ │ ├── SubActionAttribute.cs │ │ │ │ ├── SubActionAttribute.cs.meta │ │ │ │ ├── WhitelistScopesAttribute.cs │ │ │ │ └── WhitelistScopesAttribute.cs.meta │ │ │ ├── CommonRequirements.meta │ │ │ ├── CommonRequirements │ │ │ │ ├── RequireGameplayLoadedAttribute.cs │ │ │ │ └── RequireGameplayLoadedAttribute.cs.meta │ │ │ ├── ContextMenu.meta │ │ │ ├── ContextMenu │ │ │ │ ├── ContextMenu.cs │ │ │ │ ├── ContextMenu.cs.meta │ │ │ │ ├── ContextMenuButton.cs │ │ │ │ ├── ContextMenuButton.cs.meta │ │ │ │ ├── ContextMenuCategory.cs │ │ │ │ └── ContextMenuCategory.cs.meta │ │ │ ├── INavigationService.cs │ │ │ ├── INavigationService.cs.meta │ │ │ ├── Keybind.meta │ │ │ ├── Keybind │ │ │ │ ├── Keybind.cs │ │ │ │ ├── Keybind.cs.meta │ │ │ │ ├── KeybindState.cs │ │ │ │ ├── KeybindState.cs.meta │ │ │ │ ├── KeybindUtils.Keys.cs │ │ │ │ ├── KeybindUtils.Keys.cs.meta │ │ │ │ ├── KeybindUtils.Parse.cs │ │ │ │ ├── KeybindUtils.Parse.cs.meta │ │ │ │ ├── Keystroke.cs │ │ │ │ └── Keystroke.cs.meta │ │ │ ├── KeybindDisplay.meta │ │ │ ├── KeybindDisplay │ │ │ │ ├── KeybindDisplay.cs │ │ │ │ ├── KeybindDisplay.cs.meta │ │ │ │ ├── KeybindHintList.cs │ │ │ │ ├── KeybindHintList.cs.meta │ │ │ │ ├── KeystrokeDisplay.cs │ │ │ │ ├── KeystrokeDisplay.cs.meta │ │ │ │ ├── KeystrokeSprites.cs │ │ │ │ └── KeystrokeSprites.cs.meta │ │ │ ├── KeybindPriorities.cs │ │ │ ├── KeybindPriorities.cs.meta │ │ │ ├── NavigationService.cs │ │ │ └── NavigationService.cs.meta │ │ ├── Popups.meta │ │ ├── Popups │ │ │ ├── Hint.meta │ │ │ ├── Hint │ │ │ │ ├── Hint.cs │ │ │ │ └── Hint.cs.meta │ │ │ ├── IPopupsService.cs │ │ │ ├── IPopupsService.cs.meta │ │ │ ├── Notification.meta │ │ │ ├── Notification │ │ │ │ ├── Notification.cs │ │ │ │ └── Notification.cs.meta │ │ │ ├── Picker.meta │ │ │ ├── Picker │ │ │ │ ├── ArcColorPickerRow.cs │ │ │ │ ├── ArcColorPickerRow.cs.meta │ │ │ │ ├── ArcColorPickerWindow.cs │ │ │ │ ├── ArcColorPickerWindow.cs.meta │ │ │ │ ├── ArcTypePickerWindow.cs │ │ │ │ ├── ArcTypePickerWindow.cs.meta │ │ │ │ ├── ColorPickerWindow.cs │ │ │ │ ├── ColorPickerWindow.cs.meta │ │ │ │ ├── ColorSetting.cs │ │ │ │ ├── ColorSetting.cs.meta │ │ │ │ ├── TimingGroupPicker.cs │ │ │ │ ├── TimingGroupPicker.cs.meta │ │ │ │ ├── TimingGroupPickerRow.cs │ │ │ │ └── TimingGroupPickerRow.cs.meta │ │ │ ├── PopupsService.cs │ │ │ ├── PopupsService.cs.meta │ │ │ ├── TextDialog.meta │ │ │ └── TextDialog │ │ │ │ ├── ButtonSetting.cs │ │ │ │ ├── ButtonSetting.cs.meta │ │ │ │ ├── TextDialog.cs │ │ │ │ ├── TextDialog.cs.meta │ │ │ │ ├── TextDialogButton.cs │ │ │ │ └── TextDialogButton.cs.meta │ │ ├── Project.meta │ │ ├── Project │ │ │ ├── AutosaveHelper.cs │ │ │ ├── AutosaveHelper.cs.meta │ │ │ ├── BackupHelper.cs │ │ │ ├── BackupHelper.cs.meta │ │ │ ├── Export.meta │ │ │ ├── Export │ │ │ │ ├── ExportUI.cs │ │ │ │ ├── ExportUI.cs.meta │ │ │ │ ├── Exporter.cs │ │ │ │ └── Exporter.cs.meta │ │ │ ├── IProjectService.cs │ │ │ ├── IProjectService.cs.meta │ │ │ ├── NewProjectInfo.cs │ │ │ ├── NewProjectInfo.cs.meta │ │ │ ├── ProjectService.cs │ │ │ ├── ProjectService.cs.meta │ │ │ ├── RawEditor.meta │ │ │ ├── RawEditor │ │ │ │ ├── Analysis.meta │ │ │ │ ├── Analysis │ │ │ │ │ ├── ChartAnalyzer.cs │ │ │ │ │ ├── ChartAnalyzer.cs.meta │ │ │ │ │ ├── ChartFault.cs │ │ │ │ │ ├── ChartFault.cs.meta │ │ │ │ │ ├── RawEditorFileAccess.cs │ │ │ │ │ └── RawEditorFileAccess.cs.meta │ │ │ │ ├── Component.meta │ │ │ │ ├── Component │ │ │ │ │ ├── FaultNavigation.cs │ │ │ │ │ ├── FaultNavigation.cs.meta │ │ │ │ │ ├── LineHighlightComponent.cs │ │ │ │ │ ├── LineHighlightComponent.cs.meta │ │ │ │ │ ├── ScrollHighlightComponent.cs │ │ │ │ │ └── ScrollHighlightComponent.cs.meta │ │ │ │ ├── RawEditor.cs │ │ │ │ └── RawEditor.cs.meta │ │ │ ├── RawEventsBuilder.cs │ │ │ ├── RawEventsBuilder.cs.meta │ │ │ ├── Startup.meta │ │ │ ├── Startup │ │ │ │ ├── RecentProjectButton.cs │ │ │ │ ├── RecentProjectButton.cs.meta │ │ │ │ ├── Startup.cs │ │ │ │ └── Startup.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── ChartColorsUI.cs │ │ │ │ ├── ChartColorsUI.cs.meta │ │ │ │ ├── ChartFilesUI.cs │ │ │ │ ├── ChartFilesUI.cs.meta │ │ │ │ ├── ChartInformationUI.cs │ │ │ │ ├── ChartInformationUI.cs.meta │ │ │ │ ├── ChartMetadataUI.cs │ │ │ │ ├── ChartMetadataUI.cs.meta │ │ │ │ ├── ChartPicker.cs │ │ │ │ ├── ChartPicker.cs.meta │ │ │ │ ├── ChartPickerRow.cs │ │ │ │ ├── ChartPickerRow.cs.meta │ │ │ │ ├── ChartSkinUI.cs │ │ │ │ ├── ChartSkinUI.cs.meta │ │ │ │ ├── NewChartDialog.cs │ │ │ │ ├── NewChartDialog.cs.meta │ │ │ │ ├── NewProjectDialog.cs │ │ │ │ └── NewProjectDialog.cs.meta │ │ ├── Remote.meta │ │ ├── Remote │ │ │ ├── RemoteDataSender.cs │ │ │ ├── RemoteDataSender.cs.meta │ │ │ ├── RemoteService.cs │ │ │ └── RemoteService.cs.meta │ │ ├── Rendering.meta │ │ ├── Rendering │ │ │ ├── AudioRenderer.cs │ │ │ ├── AudioRenderer.cs.meta │ │ │ ├── CrfField.cs │ │ │ ├── CrfField.cs.meta │ │ │ ├── FrameRenderer.cs │ │ │ ├── FrameRenderer.cs.meta │ │ │ ├── RenderSetting.cs │ │ │ ├── RenderSetting.cs.meta │ │ │ ├── VideoRenderService.cs │ │ │ └── VideoRenderService.cs.meta │ │ ├── Selection.meta │ │ ├── Selection │ │ │ ├── ISelectionService.cs │ │ │ ├── ISelectionService.cs.meta │ │ │ ├── InspectorMenu.cs │ │ │ ├── InspectorMenu.cs.meta │ │ │ ├── NoteRaycastHit.cs │ │ │ ├── NoteRaycastHit.cs.meta │ │ │ ├── NoteRaycaster.cs │ │ │ ├── NoteRaycaster.cs.meta │ │ │ ├── SelectionService.cs │ │ │ └── SelectionService.cs.meta │ │ ├── Services.cs │ │ ├── Services.cs.meta │ │ ├── Timeline.meta │ │ ├── Timeline │ │ │ ├── Annotations.meta │ │ │ ├── Annotations │ │ │ │ ├── Marker.cs │ │ │ │ ├── Marker.cs.meta │ │ │ │ ├── MarkerRange.cs │ │ │ │ ├── MarkerRange.cs.meta │ │ │ │ ├── Tick.cs │ │ │ │ ├── Tick.cs.meta │ │ │ │ ├── TicksDisplay.cs │ │ │ │ ├── TicksDisplay.cs.meta │ │ │ │ ├── TimestampDisplay.cs │ │ │ │ ├── TimestampDisplay.cs.meta │ │ │ │ ├── TimestampMarker.cs │ │ │ │ └── TimestampMarker.cs.meta │ │ │ ├── ITimelineService.cs │ │ │ ├── ITimelineService.cs.meta │ │ │ ├── TimelineService.cs │ │ │ ├── TimelineService.cs.meta │ │ │ ├── WaveformDisplay.cs │ │ │ └── WaveformDisplay.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ │ ├── CreateNoteMode.cs │ │ │ ├── CreateNoteMode.cs.meta │ │ │ ├── EasterEggs.cs │ │ │ ├── EasterEggs.cs.meta │ │ │ ├── Values.cs │ │ │ └── Values.cs.meta │ ├── Data.meta │ ├── Data │ │ ├── ArcCreate.Data.asmdef │ │ ├── ArcCreate.Data.asmdef.meta │ │ ├── ChartSettings.cs │ │ ├── ChartSettings.cs.meta │ │ ├── ClearResult.cs │ │ ├── ClearResult.cs.meta │ │ ├── ColorSettings.cs │ │ ├── ColorSettings.cs.meta │ │ ├── Constants.cs │ │ ├── Constants.cs.meta │ │ ├── EditorProjectSettings.cs │ │ ├── EditorProjectSettings.cs.meta │ │ ├── PlayResult.cs │ │ ├── PlayResult.cs.meta │ │ ├── ProjectSettings.cs │ │ ├── ProjectSettings.cs.meta │ │ ├── SkinSettings.cs │ │ ├── SkinSettings.cs.meta │ │ ├── Timestamp.cs │ │ └── Timestamp.cs.meta │ ├── Gameplay.meta │ ├── Gameplay │ │ ├── ArcCreate.Gameplay.asmdef │ │ ├── ArcCreate.Gameplay.asmdef.meta │ │ ├── Audio.meta │ │ ├── Audio │ │ │ ├── AudioService.cs │ │ │ ├── AudioService.cs.meta │ │ │ ├── IAudioService.cs │ │ │ ├── IAudioService.cs.meta │ │ │ ├── Pausing.meta │ │ │ ├── Pausing │ │ │ │ ├── DoubleClickPauseHandler.cs │ │ │ │ ├── DoubleClickPauseHandler.cs.meta │ │ │ │ ├── HoldPauseHandler.cs │ │ │ │ ├── HoldPauseHandler.cs.meta │ │ │ │ ├── IPauseButtonHandler.cs │ │ │ │ ├── IPauseButtonHandler.cs.meta │ │ │ │ ├── NoOpPauseHandler.cs │ │ │ │ ├── NoOpPauseHandler.cs.meta │ │ │ │ ├── PauseButton.cs │ │ │ │ ├── PauseButton.cs.meta │ │ │ │ ├── PauseMenu.cs │ │ │ │ ├── PauseMenu.cs.meta │ │ │ │ ├── SingleClickPauseHandler.cs │ │ │ │ └── SingleClickPauseHandler.cs.meta │ │ │ ├── Practice.meta │ │ │ └── Practice │ │ │ │ ├── PracticeMenu.cs │ │ │ │ ├── PracticeMenu.cs.meta │ │ │ │ ├── PracticeTimeline.cs │ │ │ │ ├── PracticeTimeline.cs.meta │ │ │ │ ├── PracticeTimingControl.cs │ │ │ │ ├── PracticeTimingControl.cs.meta │ │ │ │ ├── SpeedSlider.cs │ │ │ │ └── SpeedSlider.cs.meta │ │ ├── Camera.meta │ │ ├── Camera │ │ │ ├── CameraService.cs │ │ │ ├── CameraService.cs.meta │ │ │ ├── ICameraService.cs │ │ │ └── ICameraService.cs.meta │ │ ├── Chart.meta │ │ ├── Chart │ │ │ ├── Beatline.cs │ │ │ ├── Beatline.cs.meta │ │ │ ├── BeatlineBehaviour.cs │ │ │ ├── BeatlineBehaviour.cs.meta │ │ │ ├── BeatlineDisplay.cs │ │ │ ├── BeatlineDisplay.cs.meta │ │ │ ├── ChartService.cs │ │ │ ├── ChartService.cs.meta │ │ │ ├── GameplayBeatlineGenerator.cs │ │ │ ├── GameplayBeatlineGenerator.cs.meta │ │ │ ├── IBeatlineGenerator.cs │ │ │ ├── IBeatlineGenerator.cs.meta │ │ │ ├── IChartService.cs │ │ │ ├── IChartService.cs.meta │ │ │ ├── NoteGroup.meta │ │ │ ├── NoteGroup │ │ │ │ ├── ArcNoteGroup.cs │ │ │ │ ├── ArcNoteGroup.cs.meta │ │ │ │ ├── ArcTapNoteGroup.cs │ │ │ │ ├── ArcTapNoteGroup.cs.meta │ │ │ │ ├── HoldNoteGroup.cs │ │ │ │ ├── HoldNoteGroup.cs.meta │ │ │ │ ├── LongNoteGroup.cs │ │ │ │ ├── LongNoteGroup.cs.meta │ │ │ │ ├── NoteGroup.cs │ │ │ │ ├── NoteGroup.cs.meta │ │ │ │ ├── ShortNoteGroup.cs │ │ │ │ ├── ShortNoteGroup.cs.meta │ │ │ │ ├── TapNoteGroup.cs │ │ │ │ └── TapNoteGroup.cs.meta │ │ │ ├── TimingGroup.Dispatch.cs │ │ │ ├── TimingGroup.Dispatch.cs.meta │ │ │ ├── TimingGroup.Timing.cs │ │ │ └── TimingGroup.Timing.cs.meta │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── ArcChart.cs │ │ │ ├── ArcChart.cs.meta │ │ │ ├── ArcEvent.cs │ │ │ ├── ArcEvent.cs.meta │ │ │ ├── ArcLineType.cs │ │ │ ├── ArcLineType.cs.meta │ │ │ ├── ArcLineTypeConvert.cs │ │ │ ├── ArcLineTypeConvert.cs.meta │ │ │ ├── CameraType.cs │ │ │ ├── CameraType.cs.meta │ │ │ ├── CameraTypeConvert.cs │ │ │ ├── CameraTypeConvert.cs.meta │ │ │ ├── ChartTimingGroup.cs │ │ │ ├── ChartTimingGroup.cs.meta │ │ │ ├── Events.meta │ │ │ ├── Events │ │ │ │ ├── Arc.Judgement.cs │ │ │ │ ├── Arc.Judgement.cs.meta │ │ │ │ ├── Arc.Rendering.cs │ │ │ │ ├── Arc.Rendering.cs.meta │ │ │ │ ├── ArcSegmentData.cs │ │ │ │ ├── ArcSegmentData.cs.meta │ │ │ │ ├── ArcTap.cs │ │ │ │ ├── ArcTap.cs.meta │ │ │ │ ├── CameraEvent.cs │ │ │ │ ├── CameraEvent.cs.meta │ │ │ │ ├── ColliderTriangle.cs │ │ │ │ ├── ColliderTriangle.cs.meta │ │ │ │ ├── FragmentEvent.cs │ │ │ │ ├── FragmentEvent.cs.meta │ │ │ │ ├── Hold.cs │ │ │ │ ├── Hold.cs.meta │ │ │ │ ├── ILongNote.cs │ │ │ │ ├── ILongNote.cs.meta │ │ │ │ ├── INote.cs │ │ │ │ ├── INote.cs.meta │ │ │ │ ├── IncludeEvent.cs │ │ │ │ ├── IncludeEvent.cs.meta │ │ │ │ ├── LongNote.cs │ │ │ │ ├── LongNote.cs.meta │ │ │ │ ├── Note.cs │ │ │ │ ├── Note.cs.meta │ │ │ │ ├── ScenecontrolEvent.cs │ │ │ │ ├── ScenecontrolEvent.cs.meta │ │ │ │ ├── Tap.cs │ │ │ │ ├── Tap.cs.meta │ │ │ │ ├── TimingEvent.cs │ │ │ │ └── TimingEvent.cs.meta │ │ │ ├── GroupProperties.cs │ │ │ └── GroupProperties.cs.meta │ │ ├── GameplayData.cs │ │ ├── GameplayData.cs.meta │ │ ├── GameplayManager.cs │ │ ├── GameplayManager.cs.meta │ │ ├── Hitsound.meta │ │ ├── Hitsound │ │ │ ├── HitsoundService.cs │ │ │ ├── HitsoundService.cs.meta │ │ │ ├── IHitsoundPlayer.cs │ │ │ ├── IHitsoundPlayer.cs.meta │ │ │ ├── IHitsoundService.cs │ │ │ ├── IHitsoundService.cs.meta │ │ │ ├── NativeAudioHitsoundPlayer.cs │ │ │ ├── NativeAudioHitsoundPlayer.cs.meta │ │ │ ├── UnityHitsoundPlayer.cs │ │ │ └── UnityHitsoundPlayer.cs.meta │ │ ├── IAudioControl.cs │ │ ├── IAudioControl.cs.meta │ │ ├── ICameraControl.cs │ │ ├── ICameraControl.cs.meta │ │ ├── IChartControl.cs │ │ ├── IChartControl.cs.meta │ │ ├── IGameplayControl.cs │ │ ├── IGameplayControl.cs.meta │ │ ├── IScenecontrolControl.cs │ │ ├── IScenecontrolControl.cs.meta │ │ ├── ISkinControl.cs │ │ ├── ISkinControl.cs.meta │ │ ├── InputFeedback.meta │ │ ├── InputFeedback │ │ │ ├── IInputFeedbackService.cs │ │ │ ├── IInputFeedbackService.cs.meta │ │ │ ├── InputFeedbackService.cs │ │ │ └── InputFeedbackService.cs.meta │ │ ├── Judgement.meta │ │ ├── Judgement │ │ │ ├── Debug.meta │ │ │ ├── Debug │ │ │ │ ├── IJudgementDebug.cs │ │ │ │ ├── IJudgementDebug.cs.meta │ │ │ │ ├── JudgementDebug.cs │ │ │ │ ├── JudgementDebug.cs.meta │ │ │ │ ├── NoOpJudgementDebug.cs │ │ │ │ └── NoOpJudgementDebug.cs.meta │ │ │ ├── IJudgementService.cs │ │ │ ├── IJudgementService.cs.meta │ │ │ ├── Input.meta │ │ │ ├── Input │ │ │ │ ├── AutoControllerInputHandler.cs │ │ │ │ ├── AutoControllerInputHandler.cs.meta │ │ │ │ ├── AutoInputHandler.cs │ │ │ │ ├── AutoInputHandler.cs.meta │ │ │ │ ├── ControllerInputHandler.cs │ │ │ │ ├── ControllerInputHandler.cs.meta │ │ │ │ ├── IInputHandler.cs │ │ │ │ ├── IInputHandler.cs.meta │ │ │ │ ├── IdleInputHandler.cs │ │ │ │ ├── IdleInputHandler.cs.meta │ │ │ │ ├── MouseInputHandler.cs │ │ │ │ ├── MouseInputHandler.cs.meta │ │ │ │ ├── TouchInput.cs │ │ │ │ ├── TouchInput.cs.meta │ │ │ │ ├── TouchInputHandler.cs │ │ │ │ └── TouchInputHandler.cs.meta │ │ │ ├── JudgementResult.cs │ │ │ ├── JudgementResult.cs.meta │ │ │ ├── JudgementResultExtension.cs │ │ │ ├── JudgementResultExtension.cs.meta │ │ │ ├── JudgementService.cs │ │ │ ├── JudgementService.cs.meta │ │ │ ├── Request.meta │ │ │ └── Request │ │ │ │ ├── ArcJudgementRequest.cs │ │ │ │ ├── ArcJudgementRequest.cs.meta │ │ │ │ ├── ArcTapJudgementRequest.cs │ │ │ │ ├── ArcTapJudgementRequest.cs.meta │ │ │ │ ├── IArcJudgementReceiver.cs │ │ │ │ ├── IArcJudgementReceiver.cs.meta │ │ │ │ ├── IArcTapJudgementReceiver.cs │ │ │ │ ├── IArcTapJudgementReceiver.cs.meta │ │ │ │ ├── ILaneHoldJudgementReceiver.cs │ │ │ │ ├── ILaneHoldJudgementReceiver.cs.meta │ │ │ │ ├── ILaneTapJudgementReceiver.cs │ │ │ │ ├── ILaneTapJudgementReceiver.cs.meta │ │ │ │ ├── LaneHoldJudgementRequest.cs │ │ │ │ ├── LaneHoldJudgementRequest.cs.meta │ │ │ │ ├── LaneTapJudgementRequest.cs │ │ │ │ └── LaneTapJudgementRequest.cs.meta │ │ ├── Particle.meta │ │ ├── Particle │ │ │ ├── IParticleService.cs │ │ │ ├── IParticleService.cs.meta │ │ │ ├── Particle.cs │ │ │ ├── Particle.cs.meta │ │ │ ├── ParticleSchedule.cs │ │ │ ├── ParticleSchedule.cs.meta │ │ │ ├── ParticleService.cs │ │ │ └── ParticleService.cs.meta │ │ ├── Render.meta │ │ ├── Render │ │ │ ├── IRenderService.cs │ │ │ ├── IRenderService.cs.meta │ │ │ ├── InstancedRenderer.meta │ │ │ ├── InstancedRenderer │ │ │ │ ├── InstancedRenderer.cs │ │ │ │ ├── InstancedRenderer.cs.meta │ │ │ │ ├── InstancedRendererPool.cs │ │ │ │ └── InstancedRendererPool.cs.meta │ │ │ ├── Properties.meta │ │ │ ├── Properties │ │ │ │ ├── ArcDrawCall.cs │ │ │ │ ├── ArcDrawCall.cs.meta │ │ │ │ ├── ArcDrawCallComparer.cs │ │ │ │ └── ArcDrawCallComparer.cs.meta │ │ │ ├── RenderService.cs │ │ │ └── RenderService.cs.meta │ │ ├── Scenecontrol.meta │ │ ├── Scenecontrol │ │ │ ├── Channels.meta │ │ │ ├── Channels │ │ │ │ ├── ContextChannels.meta │ │ │ │ ├── ContextChannels │ │ │ │ │ ├── BPMChannel.cs │ │ │ │ │ ├── BPMChannel.cs.meta │ │ │ │ │ ├── CurrentComboChannel.cs │ │ │ │ │ ├── CurrentComboChannel.cs.meta │ │ │ │ │ ├── CurrentScoreChannel.cs │ │ │ │ │ ├── CurrentScoreChannel.cs.meta │ │ │ │ │ ├── CurrentTimingChannel.cs │ │ │ │ │ ├── CurrentTimingChannel.cs.meta │ │ │ │ │ ├── DivisorChannel.cs │ │ │ │ │ ├── DivisorChannel.cs.meta │ │ │ │ │ ├── DropRateChannel.cs │ │ │ │ │ ├── DropRateChannel.cs.meta │ │ │ │ │ ├── FloorPositionChannel.cs │ │ │ │ │ ├── FloorPositionChannel.cs.meta │ │ │ │ │ ├── GlobalOffsetChannel.cs │ │ │ │ │ ├── GlobalOffsetChannel.cs.meta │ │ │ │ │ ├── IsMirrorOnChannel.cs │ │ │ │ │ ├── IsMirrorOnChannel.cs.meta │ │ │ │ │ ├── ScreenHeightChannel.cs │ │ │ │ │ ├── ScreenHeightChannel.cs.meta │ │ │ │ │ ├── ScreenIs16By9Channel.cs │ │ │ │ │ ├── ScreenIs16By9Channel.cs.meta │ │ │ │ │ ├── ScreenWidthChannel.cs │ │ │ │ │ └── ScreenWidthChannel.cs.meta │ │ │ │ ├── EffectChannels.meta │ │ │ │ ├── EffectChannels │ │ │ │ │ ├── FFTChannel.cs │ │ │ │ │ ├── FFTChannel.cs.meta │ │ │ │ │ ├── Key.cs │ │ │ │ │ ├── Key.cs.meta │ │ │ │ │ ├── KeyChannel.cs │ │ │ │ │ └── KeyChannel.cs.meta │ │ │ │ ├── MathChannels.meta │ │ │ │ ├── MathChannels │ │ │ │ │ ├── ClampChannel.cs │ │ │ │ │ ├── ClampChannel.cs.meta │ │ │ │ │ ├── ConditionalChannel.cs │ │ │ │ │ ├── ConditionalChannel.cs.meta │ │ │ │ │ ├── ConstantChannel.cs │ │ │ │ │ ├── ConstantChannel.cs.meta │ │ │ │ │ ├── CosChannel.cs │ │ │ │ │ ├── CosChannel.cs.meta │ │ │ │ │ ├── ExpChannel.cs │ │ │ │ │ ├── ExpChannel.cs.meta │ │ │ │ │ ├── InverseChannel.cs │ │ │ │ │ ├── InverseChannel.cs.meta │ │ │ │ │ ├── MaxChannel.cs │ │ │ │ │ ├── MaxChannel.cs.meta │ │ │ │ │ ├── MinChannel.cs │ │ │ │ │ ├── MinChannel.cs.meta │ │ │ │ │ ├── ModuloChannel.cs │ │ │ │ │ ├── ModuloChannel.cs.meta │ │ │ │ │ ├── NegateChannel.cs │ │ │ │ │ ├── NegateChannel.cs.meta │ │ │ │ │ ├── NoiseChannel.cs │ │ │ │ │ ├── NoiseChannel.cs.meta │ │ │ │ │ ├── ProductChannel.cs │ │ │ │ │ ├── ProductChannel.cs.meta │ │ │ │ │ ├── RandomChannel.cs │ │ │ │ │ ├── RandomChannel.cs.meta │ │ │ │ │ ├── SawChannel.cs │ │ │ │ │ ├── SawChannel.cs.meta │ │ │ │ │ ├── SineChannel.cs │ │ │ │ │ ├── SineChannel.cs.meta │ │ │ │ │ ├── SumChannel.cs │ │ │ │ │ └── SumChannel.cs.meta │ │ │ │ ├── StringChannels.meta │ │ │ │ ├── StringChannels │ │ │ │ │ ├── KeyStringChannel.cs │ │ │ │ │ ├── KeyStringChannel.cs.meta │ │ │ │ │ ├── StringChannel.cs │ │ │ │ │ ├── StringChannel.cs.meta │ │ │ │ │ ├── StringChannelBuilder.cs │ │ │ │ │ ├── StringChannelBuilder.cs.meta │ │ │ │ │ ├── StringKey.cs │ │ │ │ │ └── StringKey.cs.meta │ │ │ │ ├── TextChannels.meta │ │ │ │ ├── TextChannels │ │ │ │ │ ├── ConcatTextChannel.cs │ │ │ │ │ ├── ConcatTextChannel.cs.meta │ │ │ │ │ ├── ConstantTextChannel.cs │ │ │ │ │ ├── ConstantTextChannel.cs.meta │ │ │ │ │ ├── KeyTextChannel.cs │ │ │ │ │ ├── KeyTextChannel.cs.meta │ │ │ │ │ ├── TextChannel.cs │ │ │ │ │ ├── TextChannel.cs.meta │ │ │ │ │ ├── TextChannelBuilder.cs │ │ │ │ │ ├── TextChannelBuilder.cs.meta │ │ │ │ │ ├── TextKey.cs │ │ │ │ │ ├── TextKey.cs.meta │ │ │ │ │ ├── ValueToTextChannel.cs │ │ │ │ │ └── ValueToTextChannel.cs.meta │ │ │ │ ├── TriggerChannelBuilder.cs │ │ │ │ ├── TriggerChannelBuilder.cs.meta │ │ │ │ ├── TriggerChannels.meta │ │ │ │ ├── TriggerChannels │ │ │ │ │ ├── AccumulatingTriggerChannel.cs │ │ │ │ │ ├── AccumulatingTriggerChannel.cs.meta │ │ │ │ │ ├── LoopingTriggerChannel.cs │ │ │ │ │ ├── LoopingTriggerChannel.cs.meta │ │ │ │ │ ├── SettingTriggerChannel.cs │ │ │ │ │ ├── SettingTriggerChannel.cs.meta │ │ │ │ │ ├── StackingTriggerChannel.cs │ │ │ │ │ ├── StackingTriggerChannel.cs.meta │ │ │ │ │ ├── TriggerChannel.cs │ │ │ │ │ └── TriggerChannel.cs.meta │ │ │ │ ├── Triggers.meta │ │ │ │ ├── Triggers │ │ │ │ │ ├── JudgementTrigger.cs │ │ │ │ │ ├── JudgementTrigger.cs.meta │ │ │ │ │ ├── ObserveTrigger.cs │ │ │ │ │ ├── ObserveTrigger.cs.meta │ │ │ │ │ ├── Trigger.cs │ │ │ │ │ ├── Trigger.cs.meta │ │ │ │ │ ├── TriggerBuilder.cs │ │ │ │ │ ├── TriggerBuilder.cs.meta │ │ │ │ │ ├── TriggerValueDispatch.cs │ │ │ │ │ └── TriggerValueDispatch.cs.meta │ │ │ │ ├── ValueChannel.cs │ │ │ │ ├── ValueChannel.cs.meta │ │ │ │ ├── ValueChannelBuilder.cs │ │ │ │ └── ValueChannelBuilder.cs.meta │ │ │ ├── Context.cs │ │ │ ├── Context.cs.meta │ │ │ ├── Controllers.meta │ │ │ ├── Controllers │ │ │ │ ├── Common.meta │ │ │ │ ├── Common │ │ │ │ │ ├── CanvasController.cs │ │ │ │ │ ├── CanvasController.cs.meta │ │ │ │ │ ├── ImageController.cs │ │ │ │ │ ├── ImageController.cs.meta │ │ │ │ │ ├── SpriteController.cs │ │ │ │ │ ├── SpriteController.cs.meta │ │ │ │ │ ├── TextController.cs │ │ │ │ │ └── TextController.cs.meta │ │ │ │ ├── Controller.cs │ │ │ │ ├── Controller.cs.meta │ │ │ │ ├── Interfaces.cs │ │ │ │ ├── Interfaces.cs.meta │ │ │ │ ├── Internal.meta │ │ │ │ ├── Internal │ │ │ │ │ ├── BeatlinesController.cs │ │ │ │ │ ├── BeatlinesController.cs.meta │ │ │ │ │ ├── CameraController.cs │ │ │ │ │ ├── CameraController.cs.meta │ │ │ │ │ ├── ComposerController.cs │ │ │ │ │ ├── ComposerController.cs.meta │ │ │ │ │ ├── DifficultyController.cs │ │ │ │ │ ├── DifficultyController.cs.meta │ │ │ │ │ ├── GlowingSprite.cs │ │ │ │ │ ├── GlowingSprite.cs.meta │ │ │ │ │ ├── GlowingSpriteController.cs │ │ │ │ │ ├── GlowingSpriteController.cs.meta │ │ │ │ │ ├── HUDController.cs │ │ │ │ │ ├── HUDController.cs.meta │ │ │ │ │ ├── InfoPanelController.cs │ │ │ │ │ ├── InfoPanelController.cs.meta │ │ │ │ │ ├── NoteGroupController.cs │ │ │ │ │ ├── NoteGroupController.cs.meta │ │ │ │ │ ├── TitleController.cs │ │ │ │ │ ├── TitleController.cs.meta │ │ │ │ │ ├── TrackController.cs │ │ │ │ │ └── TrackController.cs.meta │ │ │ │ ├── Scene.cs │ │ │ │ └── Scene.cs.meta │ │ │ ├── IO.meta │ │ │ ├── IO │ │ │ │ ├── EnabledFeatures.cs │ │ │ │ ├── EnabledFeatures.cs.meta │ │ │ │ ├── ISerializableUnit.cs │ │ │ │ ├── ISerializableUnit.cs.meta │ │ │ │ ├── ScenecontrolDeserialization.cs │ │ │ │ ├── ScenecontrolDeserialization.cs.meta │ │ │ │ ├── ScenecontrolSerialization.cs │ │ │ │ ├── ScenecontrolSerialization.cs.meta │ │ │ │ ├── ScenecontrolVersioning.cs │ │ │ │ ├── ScenecontrolVersioning.cs.meta │ │ │ │ ├── SerializedUnit.cs │ │ │ │ └── SerializedUnit.cs.meta │ │ │ ├── ISceneController.cs │ │ │ ├── ISceneController.cs.meta │ │ │ ├── IScenecontrolService.cs │ │ │ ├── IScenecontrolService.cs.meta │ │ │ ├── PostProcessing.meta │ │ │ ├── PostProcessing │ │ │ │ ├── AutoExposureController.cs │ │ │ │ ├── AutoExposureController.cs.meta │ │ │ │ ├── BloomController.cs │ │ │ │ ├── BloomController.cs.meta │ │ │ │ ├── ChromaticAberrationController.cs │ │ │ │ ├── ChromaticAberrationController.cs.meta │ │ │ │ ├── ColorGradingController.cs │ │ │ │ ├── ColorGradingController.cs.meta │ │ │ │ ├── DepthOfFieldController.cs │ │ │ │ ├── DepthOfFieldController.cs.meta │ │ │ │ ├── GrainController.cs │ │ │ │ ├── GrainController.cs.meta │ │ │ │ ├── IPostProcessing.cs │ │ │ │ ├── IPostProcessing.cs.meta │ │ │ │ ├── LensDistortionController.cs │ │ │ │ ├── LensDistortionController.cs.meta │ │ │ │ ├── MotionBlurController.cs │ │ │ │ ├── MotionBlurController.cs.meta │ │ │ │ ├── PostProcessing.cs │ │ │ │ ├── PostProcessing.cs.meta │ │ │ │ ├── PostProcessingController.cs │ │ │ │ ├── PostProcessingController.cs.meta │ │ │ │ ├── VignetteController.cs │ │ │ │ └── VignetteController.cs.meta │ │ │ ├── ScenecontrolService.cs │ │ │ └── ScenecontrolService.cs.meta │ │ ├── Score.meta │ │ ├── Score │ │ │ ├── IScoreService.cs │ │ │ ├── IScoreService.cs.meta │ │ │ ├── ScoreElementsDisplay.cs │ │ │ ├── ScoreElementsDisplay.cs.meta │ │ │ ├── ScoreEvent.cs │ │ │ ├── ScoreEvent.cs.meta │ │ │ ├── ScoreService.cs │ │ │ ├── ScoreService.cs.meta │ │ │ ├── StatisticCalculator.cs │ │ │ └── StatisticCalculator.cs.meta │ │ ├── Services.cs │ │ ├── Services.cs.meta │ │ ├── Skin.meta │ │ ├── Skin │ │ │ ├── ISkinService.cs │ │ │ ├── ISkinService.cs.meta │ │ │ ├── Options.meta │ │ │ ├── Options │ │ │ │ ├── AccentOption.cs │ │ │ │ ├── AccentOption.cs.meta │ │ │ │ ├── AlignmentOption.cs │ │ │ │ ├── AlignmentOption.cs.meta │ │ │ │ ├── Note.meta │ │ │ │ ├── Note │ │ │ │ │ ├── GamemodeNodeSkinOption.cs │ │ │ │ │ ├── GamemodeNodeSkinOption.cs.meta │ │ │ │ │ ├── INoteSkinProvider.cs │ │ │ │ │ ├── INoteSkinProvider.cs.meta │ │ │ │ │ ├── JoyconNoteSkinOption.cs │ │ │ │ │ ├── JoyconNoteSkinOption.cs.meta │ │ │ │ │ ├── TouchNoteSkinOption.cs │ │ │ │ │ └── TouchNoteSkinOption.cs.meta │ │ │ │ ├── NoteSkinOption.cs │ │ │ │ ├── NoteSkinOption.cs.meta │ │ │ │ ├── NoteSkinOverride.cs │ │ │ │ ├── NoteSkinOverride.cs.meta │ │ │ │ ├── ParticleSkinOption.cs │ │ │ │ ├── ParticleSkinOption.cs.meta │ │ │ │ ├── SingleLineOption.cs │ │ │ │ ├── SingleLineOption.cs.meta │ │ │ │ ├── TrackSkinOption.cs │ │ │ │ └── TrackSkinOption.cs.meta │ │ │ ├── SkinApplier.cs │ │ │ ├── SkinApplier.cs.meta │ │ │ ├── SkinService.cs │ │ │ └── SkinService.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ │ ├── ArcColorLogic.cs │ │ │ ├── ArcColorLogic.cs.meta │ │ │ ├── ArcFormula.cs │ │ │ ├── ArcFormula.cs.meta │ │ │ ├── ArcMeshGenerator.cs │ │ │ ├── ArcMeshGenerator.cs.meta │ │ │ ├── CachedBinarySearch.cs │ │ │ ├── CachedBinarySearch.cs.meta │ │ │ ├── CachedBisect.cs │ │ │ ├── CachedBisect.cs.meta │ │ │ ├── Easing.cs │ │ │ ├── Easing.cs.meta │ │ │ ├── Projection.cs │ │ │ ├── Projection.cs.meta │ │ │ ├── Values.cs │ │ │ └── Values.cs.meta │ ├── Remote.meta │ ├── Remote │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── ArcCreate.Remote.Common.asmdef │ │ │ ├── ArcCreate.Remote.Common.asmdef.meta │ │ │ ├── BroadcastReceiver.cs │ │ │ ├── BroadcastReceiver.cs.meta │ │ │ ├── BroadcastSender.cs │ │ │ ├── BroadcastSender.cs.meta │ │ │ ├── Constants.cs │ │ │ ├── Constants.cs.meta │ │ │ ├── FileHoster.cs │ │ │ ├── FileHoster.cs.meta │ │ │ ├── IFileProvider.cs │ │ │ ├── IFileProvider.cs.meta │ │ │ ├── IProtocol.cs │ │ │ ├── IProtocol.cs.meta │ │ │ ├── MessageChannel.cs │ │ │ ├── MessageChannel.cs.meta │ │ │ ├── MessagePackager.cs │ │ │ ├── MessagePackager.cs.meta │ │ │ ├── Ports.cs │ │ │ ├── Ports.cs.meta │ │ │ ├── RemoteControl.cs │ │ │ └── RemoteControl.cs.meta │ │ ├── GameplayControl.meta │ │ └── GameplayControl │ │ │ ├── ArcCreate.Remote.Gameplay.asmdef │ │ │ ├── ArcCreate.Remote.Gameplay.asmdef.meta │ │ │ ├── RemoteDeviceRow.cs │ │ │ ├── RemoteDeviceRow.cs.meta │ │ │ ├── RemoteGameplayControl.cs │ │ │ ├── RemoteGameplayControl.cs.meta │ │ │ ├── RemoteManager.cs │ │ │ └── RemoteManager.cs.meta │ ├── SceneTransition.meta │ ├── SceneTransition │ │ ├── ArcCreate.SceneTransition.asmdef │ │ ├── ArcCreate.SceneTransition.asmdef.meta │ │ ├── GreetingScene.cs │ │ ├── GreetingScene.cs.meta │ │ ├── SceneNames.cs │ │ ├── SceneNames.cs.meta │ │ ├── SceneRepresentative.cs │ │ ├── SceneRepresentative.cs.meta │ │ ├── SceneTransitionManager.cs │ │ ├── SceneTransitionManager.cs.meta │ │ ├── TitleSceneManager.cs │ │ ├── TitleSceneManager.cs.meta │ │ ├── Transitions.meta │ │ └── Transitions │ │ │ ├── DecorationTransition.cs │ │ │ ├── DecorationTransition.cs.meta │ │ │ ├── ITransition.cs │ │ │ ├── ITransition.cs.meta │ │ │ ├── InfoTransition.cs │ │ │ ├── InfoTransition.cs.meta │ │ │ ├── PlayRetryCountTransition.cs │ │ │ ├── PlayRetryCountTransition.cs.meta │ │ │ ├── SoundTransition.cs │ │ │ ├── SoundTransition.cs.meta │ │ │ ├── TransitionInfo.meta │ │ │ ├── TransitionInfo │ │ │ ├── ColorSO.cs │ │ │ ├── ColorSO.cs.meta │ │ │ ├── FitCharterAndAliasText.cs │ │ │ ├── FitCharterAndAliasText.cs.meta │ │ │ ├── FitToContentText.cs │ │ │ ├── FitToContentText.cs.meta │ │ │ ├── ReactiveColor.cs │ │ │ ├── ReactiveColor.cs.meta │ │ │ ├── ReactiveImage.cs │ │ │ ├── ReactiveImage.cs.meta │ │ │ ├── ReactiveText.cs │ │ │ ├── ReactiveText.cs.meta │ │ │ ├── ReactiveTextWithTitle.cs │ │ │ ├── ReactiveTextWithTitle.cs.meta │ │ │ ├── SpriteSO.cs │ │ │ ├── SpriteSO.cs.meta │ │ │ ├── StringSO.cs │ │ │ └── StringSO.cs.meta │ │ │ ├── TransitionScene.cs │ │ │ ├── TransitionScene.cs.meta │ │ │ ├── TransitionSequence.cs │ │ │ ├── TransitionSequence.cs.meta │ │ │ ├── TriangleTileTransition.cs │ │ │ └── TriangleTileTransition.cs.meta │ ├── Selection.meta │ ├── Selection │ │ ├── ArcCreate.Selection.asmdef │ │ ├── ArcCreate.Selection.asmdef.meta │ │ ├── Interface.meta │ │ ├── Interface │ │ │ ├── AudioPreview.cs │ │ │ ├── AudioPreview.cs.meta │ │ │ ├── Components.meta │ │ │ ├── Components │ │ │ │ ├── Dialog.cs │ │ │ │ ├── Dialog.cs.meta │ │ │ │ ├── DifficultyCell.cs │ │ │ │ ├── DifficultyCell.cs.meta │ │ │ │ ├── GroupCell.cs │ │ │ │ ├── GroupCell.cs.meta │ │ │ │ ├── GroupCellData.cs │ │ │ │ ├── GroupCellData.cs.meta │ │ │ │ ├── LevelCell.cs │ │ │ │ ├── LevelCell.cs.meta │ │ │ │ ├── LevelCellData.cs │ │ │ │ ├── LevelCellData.cs.meta │ │ │ │ ├── PackCell.cs │ │ │ │ ├── PackCell.cs.meta │ │ │ │ ├── PackCellData.cs │ │ │ │ ├── PackCellData.cs.meta │ │ │ │ ├── RapidButton.cs │ │ │ │ ├── RapidButton.cs.meta │ │ │ │ ├── Relocatable.cs │ │ │ │ ├── Relocatable.cs.meta │ │ │ │ ├── StarRating.cs │ │ │ │ ├── StarRating.cs.meta │ │ │ │ ├── StarRatingDialog.cs │ │ │ │ └── StarRatingDialog.cs.meta │ │ │ ├── InfoDisplay.cs │ │ │ ├── InfoDisplay.cs.meta │ │ │ ├── InterfaceUtility.cs │ │ │ ├── InterfaceUtility.cs.meta │ │ │ ├── LevelList.cs │ │ │ ├── LevelList.cs.meta │ │ │ ├── LevelListBuider.meta │ │ │ ├── LevelListBuider │ │ │ │ ├── GroupStrategies.meta │ │ │ │ ├── GroupStrategies │ │ │ │ │ ├── GroupByCharter.cs │ │ │ │ │ ├── GroupByCharter.cs.meta │ │ │ │ │ ├── GroupByDifficulty.cs │ │ │ │ │ ├── GroupByDifficulty.cs.meta │ │ │ │ │ ├── GroupByGrade.cs │ │ │ │ │ ├── GroupByGrade.cs.meta │ │ │ │ │ ├── GroupByRank.cs │ │ │ │ │ ├── GroupByRank.cs.meta │ │ │ │ │ ├── GroupByRating.cs │ │ │ │ │ ├── GroupByRating.cs.meta │ │ │ │ │ ├── NoGroup.cs │ │ │ │ │ └── NoGroup.cs.meta │ │ │ │ ├── IGroupStrategy.cs │ │ │ │ ├── IGroupStrategy.cs.meta │ │ │ │ ├── ISortStrategy.cs │ │ │ │ ├── ISortStrategy.cs.meta │ │ │ │ ├── LevelListBuilder.cs │ │ │ │ ├── LevelListBuilder.cs.meta │ │ │ │ ├── SortPackStrategies.meta │ │ │ │ ├── SortPackStrategies │ │ │ │ │ ├── SortPackByAddedDate.cs │ │ │ │ │ ├── SortPackByAddedDate.cs.meta │ │ │ │ │ ├── SortPackByName.cs │ │ │ │ │ ├── SortPackByName.cs.meta │ │ │ │ │ ├── SortPackByPublisher.cs │ │ │ │ │ └── SortPackByPublisher.cs.meta │ │ │ │ ├── SortStrategies.meta │ │ │ │ └── SortStrategies │ │ │ │ │ ├── SortByAddedDate.cs │ │ │ │ │ ├── SortByAddedDate.cs.meta │ │ │ │ │ ├── SortByCharter.cs │ │ │ │ │ ├── SortByCharter.cs.meta │ │ │ │ │ ├── SortByComposer.cs │ │ │ │ │ ├── SortByComposer.cs.meta │ │ │ │ │ ├── SortByDifficulty.cs │ │ │ │ │ ├── SortByDifficulty.cs.meta │ │ │ │ │ ├── SortByGrade.cs │ │ │ │ │ ├── SortByGrade.cs.meta │ │ │ │ │ ├── SortByPlayCount.cs │ │ │ │ │ ├── SortByPlayCount.cs.meta │ │ │ │ │ ├── SortByRating.cs │ │ │ │ │ ├── SortByRating.cs.meta │ │ │ │ │ ├── SortByScore.cs │ │ │ │ │ ├── SortByScore.cs.meta │ │ │ │ │ ├── SortByTitle.cs │ │ │ │ │ └── SortByTitle.cs.meta │ │ │ ├── LevelListOptions.cs │ │ │ ├── LevelListOptions.cs.meta │ │ │ ├── Modules.meta │ │ │ ├── Modules │ │ │ │ ├── DetailModulesDisplay.cs │ │ │ │ ├── DetailModulesDisplay.cs.meta │ │ │ │ ├── HistoryDisplay.cs │ │ │ │ ├── HistoryDisplay.cs.meta │ │ │ │ ├── ModifierDisplay.cs │ │ │ │ ├── ModifierDisplay.cs.meta │ │ │ │ ├── PlayResultItem.cs │ │ │ │ ├── PlayResultItem.cs.meta │ │ │ │ ├── PlayResultList.cs │ │ │ │ └── PlayResultList.cs.meta │ │ │ ├── PackList.cs │ │ │ ├── PackList.cs.meta │ │ │ ├── ResultScreen.cs │ │ │ └── ResultScreen.cs.meta │ │ ├── Select.meta │ │ ├── Select │ │ │ ├── DeleteConfirmation.cs │ │ │ ├── DeleteConfirmation.cs.meta │ │ │ ├── ISelectService.cs │ │ │ ├── ISelectService.cs.meta │ │ │ ├── SelectService.cs │ │ │ ├── SelectService.cs.meta │ │ │ ├── SelectableStorage.cs │ │ │ ├── SelectableStorage.cs.meta │ │ │ ├── SubAssetDeleteConfirmation.cs │ │ │ └── SubAssetDeleteConfirmation.cs.meta │ │ ├── SelectionManager.cs │ │ ├── SelectionManager.cs.meta │ │ ├── Services.cs │ │ ├── Services.cs.meta │ │ ├── Settings.meta │ │ ├── Settings │ │ │ ├── GroupStrategyButton.cs │ │ │ ├── GroupStrategyButton.cs.meta │ │ │ ├── LocaleCell.cs │ │ │ ├── LocaleCell.cs.meta │ │ │ ├── LocaleCellData.cs │ │ │ ├── LocaleCellData.cs.meta │ │ │ ├── LocaleSection.cs │ │ │ ├── LocaleSection.cs.meta │ │ │ ├── OffsetCalibrateDialog.cs │ │ │ ├── OffsetCalibrateDialog.cs.meta │ │ │ ├── SettingsDialog.cs │ │ │ ├── SettingsDialog.cs.meta │ │ │ ├── SortPackStrategyButton.cs │ │ │ ├── SortPackStrategyButton.cs.meta │ │ │ ├── SortStrategyButton.cs │ │ │ └── SortStrategyButton.cs.meta │ │ ├── SoundEffect.meta │ │ └── SoundEffect │ │ │ ├── ISoundEffectService.cs │ │ │ ├── ISoundEffectService.cs.meta │ │ │ ├── PlaySoundButton.cs │ │ │ ├── PlaySoundButton.cs.meta │ │ │ ├── SoundEffect.cs │ │ │ ├── SoundEffect.cs.meta │ │ │ ├── SoundEffectService.cs │ │ │ └── SoundEffectService.cs.meta │ ├── Settings.meta │ ├── Settings │ │ ├── ArcCreate.Settings.asmdef │ │ ├── ArcCreate.Settings.asmdef.meta │ │ ├── BoolSetting.cs │ │ ├── BoolSetting.cs.meta │ │ ├── ChartSortMode.cs │ │ ├── ChartSortMode.cs.meta │ │ ├── Enums.cs │ │ ├── Enums.cs.meta │ │ ├── FloatSetting.cs │ │ ├── FloatSetting.cs.meta │ │ ├── IntSetting.cs │ │ ├── IntSetting.cs.meta │ │ ├── Settings.cs │ │ ├── Settings.cs.meta │ │ ├── State.cs │ │ ├── State.cs.meta │ │ ├── StringSetting.cs │ │ └── StringSetting.cs.meta │ ├── Storage.meta │ ├── Storage │ │ ├── ArcCreate.Storage.asmdef │ │ ├── ArcCreate.Storage.asmdef.meta │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── CharacterStorage.cs │ │ │ ├── CharacterStorage.cs.meta │ │ │ ├── FileReference.cs │ │ │ ├── FileReference.cs.meta │ │ │ ├── IStorageUnit.cs │ │ │ ├── IStorageUnit.cs.meta │ │ │ ├── LevelStorage.cs │ │ │ ├── LevelStorage.cs.meta │ │ │ ├── PackStorage.cs │ │ │ ├── PackStorage.cs.meta │ │ │ ├── PlayHistory.cs │ │ │ ├── PlayHistory.cs.meta │ │ │ ├── StorageUnit.cs │ │ │ └── StorageUnit.cs.meta │ │ ├── Database.cs │ │ ├── Database.cs.meta │ │ ├── FileImportManager.IO.cs │ │ ├── FileImportManager.IO.cs.meta │ │ ├── FileImportManager.cs │ │ ├── FileImportManager.cs.meta │ │ ├── FileStatics.cs │ │ ├── FileStatics.cs.meta │ │ ├── FileStorage.cs │ │ ├── FileStorage.cs.meta │ │ ├── ImportInformation.cs │ │ ├── ImportInformation.cs.meta │ │ ├── Loader.meta │ │ ├── Loader │ │ │ ├── GameplayLoader.cs │ │ │ ├── GameplayLoader.cs.meta │ │ │ ├── StorageFileAccessWrapper.cs │ │ │ └── StorageFileAccessWrapper.cs.meta │ │ ├── StorageData.cs │ │ └── StorageData.cs.meta │ ├── Utility.meta │ └── Utility │ │ ├── Algorithms.meta │ │ ├── Algorithms │ │ ├── Base62.meta │ │ ├── Base62 │ │ │ ├── BitStream.cs │ │ │ ├── BitStream.cs.meta │ │ │ ├── EncodingExtensions.cs │ │ │ └── EncodingExtensions.cs.meta │ │ ├── LRUCache.meta │ │ ├── LRUCache │ │ │ ├── LRUCache.cs │ │ │ ├── LRUCache.cs.meta │ │ │ ├── LRUCacheItem.cs │ │ │ └── LRUCacheItem.cs.meta │ │ ├── RangeTree.meta │ │ ├── RangeTree │ │ │ ├── RangeTree.cs │ │ │ ├── RangeTree.cs.meta │ │ │ ├── RangeTreeEnumerator.cs │ │ │ ├── RangeTreeEnumerator.cs.meta │ │ │ ├── RangeTreeNode.cs │ │ │ ├── RangeTreeNode.cs.meta │ │ │ ├── RangeValuePair.cs │ │ │ └── RangeValuePair.cs.meta │ │ ├── UnorderedList.meta │ │ └── UnorderedList │ │ │ ├── UnorderedList.cs │ │ │ └── UnorderedList.cs.meta │ │ ├── Animator.meta │ │ ├── Animator │ │ ├── FadeAnimator.cs │ │ ├── FadeAnimator.cs.meta │ │ ├── FadeReverseAnimator.cs │ │ ├── FadeReverseAnimator.cs.meta │ │ ├── PositionAnimator.cs │ │ ├── PositionAnimator.cs.meta │ │ ├── RectSizeAnimator.cs │ │ ├── RectSizeAnimator.cs.meta │ │ ├── ScaleAnimator.cs │ │ ├── ScaleAnimator.cs.meta │ │ ├── ScriptedAnimator.cs │ │ ├── ScriptedAnimator.cs.meta │ │ ├── ScriptedAnimatorComponent.cs │ │ ├── ScriptedAnimatorComponent.cs.meta │ │ ├── ZAnimator.cs │ │ └── ZAnimator.cs.meta │ │ ├── ArcCreate.Utility.asmdef │ │ ├── ArcCreate.Utility.asmdef.meta │ │ ├── Components.meta │ │ ├── Components │ │ ├── AudioSourceFix.cs │ │ ├── AudioSourceFix.cs.meta │ │ ├── ClearResultDisplay.cs │ │ ├── ClearResultDisplay.cs.meta │ │ ├── CreditsView.cs │ │ ├── CreditsView.cs.meta │ │ ├── FastInputField.cs │ │ ├── FastInputField.cs.meta │ │ ├── FpsCounterMenu.cs │ │ ├── FpsCounterMenu.cs.meta │ │ ├── GradeDisplay.cs │ │ ├── GradeDisplay.cs.meta │ │ ├── LinkButton.cs │ │ ├── LinkButton.cs.meta │ │ ├── SettingsDropdown.cs │ │ ├── SettingsDropdown.cs.meta │ │ ├── SettingsEnum.cs │ │ ├── SettingsEnum.cs.meta │ │ ├── SettingsInputFieldFloat.cs │ │ ├── SettingsInputFieldFloat.cs.meta │ │ ├── SettingsInputFieldInteger.cs │ │ ├── SettingsInputFieldInteger.cs.meta │ │ ├── SettingsInputFieldText.cs │ │ ├── SettingsInputFieldText.cs.meta │ │ ├── SettingsToggle.cs │ │ ├── SettingsToggle.cs.meta │ │ ├── VersionDisplay.cs │ │ └── VersionDisplay.cs.meta │ │ ├── EmmySharp.meta │ │ ├── EmmySharp │ │ ├── EmmyAliasAttribute.cs │ │ ├── EmmyAliasAttribute.cs.meta │ │ ├── EmmyChoiceAttribute.cs │ │ ├── EmmyChoiceAttribute.cs.meta │ │ ├── EmmyDeprecatedAttribute.cs │ │ ├── EmmyDeprecatedAttribute.cs.meta │ │ ├── EmmyDocAttribute.cs │ │ ├── EmmyDocAttribute.cs.meta │ │ ├── EmmyGroupAttribute.cs │ │ ├── EmmyGroupAttribute.cs.meta │ │ ├── EmmyHelpers.cs │ │ ├── EmmyHelpers.cs.meta │ │ ├── EmmySharpBuilder.cs │ │ ├── EmmySharpBuilder.cs.meta │ │ ├── EmmySharpValue.cs │ │ ├── EmmySharpValue.cs.meta │ │ ├── EmmySingletonAttribute.cs │ │ └── EmmySingletonAttribute.cs.meta │ │ ├── ErrorHandling.meta │ │ ├── ErrorHandling │ │ ├── Error.cs │ │ ├── Error.cs.meta │ │ ├── Option.cs │ │ ├── Option.cs.meta │ │ ├── Result.cs │ │ └── Result.cs.meta │ │ ├── Extension.meta │ │ ├── Extension │ │ ├── CameraExtension.cs │ │ ├── CameraExtension.cs.meta │ │ ├── CollectionExtension.cs │ │ ├── CollectionExtension.cs.meta │ │ ├── ColorExtension.cs │ │ ├── ColorExtension.cs.meta │ │ ├── InputExtension.cs │ │ ├── InputExtension.cs.meta │ │ ├── LineRendererExtension.cs │ │ ├── LineRendererExtension.cs.meta │ │ ├── MathfExtension.cs │ │ ├── MathfExtension.cs.meta │ │ ├── MatrixUtility.cs │ │ ├── MatrixUtility.cs.meta │ │ ├── TextFormat.cs │ │ ├── TextFormat.cs.meta │ │ ├── VectorExtension.cs │ │ └── VectorExtension.cs.meta │ │ ├── ExternalAssets.meta │ │ ├── ExternalAssets │ │ ├── ExternalAssetsCommon.cs │ │ ├── ExternalAssetsCommon.cs.meta │ │ ├── ExternalAudioClip.cs │ │ ├── ExternalAudioClip.cs.meta │ │ ├── ExternalSprite.cs │ │ ├── ExternalSprite.cs.meta │ │ ├── ExternalSpriteLoaderComponent.cs │ │ ├── ExternalSpriteLoaderComponent.cs.meta │ │ ├── ExternalTexture.cs │ │ └── ExternalTexture.cs.meta │ │ ├── I18n.meta │ │ ├── I18n │ │ ├── I18n.cs │ │ ├── I18n.cs.meta │ │ ├── I18nSelector.cs │ │ ├── I18nSelector.cs.meta │ │ ├── I18nText.cs │ │ ├── I18nText.cs.meta │ │ ├── IconText.cs │ │ ├── IconText.cs.meta │ │ ├── SeparatorText.cs │ │ └── SeparatorText.cs.meta │ │ ├── InfiniteScroll.meta │ │ ├── InfiniteScroll │ │ ├── Cell.cs │ │ ├── Cell.cs.meta │ │ ├── CellData.cs │ │ ├── CellData.cs.meta │ │ ├── HierarchyData.cs │ │ ├── HierarchyData.cs.meta │ │ ├── InfiniteScroll.cs │ │ └── InfiniteScroll.cs.meta │ │ ├── Lua.meta │ │ ├── Lua │ │ ├── IScriptSetup.cs │ │ ├── IScriptSetup.cs.meta │ │ ├── InstructionLimitReachedException.cs │ │ ├── InstructionLimitReachedException.cs.meta │ │ ├── LuaArithmetic.cs │ │ ├── LuaArithmetic.cs.meta │ │ ├── LuaRunner.cs │ │ ├── LuaRunner.cs.meta │ │ ├── ScriptLoader.cs │ │ ├── ScriptLoader.cs.meta │ │ ├── Types.meta │ │ └── Types │ │ │ ├── Convert.cs │ │ │ ├── Convert.cs.meta │ │ │ ├── HSVA.cs │ │ │ ├── HSVA.cs.meta │ │ │ ├── RGBA.cs │ │ │ ├── RGBA.cs.meta │ │ │ ├── XY.cs │ │ │ ├── XY.cs.meta │ │ │ ├── XYZ.cs │ │ │ └── XYZ.cs.meta │ │ ├── Parser.meta │ │ ├── Parser │ │ ├── Evaluator.cs │ │ ├── Evaluator.cs.meta │ │ ├── ParsingError.cs │ │ ├── ParsingError.cs.meta │ │ ├── StringParser.cs │ │ ├── StringParser.cs.meta │ │ ├── TextSpan.cs │ │ └── TextSpan.cs.meta │ │ ├── Pool.meta │ │ ├── Pool │ │ ├── ParticlePool.cs │ │ ├── ParticlePool.cs.meta │ │ ├── Pool.cs │ │ ├── Pool.cs.meta │ │ ├── Pools.cs │ │ └── Pools.cs.meta │ │ ├── RapidAction.cs │ │ ├── RapidAction.cs.meta │ │ ├── Shell.cs │ │ ├── Shell.cs.meta │ │ ├── SplashWorkaround.cs │ │ ├── SplashWorkaround.cs.meta │ │ ├── Theme.meta │ │ ├── Theme │ │ ├── Theme.cs │ │ ├── Theme.cs.meta │ │ ├── ThemeColor.cs │ │ ├── ThemeColor.cs.meta │ │ ├── ThemeGroup.cs │ │ ├── ThemeGroup.cs.meta │ │ ├── ThemedComponent.cs │ │ └── ThemedComponent.cs.meta │ │ ├── WaveformGenerator.cs │ │ ├── WaveformGenerator.cs.meta │ │ ├── YamlExtractor.cs │ │ └── YamlExtractor.cs.meta ├── Shaders.meta ├── Shaders │ ├── Arc.shader │ ├── Arc.shader.meta │ ├── ArcTap.shader │ ├── ArcTap.shader.meta │ ├── ColorSpace.cginc │ ├── ColorSpace.cginc.meta │ ├── Grid.shader │ ├── Grid.shader.meta │ ├── HoldJudge.shader │ ├── HoldJudge.shader.meta │ ├── HoldNote.shader │ ├── HoldNote.shader.meta │ ├── InstancedSprite.shader │ ├── InstancedSprite.shader.meta │ ├── Masked.shader │ ├── Masked.shader.meta │ ├── NotePreview.shader │ ├── NotePreview.shader.meta │ ├── Scenecontrol.meta │ ├── Scenecontrol │ │ ├── BlendModes.cginc │ │ ├── BlendModes.cginc.meta │ │ ├── ColorBurn.shader │ │ ├── ColorBurn.shader.meta │ │ ├── ColorDodge.shader │ │ ├── ColorDodge.shader.meta │ │ ├── Darken.shader │ │ ├── Darken.shader.meta │ │ ├── Default.shader │ │ ├── Default.shader.meta │ │ ├── Difference.shader │ │ ├── Difference.shader.meta │ │ ├── Exclusion.shader │ │ ├── Exclusion.shader.meta │ │ ├── FastAdd.shader │ │ ├── FastAdd.shader.meta │ │ ├── FastDarken.shader │ │ ├── FastDarken.shader.meta │ │ ├── FastLighten.shader │ │ ├── FastLighten.shader.meta │ │ ├── FastMultiply.shader │ │ ├── FastMultiply.shader.meta │ │ ├── FastScreen.shader │ │ ├── FastScreen.shader.meta │ │ ├── HardLight.shader │ │ ├── HardLight.shader.meta │ │ ├── Lighten.shader │ │ ├── Lighten.shader.meta │ │ ├── LinearBurn.shader │ │ ├── LinearBurn.shader.meta │ │ ├── LinearDodge.shader │ │ ├── LinearDodge.shader.meta │ │ ├── LinearLight.shader │ │ ├── LinearLight.shader.meta │ │ ├── Mesh.shader │ │ ├── Mesh.shader.meta │ │ ├── Multiply.shader │ │ ├── Multiply.shader.meta │ │ ├── Overlay.shader │ │ ├── Overlay.shader.meta │ │ ├── PatternOverlaySC.shader │ │ ├── PatternOverlaySC.shader.meta │ │ ├── Screen.shader │ │ ├── Screen.shader.meta │ │ ├── SoftLight.shader │ │ ├── SoftLight.shader.meta │ │ ├── Subtract.shader │ │ ├── Subtract.shader.meta │ │ ├── VividLight.shader │ │ └── VividLight.shader.meta │ ├── Shadow.shader │ ├── Shadow.shader.meta │ ├── SingleLine.shader │ ├── SingleLine.shader.meta │ ├── TapNote.shader │ ├── TapNote.shader.meta │ ├── Trace.shader │ ├── Trace.shader.meta │ ├── Track.shader │ ├── Track.shader.meta │ ├── UI.meta │ └── UI │ │ ├── FadeMiddle.shader │ │ ├── FadeMiddle.shader.meta │ │ ├── PatternOverlay.shader │ │ ├── PatternOverlay.shader.meta │ │ ├── PracticeWaveform.shader │ │ ├── PracticeWaveform.shader.meta │ │ ├── TriangleTile.shader │ │ ├── TriangleTile.shader.meta │ │ ├── Waveform.shader │ │ └── Waveform.shader.meta ├── StreamingAssets.meta ├── StreamingAssets │ ├── Locales.meta │ ├── Locales │ │ ├── en-us.yml │ │ ├── en-us.yml.meta │ │ ├── es-es.yml │ │ ├── es-es.yml.meta │ │ ├── ja-jp.yml │ │ ├── ja-jp.yml.meta │ │ ├── ko.yml │ │ ├── ko.yml.meta │ │ ├── pl.yml │ │ ├── pl.yml.meta │ │ ├── pt-br.yml │ │ ├── pt-br.yml.meta │ │ ├── th-th.yml │ │ ├── th-th.yml.meta │ │ ├── vi.yml │ │ ├── vi.yml.meta │ │ ├── zh-cn.yml │ │ ├── zh-cn.yml.meta │ │ ├── zh-tw.yml │ │ └── zh-tw.yml.meta │ ├── Macros.meta │ ├── Macros │ │ ├── .vscode │ │ │ └── workspace │ │ │ │ └── lib.lua │ │ ├── configtool.meta │ │ ├── configtool │ │ │ ├── config.lua │ │ │ └── config.lua.meta │ │ ├── zero.lua │ │ ├── zero.lua.meta │ │ ├── zero.meta │ │ └── zero │ │ │ ├── arcmod.lua │ │ │ ├── arcmod.lua.meta │ │ │ ├── creation.lua │ │ │ ├── creation.lua.meta │ │ │ ├── curve.lua │ │ │ ├── curve.lua.meta │ │ │ ├── progress.lua │ │ │ ├── progress.lua.meta │ │ │ ├── segmentation.lua │ │ │ ├── segmentation.lua.meta │ │ │ ├── util.lua │ │ │ └── util.lua.meta │ ├── credits.txt │ ├── credits.txt.meta │ ├── default.arcpkg.meta │ ├── locale_list.yml │ └── locale_list.yml.meta ├── Tests.meta ├── Tests │ ├── ChartFormat.meta │ ├── ChartFormat │ │ ├── AffChartLineReaderTest.cs │ │ ├── AffChartLineReaderTest.cs.meta │ │ ├── ChartFileReaderTest.cs │ │ ├── ChartFileReaderTest.cs.meta │ │ ├── ChartSerializerTest.cs │ │ └── ChartSerializerTest.cs.meta │ ├── Remote.meta │ ├── Remote │ │ ├── MessagePackagerTest.cs │ │ └── MessagePackagerTest.cs.meta │ ├── Scenecontrol.meta │ ├── Scenecontrol │ │ ├── KeyChannelTest.cs │ │ ├── KeyChannelTest.cs.meta │ │ ├── TextChannelTest.cs │ │ └── TextChannelTest.cs.meta │ ├── Tests.asmdef │ └── Tests.asmdef.meta ├── TextMesh Pro.meta ├── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── EmojiOne Attribution.txt │ │ ├── EmojiOne Attribution.txt.meta │ │ ├── EmojiOne.json │ │ ├── EmojiOne.json.meta │ │ ├── EmojiOne.png │ │ └── EmojiOne.png.meta ├── Textures.meta └── Textures │ ├── Compose.meta │ ├── Compose │ ├── AxisB.png │ ├── AxisB.png.meta │ ├── AxisS.png │ ├── AxisS.png.meta │ ├── AxisSi.png │ ├── AxisSi.png.meta │ ├── AxisSiSi.png │ ├── AxisSiSi.png.meta │ ├── AxisSiSo.png │ ├── AxisSiSo.png.meta │ ├── AxisSo.png │ ├── AxisSo.png.meta │ ├── AxisSoSi.png │ ├── AxisSoSi.png.meta │ ├── AxisSoSo.png │ ├── AxisSoSo.png.meta │ ├── Marker.png │ ├── Marker.png.meta │ ├── MouseLeft.png │ ├── MouseLeft.png.meta │ ├── MouseMid.png │ ├── MouseMid.png.meta │ ├── MouseRight.png │ ├── MouseRight.png.meta │ ├── PalleteArc.png │ ├── PalleteArc.png.meta │ ├── PalleteHold.png │ ├── PalleteHold.png.meta │ ├── PalleteSky.png │ ├── PalleteSky.png.meta │ ├── PalleteTap.png │ ├── PalleteTap.png.meta │ ├── PalleteTrace.png │ ├── PalleteTrace.png.meta │ ├── separator.png │ └── separator.png.meta │ ├── Gameplay.meta │ ├── Gameplay │ ├── Blank.png │ ├── Blank.png.meta │ ├── CriticalLine.meta │ ├── CriticalLine │ │ ├── SkyInputLabel.png │ │ ├── SkyInputLabel.png.meta │ │ ├── SkyInputLine.png │ │ ├── SkyInputLine.png.meta │ │ ├── TrackCriticalLine.png │ │ ├── TrackCriticalLine.png.meta │ │ ├── TrackCriticalLineColorless.png │ │ ├── TrackCriticalLineColorless.png.meta │ │ ├── TrackCriticalLineDynamix.png │ │ ├── TrackCriticalLineDynamix.png.meta │ │ ├── TrackCriticalLineExtra.png │ │ └── TrackCriticalLineExtra.png.meta │ ├── Darken.png │ ├── Darken.png.meta │ ├── DefaultBackgrounds.meta │ ├── DefaultBackgrounds │ │ ├── BaseConflict.jpg │ │ ├── BaseConflict.jpg.meta │ │ ├── BaseLight.jpg │ │ ├── BaseLight.jpg.meta │ │ ├── Epilogue.jpg │ │ └── Epilogue.jpg.meta │ ├── DefaultJacket.png │ ├── DefaultJacket.png.meta │ ├── HUD.meta │ ├── HUD │ │ ├── Difficulty.png │ │ ├── Difficulty.png.meta │ │ ├── InfoConflict.png │ │ ├── InfoConflict.png.meta │ │ ├── InfoLight.png │ │ ├── InfoLight.png.meta │ │ ├── JacketBackground.png │ │ ├── JacketBackground.png.meta │ │ ├── PauseConflict.png │ │ ├── PauseConflict.png.meta │ │ ├── PauseLight.png │ │ ├── PauseLight.png.meta │ │ ├── ProgressGlow.png │ │ └── ProgressGlow.png.meta │ ├── Indicator.meta │ ├── Indicator │ │ ├── Fr Indicator.png │ │ ├── Fr Indicator.png.meta │ │ ├── Pm Indicator.png │ │ └── Pm Indicator.png.meta │ ├── Note.meta │ ├── Note │ │ ├── ArcBody.png │ │ ├── ArcBody.png.meta │ │ ├── ArcCap.png │ │ ├── ArcCap.png.meta │ │ ├── ArcTapShadow.png │ │ ├── ArcTapShadow.png.meta │ │ ├── Conflict.meta │ │ ├── Conflict │ │ │ ├── ArcTapConflict.png │ │ │ ├── ArcTapConflict.png.meta │ │ │ ├── ArcTapSFXConflict.jpg │ │ │ ├── ArcTapSFXConflict.jpg.meta │ │ │ ├── HoldNoteConflict.png │ │ │ ├── HoldNoteConflict.png.meta │ │ │ ├── TapNoteConflict.png │ │ │ └── TapNoteConflict.png.meta │ │ ├── HeightIndicator.png │ │ ├── HeightIndicator.png.meta │ │ ├── Joycon.meta │ │ ├── Joycon │ │ │ ├── ArcCapBlue.png │ │ │ ├── ArcCapBlue.png.meta │ │ │ ├── ArcCapGreen.png │ │ │ ├── ArcCapGreen.png.meta │ │ │ ├── ArcCapRed.png │ │ │ ├── ArcCapRed.png.meta │ │ │ ├── ArcCapUnknown.png │ │ │ ├── ArcCapUnknown.png.meta │ │ │ ├── ArcTapConflictLeft.png │ │ │ ├── ArcTapConflictLeft.png.meta │ │ │ ├── ArcTapConflictMiddle.png │ │ │ ├── ArcTapConflictMiddle.png.meta │ │ │ ├── ArcTapConflictRight.png │ │ │ ├── ArcTapConflictRight.png.meta │ │ │ ├── ArcTapLightLeft.png │ │ │ ├── ArcTapLightLeft.png.meta │ │ │ ├── ArcTapLightMiddle.png │ │ │ ├── ArcTapLightMiddle.png.meta │ │ │ ├── ArcTapLightRight.png │ │ │ ├── ArcTapLightRight.png.meta │ │ │ ├── HoldConflictLeft.png │ │ │ ├── HoldConflictLeft.png.meta │ │ │ ├── HoldConflictRight.png │ │ │ ├── HoldConflictRight.png.meta │ │ │ ├── HoldLightLeft.png │ │ │ ├── HoldLightLeft.png.meta │ │ │ ├── HoldLightRight.png │ │ │ ├── HoldLightRight.png.meta │ │ │ ├── TapConflictLeft.png │ │ │ ├── TapConflictLeft.png.meta │ │ │ ├── TapConflictRight.png │ │ │ ├── TapConflictRight.png.meta │ │ │ ├── TapLightLeft.png │ │ │ ├── TapLightLeft.png.meta │ │ │ ├── TapLightRight.png │ │ │ └── TapLightRight.png.meta │ │ ├── Light.meta │ │ └── Light │ │ │ ├── ArcTapLight.png │ │ │ ├── ArcTapLight.png.meta │ │ │ ├── ArcTapSFXLight.jpg │ │ │ ├── ArcTapSFXLight.jpg.meta │ │ │ ├── HoldNoteLight.png │ │ │ ├── HoldNoteLight.png.meta │ │ │ ├── TapNoteLight.png │ │ │ └── TapNoteLight.png.meta │ ├── Particles.meta │ ├── Particles │ │ ├── ArcParticle.png │ │ ├── ArcParticle.png.meta │ │ ├── Grid.png │ │ ├── Grid.png.meta │ │ ├── GridMask.png │ │ ├── GridMask.png.meta │ │ ├── HoldParticle.png │ │ ├── HoldParticle.png.meta │ │ ├── TapColorless.png │ │ ├── TapColorless.png.meta │ │ ├── TapConflict.png │ │ ├── TapConflict.png.meta │ │ ├── TapLight.png │ │ ├── TapLight.png.meta │ │ ├── TapMiraiConflict.png │ │ ├── TapMiraiConflict.png.meta │ │ ├── TapMiraiLight.png │ │ ├── TapMiraiLight.png.meta │ │ ├── TapSfx.png │ │ ├── TapSfx.png.meta │ │ ├── TextGood.png │ │ ├── TextGood.png.meta │ │ ├── TextMiss.png │ │ ├── TextMiss.png.meta │ │ ├── TextPerfect.png │ │ └── TextPerfect.png.meta │ ├── PauseScreen.meta │ ├── PauseScreen │ │ ├── BG Shape with Pause Text.png │ │ └── BG Shape with Pause Text.png.meta │ ├── SingleLine.meta │ ├── SingleLine │ │ ├── SingleLineConflict.png │ │ ├── SingleLineConflict.png.meta │ │ ├── SingleLineLight.png │ │ ├── SingleLineLight.png.meta │ │ ├── SingleLineNeo.png │ │ ├── SingleLineNeo.png.meta │ │ ├── SingleLineNone.png │ │ └── SingleLineNone.png.meta │ ├── Track.meta │ └── Track │ │ ├── LaneHit.png │ │ ├── LaneHit.png.meta │ │ ├── TrackArcana.png │ │ ├── TrackArcana.png.meta │ │ ├── TrackBlack.png │ │ ├── TrackBlack.png.meta │ │ ├── TrackColorless.png │ │ ├── TrackColorless.png.meta │ │ ├── TrackConflict.png │ │ ├── TrackConflict.png.meta │ │ ├── TrackConflictVs.png │ │ ├── TrackConflictVs.png.meta │ │ ├── TrackExtraLaneConflict.png │ │ ├── TrackExtraLaneConflict.png.meta │ │ ├── TrackExtraLaneLight.png │ │ ├── TrackExtraLaneLight.png.meta │ │ ├── TrackFinale.png │ │ ├── TrackFinale.png.meta │ │ ├── TrackLaneDivider.png │ │ ├── TrackLaneDivider.png.meta │ │ ├── TrackNijuusei.png │ │ ├── TrackNijuusei.png.meta │ │ ├── TrackPentiment.png │ │ ├── TrackPentiment.png.meta │ │ ├── TrackRei.png │ │ ├── TrackRei.png.meta │ │ ├── TrackTempestissimo.png │ │ ├── TrackTempestissimo.png.meta │ │ ├── TrackWhite.png │ │ └── TrackWhite.png.meta │ ├── Logos.meta │ ├── Logos │ ├── Banner.png │ ├── Banner.png.meta │ ├── DiscordLogo.png │ ├── DiscordLogo.png.meta │ ├── KofiLogo.png │ ├── KofiLogo.png.meta │ ├── Logo.png │ ├── Logo.png.meta │ ├── LogoBack.png │ ├── LogoBack.png.meta │ ├── LogoDesktop.png │ ├── LogoDesktop.png.meta │ ├── LogoFull.png │ ├── LogoFull.png.meta │ ├── LogoTransparent.png │ └── LogoTransparent.png.meta │ ├── Result.meta │ ├── Result │ ├── Background Arrow.png │ ├── Background Arrow.png.meta │ ├── Button Frame.png │ ├── Button Frame.png.meta │ ├── Clear Glow.png │ ├── Clear Glow.png.meta │ ├── ClearResult.meta │ ├── ClearResult │ │ ├── RankAllGood.png │ │ ├── RankAllGood.png.meta │ │ ├── RankAllMax.png │ │ ├── RankAllMax.png.meta │ │ ├── RankAllPerfect.png │ │ ├── RankAllPerfect.png.meta │ │ ├── RankClear.png │ │ ├── RankClear.png.meta │ │ ├── RankFailed.png │ │ ├── RankFailed.png.meta │ │ ├── RankFullCombo.png │ │ ├── RankFullCombo.png.meta │ │ ├── RankNone.png │ │ └── RankNone.png.meta │ ├── ClearResultShort.meta │ ├── ClearResultShort │ │ ├── RankAllGood.png │ │ ├── RankAllGood.png.meta │ │ ├── RankAllMax.png │ │ ├── RankAllMax.png.meta │ │ ├── RankAllPerfect.png │ │ ├── RankAllPerfect.png.meta │ │ ├── RankCleared.png │ │ ├── RankCleared.png.meta │ │ ├── RankFailed.png │ │ ├── RankFailed.png.meta │ │ ├── RankFullCombo.png │ │ ├── RankFullCombo.png.meta │ │ ├── RankNone.png │ │ └── RankNone.png.meta │ ├── Combo Background.png │ ├── Combo Background.png.meta │ ├── Difficulty.png │ ├── Difficulty.png.meta │ ├── Grade Background.png │ ├── Grade Background.png.meta │ ├── Grades.meta │ ├── Grades │ │ ├── GradeA.png │ │ ├── GradeA.png.meta │ │ ├── GradeAA.png │ │ ├── GradeAA.png.meta │ │ ├── GradeB.png │ │ ├── GradeB.png.meta │ │ ├── GradeC.png │ │ ├── GradeC.png.meta │ │ ├── GradeD.png │ │ ├── GradeD.png.meta │ │ ├── GradeEX+.png │ │ ├── GradeEX+.png.meta │ │ ├── GradeEX.png │ │ └── GradeEX.png.meta │ ├── Jacket Background.png │ ├── Jacket Background.png.meta │ ├── Judgement Table Highlight.png │ ├── Judgement Table Highlight.png.meta │ ├── Judgement Table.png │ ├── Judgement Table.png.meta │ ├── Notch.png │ ├── Notch.png.meta │ ├── Play Retry Background.png │ ├── Play Retry Background.png.meta │ ├── Play Retry Frame.png │ ├── Play Retry Frame.png.meta │ ├── Score Frame.png │ ├── Score Frame.png.meta │ ├── Top Triangle.png │ └── Top Triangle.png.meta │ ├── Selection.meta │ ├── Selection │ ├── Buttons.meta │ ├── Buttons │ │ ├── Difficulty Glow.png │ │ ├── Difficulty Glow.png.meta │ │ ├── Difficulty Panel Background.png │ │ ├── Difficulty Panel Background.png.meta │ │ ├── Difficulty Rhomboid Bottom Base.png │ │ ├── Difficulty Rhomboid Bottom Base.png.meta │ │ ├── Difficulty Rhomboid Glow.png │ │ ├── Difficulty Rhomboid Glow.png.meta │ │ ├── Difficulty Selected Base.png │ │ ├── Difficulty Selected Base.png.meta │ │ ├── Search Bar.png │ │ ├── Search Bar.png.meta │ │ ├── Search Button.png │ │ ├── Search Button.png.meta │ │ ├── Settings Button.png │ │ ├── Settings Button.png.meta │ │ ├── Settings Panel Background.png │ │ ├── Settings Panel Background.png.meta │ │ ├── Sort Button.png │ │ └── Sort Button.png.meta │ ├── Dialogs.meta │ ├── Dialogs │ │ ├── Button.png │ │ ├── Button.png.meta │ │ ├── ButtonSymmetrical.png │ │ ├── ButtonSymmetrical.png.meta │ │ ├── CalibrateButton.png │ │ ├── CalibrateButton.png.meta │ │ ├── Dialog Background.png │ │ ├── Dialog Background.png.meta │ │ ├── Divider.png │ │ ├── Divider.png.meta │ │ ├── Minus Button.png │ │ ├── Minus Button.png.meta │ │ ├── Plus Button.png │ │ ├── Plus Button.png.meta │ │ ├── Prompt Background.png │ │ ├── Prompt Background.png.meta │ │ ├── Setup Button (Calibration).png │ │ ├── Setup Button (Calibration).png.meta │ │ ├── Toggle Box Deactivated.png │ │ ├── Toggle Box Deactivated.png.meta │ │ ├── Toggle Check.png │ │ └── Toggle Check.png.meta │ ├── Info.meta │ ├── Info │ │ ├── Button.png │ │ ├── Button.png.meta │ │ ├── DifficultyFrame.png │ │ ├── DifficultyFrame.png.meta │ │ ├── Info.png │ │ ├── Info.png.meta │ │ ├── Jacket Art Border.png │ │ ├── Jacket Art Border.png.meta │ │ ├── ListFrame.png │ │ └── ListFrame.png.meta │ ├── LevelRow.meta │ ├── LevelRow │ │ ├── Best Result Background.png │ │ ├── Best Result Background.png.meta │ │ ├── Group Row.png │ │ ├── Group Row.png.meta │ │ ├── Level Row Border.png │ │ ├── Level Row Border.png.meta │ │ ├── Level Row Jacket Mask.png │ │ ├── Level Row Jacket Mask.png.meta │ │ ├── Level Row Selected.png │ │ ├── Level Row Selected.png.meta │ │ ├── Level Row Shadow.png │ │ ├── Level Row Shadow.png.meta │ │ ├── List Mask Gradient.png │ │ ├── List Mask Gradient.png.meta │ │ ├── New Indicator.png │ │ ├── New Indicator.png.meta │ │ ├── Pack Row Selected.png │ │ ├── Pack Row Selected.png.meta │ │ ├── Song Cell Difficulty Glow.png │ │ ├── Song Cell Difficulty Glow.png.meta │ │ ├── Song Cell Difficulty.png │ │ └── Song Cell Difficulty.png.meta │ ├── TrianglePattern.png │ └── TrianglePattern.png.meta │ ├── Shutter.meta │ ├── Shutter │ ├── Corners.png │ ├── Corners.png.meta │ ├── CornersThick.png │ ├── CornersThick.png.meta │ ├── Difficulty Frame.png │ ├── Difficulty Frame.png.meta │ ├── Frame.png │ ├── Frame.png.meta │ ├── Grid.png │ └── Grid.png.meta │ ├── TextureImporter.preset │ └── TextureImporter.preset.meta ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Linting ├── microsoft.unity.analyzers.1.14.0 │ ├── .signature.p7s │ ├── Microsoft.Unity.Analyzers.nuspec │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── analyzers │ │ └── dotnet │ │ │ └── cs │ │ │ └── Microsoft.Unity.Analyzers.dll │ ├── package │ │ └── services │ │ │ └── metadata │ │ │ └── core-properties │ │ │ └── 0429cf9cf1e74f048562291b509d9580.psmdcp │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 └── stylecop.analyzers.1.1.118 │ ├── .signature.p7s │ ├── LICENSE │ ├── StyleCop.Analyzers.nuspec │ ├── THIRD-PARTY-NOTICES.txt │ ├── [Content_Types].xml │ ├── _rels │ └── .rels │ ├── analyzers │ └── dotnet │ │ └── cs │ │ ├── StyleCop.Analyzers.CodeFixes.dll │ │ ├── StyleCop.Analyzers.dll │ │ ├── de-DE │ │ └── StyleCop.Analyzers.resources.dll │ │ ├── en-GB │ │ └── StyleCop.Analyzers.resources.dll │ │ ├── es-MX │ │ └── StyleCop.Analyzers.resources.dll │ │ ├── fr-FR │ │ └── StyleCop.Analyzers.resources.dll │ │ ├── pl-PL │ │ └── StyleCop.Analyzers.resources.dll │ │ ├── pt-BR │ │ └── StyleCop.Analyzers.resources.dll │ │ └── ru-RU │ │ └── StyleCop.Analyzers.resources.dll │ ├── package │ └── services │ │ └── metadata │ │ └── core-properties │ │ └── 253d4ecfbc9a470da148b4a2a5646fe9.psmdcp │ └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── PRIVACY_POLICY.md ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_Android.json ├── BurstAotSettings_StandaloneLinux64.json ├── BurstAotSettings_StandaloneWindows.json ├── BurstAotSettings_iOS.json ├── ClusterInputManager.asset ├── DeviceSimulatorSettings.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config ├── README.md ├── TRANSLATING.md ├── decrypt_secret.sh ├── fastlane ├── Appfile └── Fastfile ├── omnisharp.json └── secret_files.zip.gpg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [0thElement] 4 | -------------------------------------------------------------------------------- /.github/workflows/generate_certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.github/workflows/generate_certs.yml -------------------------------------------------------------------------------- /.github/workflows/ios_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.github/workflows/ios_setup.yml -------------------------------------------------------------------------------- /.github/workflows/release_internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.github/workflows/release_internal.yml -------------------------------------------------------------------------------- /.github/workflows/release_public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.github/workflows/release_public.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/.vsconfig -------------------------------------------------------------------------------- /Assets/AudioClips.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips.meta -------------------------------------------------------------------------------- /Assets/AudioClips/Arc.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/Arc.wav -------------------------------------------------------------------------------- /Assets/AudioClips/Arc.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/Arc.wav.meta -------------------------------------------------------------------------------- /Assets/AudioClips/Calibrate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/Calibrate.ogg -------------------------------------------------------------------------------- /Assets/AudioClips/Calibrate.ogg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/Calibrate.ogg.meta -------------------------------------------------------------------------------- /Assets/AudioClips/ResultScreen.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/ResultScreen.ogg -------------------------------------------------------------------------------- /Assets/AudioClips/ResultScreen.ogg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/ResultScreen.ogg.meta -------------------------------------------------------------------------------- /Assets/AudioClips/Retry.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/Retry.wav -------------------------------------------------------------------------------- /Assets/AudioClips/Retry.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/Retry.wav.meta -------------------------------------------------------------------------------- /Assets/AudioClips/SongSelect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/SongSelect.wav -------------------------------------------------------------------------------- /Assets/AudioClips/SongSelect.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/SongSelect.wav.meta -------------------------------------------------------------------------------- /Assets/AudioClips/SongStartEditor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/SongStartEditor.wav -------------------------------------------------------------------------------- /Assets/AudioClips/SongStartEditor.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/SongStartEditor.wav.meta -------------------------------------------------------------------------------- /Assets/AudioClips/SongStartGameplay.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/SongStartGameplay.wav -------------------------------------------------------------------------------- /Assets/AudioClips/SongStartGameplay.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/SongStartGameplay.wav.meta -------------------------------------------------------------------------------- /Assets/AudioClips/SongStartPostLoad.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/SongStartPostLoad.wav -------------------------------------------------------------------------------- /Assets/AudioClips/SongStartPostLoad.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/SongStartPostLoad.wav.meta -------------------------------------------------------------------------------- /Assets/AudioClips/SongStartPostLoadAlt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/SongStartPostLoadAlt.wav -------------------------------------------------------------------------------- /Assets/AudioClips/Tap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/Tap.wav -------------------------------------------------------------------------------- /Assets/AudioClips/Tap.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/Tap.wav.meta -------------------------------------------------------------------------------- /Assets/AudioClips/vineboom.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/vineboom.ogg -------------------------------------------------------------------------------- /Assets/AudioClips/vineboom.ogg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/AudioClips/vineboom.ogg.meta -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor.meta -------------------------------------------------------------------------------- /Assets/Editor/AnimatorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/AnimatorEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/AnimatorEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/AnimatorEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/ArcCreate.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/ArcCreate.Editor.asmdef -------------------------------------------------------------------------------- /Assets/Editor/ArcCreate.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/ArcCreate.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/Editor/AudioServiceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/AudioServiceEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/AudioServiceEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/AudioServiceEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/EffectServiceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/EffectServiceEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/EffectServiceEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/EffectServiceEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/EmmyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/EmmyTest.cs -------------------------------------------------------------------------------- /Assets/Editor/EmmyTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/EmmyTest.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/EntitlementsPostprocessStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/EntitlementsPostprocessStep.cs -------------------------------------------------------------------------------- /Assets/Editor/I18nTextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/I18nTextEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/I18nTextEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/I18nTextEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/ScriptBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/ScriptBatch.cs -------------------------------------------------------------------------------- /Assets/Editor/ScriptBatch.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/ScriptBatch.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/StorageEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/StorageEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/StorageEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/StorageEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Editor/WaveformDisplayEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/WaveformDisplayEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/WaveformDisplayEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Editor/WaveformDisplayEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts.meta -------------------------------------------------------------------------------- /Assets/Fonts/FontFiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/FontFiles.meta -------------------------------------------------------------------------------- /Assets/Fonts/FontFiles/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/FontFiles/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /Assets/Fonts/FontFiles/NotoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/FontFiles/NotoSans-Light.ttf -------------------------------------------------------------------------------- /Assets/Fonts/FontFiles/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/FontFiles/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /Assets/Fonts/FontFiles/NotoSansThai.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/FontFiles/NotoSansThai.ttf -------------------------------------------------------------------------------- /Assets/Fonts/FontFiles/NotoSansThai.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/FontFiles/NotoSansThai.ttf.meta -------------------------------------------------------------------------------- /Assets/Fonts/FontFiles/Saira-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/FontFiles/Saira-Medium.ttf -------------------------------------------------------------------------------- /Assets/Fonts/FontFiles/Saira-Medium.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/FontFiles/Saira-Medium.ttf.meta -------------------------------------------------------------------------------- /Assets/Fonts/FontFiles/Saira-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/FontFiles/Saira-Regular.ttf -------------------------------------------------------------------------------- /Assets/Fonts/NotoSans-Bold SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSans-Bold SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/NotoSans-Bold SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSans-Bold SDF.asset.meta -------------------------------------------------------------------------------- /Assets/Fonts/NotoSans-Light SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSans-Light SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/NotoSans-Light SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSans-Light SDF.asset.meta -------------------------------------------------------------------------------- /Assets/Fonts/NotoSans-Regular SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSans-Regular SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/NotoSans-Regular SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSans-Regular SDF.asset.meta -------------------------------------------------------------------------------- /Assets/Fonts/NotoSansHK-Regular SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSansHK-Regular SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/NotoSansJP-Regular SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSansJP-Regular SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/NotoSansKR-Regular SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSansKR-Regular SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/NotoSansSC-Regular SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSansSC-Regular SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/NotoSansThai SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSansThai SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/NotoSansThai SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/NotoSansThai SDF.asset.meta -------------------------------------------------------------------------------- /Assets/Fonts/Saira-Medium SDF DiffNumber.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/Saira-Medium SDF DiffNumber.mat -------------------------------------------------------------------------------- /Assets/Fonts/Saira-Medium SDF Outline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/Saira-Medium SDF Outline.mat -------------------------------------------------------------------------------- /Assets/Fonts/Saira-Medium SDF Overlay.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/Saira-Medium SDF Overlay.mat -------------------------------------------------------------------------------- /Assets/Fonts/Saira-Medium SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/Saira-Medium SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/Saira-Medium SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/Saira-Medium SDF.asset.meta -------------------------------------------------------------------------------- /Assets/Fonts/Saira-Regular SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/Saira-Regular SDF.asset -------------------------------------------------------------------------------- /Assets/Fonts/Saira-Regular SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/Saira-Regular SDF.asset.meta -------------------------------------------------------------------------------- /Assets/Fonts/SourceCodePro-Regular SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Fonts/SourceCodePro-Regular SDF.asset -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Compose.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Compose.meta -------------------------------------------------------------------------------- /Assets/Materials/Compose/NotePreview.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Compose/NotePreview.mat -------------------------------------------------------------------------------- /Assets/Materials/Compose/VerticalPanel.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Compose/VerticalPanel.mat -------------------------------------------------------------------------------- /Assets/Materials/Compose/Waveform.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Compose/Waveform.mat -------------------------------------------------------------------------------- /Assets/Materials/Compose/Waveform.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Compose/Waveform.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Grid.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Grid.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Grid.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Grid.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/Arc.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/Arc.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/Arc.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/Arc.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/ArcCap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/ArcCap.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/ArcTap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/ArcTap.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/Hold.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/Hold.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/Hold.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/Hold.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/Shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/Shadow.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/Tap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/Tap.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/Tap.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/Tap.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Note/Trace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Note/Trace.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Particle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Particle.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Scenecontrol.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Scenecontrol.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Sprite.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Sprite.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Sprite.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Sprite.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Track.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Track.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/Track.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/Track.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/TrackEdge.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/TrackEdge.mat -------------------------------------------------------------------------------- /Assets/Materials/Gameplay/TrackEdge.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Gameplay/TrackEdge.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Selection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Selection.meta -------------------------------------------------------------------------------- /Assets/Materials/Selection/Background.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Selection/Background.mat -------------------------------------------------------------------------------- /Assets/Materials/Selection/CellShadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Selection/CellShadow.mat -------------------------------------------------------------------------------- /Assets/Materials/Selection/FadeMiddlle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Selection/FadeMiddlle.mat -------------------------------------------------------------------------------- /Assets/Materials/Selection/Masked.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Selection/Masked.mat -------------------------------------------------------------------------------- /Assets/Materials/Selection/Masked.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Selection/Masked.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Selection/TriangleTile.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Materials/Selection/TriangleTile.mat -------------------------------------------------------------------------------- /Assets/Meshes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes.meta -------------------------------------------------------------------------------- /Assets/Meshes/ArcDecorations.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/ArcDecorations.fbx -------------------------------------------------------------------------------- /Assets/Meshes/ArcDecorations.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/ArcDecorations.fbx.meta -------------------------------------------------------------------------------- /Assets/Meshes/ArcTaps.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/ArcTaps.fbx -------------------------------------------------------------------------------- /Assets/Meshes/ArcTaps.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/ArcTaps.fbx.meta -------------------------------------------------------------------------------- /Assets/Meshes/ConnectionLine.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/ConnectionLine.fbx -------------------------------------------------------------------------------- /Assets/Meshes/ConnectionLine.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/ConnectionLine.fbx.meta -------------------------------------------------------------------------------- /Assets/Meshes/Hold.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/Hold.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Hold.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/Hold.fbx.meta -------------------------------------------------------------------------------- /Assets/Meshes/Tap.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/Tap.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Tap.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Meshes/Tap.fbx.meta -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Assets/Plugins/Android/ArcCreateHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Android/ArcCreateHelper.java -------------------------------------------------------------------------------- /Assets/Plugins/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Castle.Core.dll -------------------------------------------------------------------------------- /Assets/Plugins/Castle.Core.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Castle.Core.dll.meta -------------------------------------------------------------------------------- /Assets/Plugins/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Castle.Core.xml -------------------------------------------------------------------------------- /Assets/Plugins/Castle.Core.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Castle.Core.xml.meta -------------------------------------------------------------------------------- /Assets/Plugins/ColorPicker.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/ColorPicker.meta -------------------------------------------------------------------------------- /Assets/Plugins/ColorPicker/ColorPicker.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ColorPicker" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Plugins/ColorPicker/ColorPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/ColorPicker/ColorPicker.cs -------------------------------------------------------------------------------- /Assets/Plugins/ColorPicker/ColorPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/ColorPicker/ColorPreview.cs -------------------------------------------------------------------------------- /Assets/Plugins/ColorPicker/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/ColorPicker/Gradient.png -------------------------------------------------------------------------------- /Assets/Plugins/ColorPicker/Gradient.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/ColorPicker/Gradient.png.meta -------------------------------------------------------------------------------- /Assets/Plugins/DOTween.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween.meta -------------------------------------------------------------------------------- /Assets/Plugins/DOTween/DOTween.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween/DOTween.XML -------------------------------------------------------------------------------- /Assets/Plugins/DOTween/DOTween.XML.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween/DOTween.XML.meta -------------------------------------------------------------------------------- /Assets/Plugins/DOTween/DOTween.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween/DOTween.dll -------------------------------------------------------------------------------- /Assets/Plugins/DOTween/DOTween.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween/DOTween.dll.meta -------------------------------------------------------------------------------- /Assets/Plugins/DOTween/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/DOTween/Editor/Imgs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween/Editor/Imgs.meta -------------------------------------------------------------------------------- /Assets/Plugins/DOTween/Modules.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween/Modules.meta -------------------------------------------------------------------------------- /Assets/Plugins/DOTween/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween/readme.txt -------------------------------------------------------------------------------- /Assets/Plugins/DOTween/readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DOTween/readme.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/DynamicPanels.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DynamicPanels.meta -------------------------------------------------------------------------------- /Assets/Plugins/DynamicPanels/Cursors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DynamicPanels/Cursors.meta -------------------------------------------------------------------------------- /Assets/Plugins/DynamicPanels/DemoScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DynamicPanels/DemoScene.unity -------------------------------------------------------------------------------- /Assets/Plugins/DynamicPanels/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DynamicPanels/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/DynamicPanels/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DynamicPanels/README.txt -------------------------------------------------------------------------------- /Assets/Plugins/DynamicPanels/README.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DynamicPanels/README.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/DynamicPanels/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DynamicPanels/Resources.meta -------------------------------------------------------------------------------- /Assets/Plugins/DynamicPanels/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DynamicPanels/Scripts.meta -------------------------------------------------------------------------------- /Assets/Plugins/DynamicPanels/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/DynamicPanels/Sprites.meta -------------------------------------------------------------------------------- /Assets/Plugins/FuzzySharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/FuzzySharp.dll -------------------------------------------------------------------------------- /Assets/Plugins/FuzzySharp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/FuzzySharp.dll.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Changelog.txt -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Changelog.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Changelog.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Font.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Font.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Font/Roboto.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Font/Roboto.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/GUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/GUI.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/LICENSE -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/LICENSE.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Materials.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Prefab.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Prefab/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Prefab/Internal.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Prefab/[Graphy].prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Prefab/[Graphy].prefab -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/README.md -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/README.md.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime/Advanced.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime/Advanced.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime/Audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime/Audio.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime/Fps.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime/Fps.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime/Graph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime/Graph.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime/Ram.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime/Ram.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime/Shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime/Shader.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime/UI.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime/UI/IMovable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime/UI/IMovable.cs -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Runtime/Util.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Runtime/Util.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Shaders.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/Textures.meta -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/package.json -------------------------------------------------------------------------------- /Assets/Plugins/Graphy/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Graphy/package.json.meta -------------------------------------------------------------------------------- /Assets/Plugins/Jace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Jace.dll -------------------------------------------------------------------------------- /Assets/Plugins/Jace.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Jace.dll.meta -------------------------------------------------------------------------------- /Assets/Plugins/MaterialIcons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/MaterialIcons.meta -------------------------------------------------------------------------------- /Assets/Plugins/MaterialIcons/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/MaterialIcons/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/MaterialIcons/MaterialIcon.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MaterialIcon" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Plugins/MaterialIcons/MaterialIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/MaterialIcons/MaterialIcon.cs -------------------------------------------------------------------------------- /Assets/Plugins/MaterialIcons/codepoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/MaterialIcons/codepoints -------------------------------------------------------------------------------- /Assets/Plugins/MaterialIcons/codepoints.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/MaterialIcons/codepoints.meta -------------------------------------------------------------------------------- /Assets/Plugins/MaterialIcons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/MaterialIcons/readme.txt -------------------------------------------------------------------------------- /Assets/Plugins/MaterialIcons/readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/MaterialIcons/readme.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp.Interpreter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/MoonSharp.Interpreter.dll -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp.VsCodeDebugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/MoonSharp.VsCodeDebugger.dll -------------------------------------------------------------------------------- /Assets/Plugins/NAudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NAudio.dll -------------------------------------------------------------------------------- /Assets/Plugins/NAudio.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NAudio.dll.meta -------------------------------------------------------------------------------- /Assets/Plugins/NSubstitute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NSubstitute.dll -------------------------------------------------------------------------------- /Assets/Plugins/NSubstitute.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NSubstitute.dll.meta -------------------------------------------------------------------------------- /Assets/Plugins/NSubstitute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NSubstitute.xml -------------------------------------------------------------------------------- /Assets/Plugins/NSubstitute.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NSubstitute.xml.meta -------------------------------------------------------------------------------- /Assets/Plugins/Native Audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/Native Audio.meta -------------------------------------------------------------------------------- /Assets/Plugins/NativeFilePicker.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NativeFilePicker.meta -------------------------------------------------------------------------------- /Assets/Plugins/NativeFilePicker/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NativeFilePicker/Android.meta -------------------------------------------------------------------------------- /Assets/Plugins/NativeFilePicker/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NativeFilePicker/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/NativeFilePicker/NativeFilePicker.Runtime.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NativeFilePicker.Runtime" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Plugins/NativeFilePicker/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NativeFilePicker/README.txt -------------------------------------------------------------------------------- /Assets/Plugins/NativeFilePicker/iOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/NativeFilePicker/iOS.meta -------------------------------------------------------------------------------- /Assets/Plugins/SafeAreaHelper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/SafeAreaHelper.meta -------------------------------------------------------------------------------- /Assets/Plugins/SafeAreaHelper/SafeArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/SafeAreaHelper/SafeArea.cs -------------------------------------------------------------------------------- /Assets/Plugins/SimpleFileBrowser.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/SimpleFileBrowser.meta -------------------------------------------------------------------------------- /Assets/Plugins/SimpleFileBrowser/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/SimpleFileBrowser/README.txt -------------------------------------------------------------------------------- /Assets/Plugins/SimpleFileBrowser/Skins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/SimpleFileBrowser/Skins.meta -------------------------------------------------------------------------------- /Assets/Plugins/StandaloneFileBrowser.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/StandaloneFileBrowser.meta -------------------------------------------------------------------------------- /Assets/Plugins/UIGradient.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/UIGradient.meta -------------------------------------------------------------------------------- /Assets/Plugins/UIGradient/SetDirty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/UIGradient/SetDirty.cs -------------------------------------------------------------------------------- /Assets/Plugins/UIGradient/SetDirty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/UIGradient/SetDirty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UIGradient/UIGradient.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UIGradient" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Plugins/UIGradient/UIGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/UIGradient/UIGradient.cs -------------------------------------------------------------------------------- /Assets/Plugins/UIGradient/UIGradient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/UIGradient/UIGradient.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UIGradient/UIGradientUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/UIGradient/UIGradientUtils.cs -------------------------------------------------------------------------------- /Assets/Plugins/UIGradient/UITextGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/UIGradient/UITextGradient.cs -------------------------------------------------------------------------------- /Assets/Plugins/UltraLiteDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/UltraLiteDB.dll -------------------------------------------------------------------------------- /Assets/Plugins/UltraLiteDB.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/UltraLiteDB.dll.meta -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet.meta -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core.meta -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Constants.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Cursor.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Emitter.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Events.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Events.meta -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/FakeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/FakeList.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/HashCode.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/IEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/IEmitter.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/IParser.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/IScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/IScanner.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Mark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Mark.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Mark.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Mark.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Parser.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Scanner.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/SimpleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/SimpleKey.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Tokens.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Tokens.meta -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Tokens/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Tokens/Key.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Tokens/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Tokens/Tag.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Core/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Core/Version.cs -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Helpers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Helpers.meta -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Readme.txt -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Readme.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/Serialization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/Serialization.meta -------------------------------------------------------------------------------- /Assets/Plugins/YamlDotNet/YamlDotNet.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Plugins/YamlDotNet/YamlDotNet.asmdef -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Buttons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Buttons.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/ChartRow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/ChartRow.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/ChartRow.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/ChartRow.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/ContextMenu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/ContextMenu.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/CustomLayoutRow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/CustomLayoutRow.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/DefaultViewRow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/DefaultViewRow.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Dialogs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Dialogs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Fields.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Fields.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Fields/Dropdown.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Fields/Dropdown.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Fields/Toggle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Fields/Toggle.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Grid.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Grid.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Macros.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Macros.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Navigation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Navigation.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/RawEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/RawEditor.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Separator.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Separator.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Separator.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Separator.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Tables.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Tables.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Tables/GroupRow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Tables/GroupRow.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Timeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Timeline.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Timeline/Marker.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Timeline/Marker.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Editor/Timeline/Tick.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Editor/Timeline/Tick.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Gameplay.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Gameplay.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Gameplay/Beatline.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Gameplay/Beatline.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Gameplay/Beatline.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Gameplay/Beatline.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Gameplay/FloatLine.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Gameplay/FloatLine.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Gameplay/LaneHit.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Gameplay/LaneHit.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Gameplay/LaneHit.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Gameplay/LaneHit.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Gameplay/TapParticle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Gameplay/TapParticle.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Gameplay/TextParticle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Gameplay/TextParticle.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Remote.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Remote.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Remote/RemoteDeviceRow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Remote/RemoteDeviceRow.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Selection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Selection/DialogButton.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection/DialogButton.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Selection/Enum.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection/Enum.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Selection/Enum.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection/Enum.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Selection/GroupRow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection/GroupRow.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Selection/LevelRow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection/LevelRow.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Selection/LocaleCell.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection/LocaleCell.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Selection/PackCell.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection/PackCell.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Selection/Toggle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection/Toggle.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Selection/Toggle.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Prefabs/Selection/Toggle.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/DOTweenSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Resources/DOTweenSettings.asset -------------------------------------------------------------------------------- /Assets/Resources/DOTweenSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Resources/DOTweenSettings.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Boot.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Boot.unity -------------------------------------------------------------------------------- /Assets/Scenes/Boot.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Boot.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Compose.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Compose.unity -------------------------------------------------------------------------------- /Assets/Scenes/Compose.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Compose.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Gameplay.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Gameplay.unity -------------------------------------------------------------------------------- /Assets/Scenes/Gameplay.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Gameplay.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Gameplay_Profiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Gameplay_Profiles.meta -------------------------------------------------------------------------------- /Assets/Scenes/Greeting.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Greeting.unity -------------------------------------------------------------------------------- /Assets/Scenes/Greeting.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Greeting.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Remote.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Remote.unity -------------------------------------------------------------------------------- /Assets/Scenes/Remote.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Remote.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Result.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Result.unity -------------------------------------------------------------------------------- /Assets/Scenes/Result.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Result.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Select.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Select.unity -------------------------------------------------------------------------------- /Assets/Scenes/Select.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Select.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Storage.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Storage.unity -------------------------------------------------------------------------------- /Assets/Scenes/Storage.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scenes/Storage.unity.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/Editor.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/GameplayData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/GameplayData.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Shutter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/Shutter.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Shutter/Alias.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/Shutter/Alias.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Shutter/Title.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/Shutter/Title.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/SkinOptions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/SkinOptions.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/StorageData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/StorageData.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Themes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/Themes.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Themes/Result.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/Themes/Result.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Themes/Select.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/ScriptableObjects/Themes/Select.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat.meta -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat/Aff.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat/Aff.meta -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat/ChartReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat/ChartReader.cs -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat/Errors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat/Errors.meta -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat/FileAccess.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat/FileAccess.meta -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat/Types.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat/Types.meta -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat/Types/RawArc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat/Types/RawArc.cs -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat/Types/RawEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat/Types/RawEvent.cs -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat/Types/RawHold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat/Types/RawHold.cs -------------------------------------------------------------------------------- /Assets/Scripts/ChartFormat/Types/RawTap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/ChartFormat/Types/RawTap.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Components.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Components/Dialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Components/Dialog.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Components/Table.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Components/Table.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/ComposeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/ComposeException.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/ComposeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/ComposeManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Cursor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Cursor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Editing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Editing.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Editing/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Editing/Clipboard.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Editing/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Editing/Delete.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Editing/Dragging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Editing/Dragging.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Editing/Measurer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Editing/Measurer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Editing/Mirror.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Editing/Mirror.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/EventsEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/EventsEditor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Grid.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Grid.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Grid/GridService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Grid/GridService.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Grid/GridSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Grid/GridSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Grid/IGridService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Grid/IGridService.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Grid/MeshBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Grid/MeshBuilder.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Grid/Timing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Grid/Timing.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Grid/Vertical.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Grid/Vertical.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Grid/Vertical/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Grid/Vertical/Area.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Grid/Vertical/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Grid/Vertical/Line.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/History.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/History.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/History/Commands.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/History/Commands.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/History/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/History/ICommand.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Macros.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Macros.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Macros/API.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Macros/API.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Macros/API/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Macros/API/Event.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Macros/API/Types.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Macros/API/Types.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Macros/Select.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Macros/Select.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Macros/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Macros/UI.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Navigation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Navigation.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Popups.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Popups.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Popups/Hint.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Popups/Hint.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Popups/Hint/Hint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Popups/Hint/Hint.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Popups/Picker.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Popups/Picker.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Project.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Project.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Project/Export.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Project/Export.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Project/Startup.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Project/Startup.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Project/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Project/UI.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Remote.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Remote.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Rendering.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Rendering.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Rendering/CrfField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Rendering/CrfField.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Selection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Selection.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Services.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Services.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Services.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Timeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Timeline.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Utility.meta -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Utility/EasterEggs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Utility/EasterEggs.cs -------------------------------------------------------------------------------- /Assets/Scripts/Compose/Utility/Values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Compose/Utility/Values.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data.meta -------------------------------------------------------------------------------- /Assets/Scripts/Data/ArcCreate.Data.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/ArcCreate.Data.asmdef -------------------------------------------------------------------------------- /Assets/Scripts/Data/ChartSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/ChartSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data/ChartSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/ChartSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Data/ClearResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/ClearResult.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data/ClearResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/ClearResult.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Data/ColorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/ColorSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data/ColorSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/ColorSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Data/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/Constants.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data/Constants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/Constants.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Data/EditorProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/EditorProjectSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data/PlayResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/PlayResult.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data/PlayResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/PlayResult.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Data/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/ProjectSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data/ProjectSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/ProjectSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Data/SkinSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/SkinSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data/SkinSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/SkinSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Data/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/Timestamp.cs -------------------------------------------------------------------------------- /Assets/Scripts/Data/Timestamp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Data/Timestamp.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Audio.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Audio/Pausing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Audio/Pausing.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Audio/Practice.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Audio/Practice.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Camera.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Camera.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Chart.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Chart.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Chart/Beatline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Chart/Beatline.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Chart/NoteGroup.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Chart/NoteGroup.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/ArcChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data/ArcChart.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/ArcEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data/ArcEvent.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/ArcLineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data/ArcLineType.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/CameraType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data/CameraType.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/Events.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data/Events.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/Events/Hold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data/Events/Hold.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/Events/INote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data/Events/INote.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/Events/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data/Events/Note.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Data/Events/Tap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Data/Events/Tap.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/GameplayData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/GameplayData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/GameplayData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/GameplayData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/GameplayManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/GameplayManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Hitsound.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Hitsound.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/IAudioControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/IAudioControl.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/ICameraControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/ICameraControl.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/IChartControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/IChartControl.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/IGameplayControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/IGameplayControl.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/ISkinControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/ISkinControl.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/ISkinControl.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/ISkinControl.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/InputFeedback.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/InputFeedback.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Judgement.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Judgement.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Judgement/Debug.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Judgement/Debug.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Judgement/Input.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Judgement/Input.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Particle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Particle.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Particle/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Particle/Particle.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Render.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Render.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Scenecontrol.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Scenecontrol.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Scenecontrol/IO.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Scenecontrol/IO.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Score.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Score.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Score/ScoreEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Score/ScoreEvent.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Services.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Services.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Services.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Skin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Skin.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Skin/ISkinService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Skin/ISkinService.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Skin/Options.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Skin/Options.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Skin/SkinApplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Skin/SkinApplier.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Skin/SkinService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Skin/SkinService.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Utility.meta -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Utility/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Utility/Easing.cs -------------------------------------------------------------------------------- /Assets/Scripts/Gameplay/Utility/Values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Gameplay/Utility/Values.cs -------------------------------------------------------------------------------- /Assets/Scripts/Remote.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Remote.meta -------------------------------------------------------------------------------- /Assets/Scripts/Remote/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Remote/Common.meta -------------------------------------------------------------------------------- /Assets/Scripts/Remote/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Remote/Common/Constants.cs -------------------------------------------------------------------------------- /Assets/Scripts/Remote/Common/FileHoster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Remote/Common/FileHoster.cs -------------------------------------------------------------------------------- /Assets/Scripts/Remote/Common/IProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Remote/Common/IProtocol.cs -------------------------------------------------------------------------------- /Assets/Scripts/Remote/Common/Ports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Remote/Common/Ports.cs -------------------------------------------------------------------------------- /Assets/Scripts/Remote/Common/Ports.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Remote/Common/Ports.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Remote/GameplayControl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Remote/GameplayControl.meta -------------------------------------------------------------------------------- /Assets/Scripts/SceneTransition.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/SceneTransition.meta -------------------------------------------------------------------------------- /Assets/Scripts/SceneTransition/SceneNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/SceneTransition/SceneNames.cs -------------------------------------------------------------------------------- /Assets/Scripts/Selection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Selection.meta -------------------------------------------------------------------------------- /Assets/Scripts/Selection/Interface.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Selection/Interface.meta -------------------------------------------------------------------------------- /Assets/Scripts/Selection/Select.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Selection/Select.meta -------------------------------------------------------------------------------- /Assets/Scripts/Selection/SelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Selection/SelectionManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Selection/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Selection/Services.cs -------------------------------------------------------------------------------- /Assets/Scripts/Selection/Services.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Selection/Services.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Selection/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Selection/Settings.meta -------------------------------------------------------------------------------- /Assets/Scripts/Selection/SoundEffect.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Selection/SoundEffect.meta -------------------------------------------------------------------------------- /Assets/Scripts/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings.meta -------------------------------------------------------------------------------- /Assets/Scripts/Settings/BoolSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/BoolSetting.cs -------------------------------------------------------------------------------- /Assets/Scripts/Settings/BoolSetting.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/BoolSetting.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Settings/ChartSortMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/ChartSortMode.cs -------------------------------------------------------------------------------- /Assets/Scripts/Settings/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/Enums.cs -------------------------------------------------------------------------------- /Assets/Scripts/Settings/Enums.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/Enums.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Settings/FloatSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/FloatSetting.cs -------------------------------------------------------------------------------- /Assets/Scripts/Settings/FloatSetting.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/FloatSetting.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Settings/IntSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/IntSetting.cs -------------------------------------------------------------------------------- /Assets/Scripts/Settings/IntSetting.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/IntSetting.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Settings/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/Settings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Settings/Settings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/Settings.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Settings/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/State.cs -------------------------------------------------------------------------------- /Assets/Scripts/Settings/State.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/State.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Settings/StringSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Settings/StringSetting.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage.meta -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Data.meta -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/FileReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Data/FileReference.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/IStorageUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Data/IStorageUnit.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/LevelStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Data/LevelStorage.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/PackStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Data/PackStorage.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/PlayHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Data/PlayHistory.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Data/StorageUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Data/StorageUnit.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Database.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Database.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Database.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Storage/FileImportManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/FileImportManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/FileStatics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/FileStatics.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/FileStatics.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/FileStatics.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Storage/FileStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/FileStorage.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/FileStorage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/FileStorage.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Storage/ImportInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/ImportInformation.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/Loader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/Loader.meta -------------------------------------------------------------------------------- /Assets/Scripts/Storage/StorageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/StorageData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Storage/StorageData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Storage/StorageData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Algorithms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Algorithms.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Animator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Animator.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Animator/ZAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Animator/ZAnimator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Components.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/EmmySharp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/EmmySharp.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/ErrorHandling.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/ErrorHandling.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Extension.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Extension.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/ExternalAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/ExternalAssets.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/I18n.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/I18n.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/I18n/I18n.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/I18n/I18n.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/I18n/I18n.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/I18n/I18n.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/I18n/I18nSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/I18n/I18nSelector.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/I18n/I18nText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/I18n/I18nText.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/I18n/I18nText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/I18n/I18nText.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/I18n/IconText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/I18n/IconText.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/I18n/IconText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/I18n/IconText.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/I18n/SeparatorText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/I18n/SeparatorText.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/InfiniteScroll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/InfiniteScroll.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/IScriptSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/IScriptSetup.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/LuaArithmetic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/LuaArithmetic.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/LuaRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/LuaRunner.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/LuaRunner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/LuaRunner.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/ScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/ScriptLoader.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/Types.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/Types.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/Types/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/Types/Convert.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/Types/HSVA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/Types/HSVA.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/Types/RGBA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/Types/RGBA.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/Types/XY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/Types/XY.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/Types/XY.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/Types/XY.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/Types/XYZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/Types/XYZ.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Lua/Types/XYZ.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Lua/Types/XYZ.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Parser.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Parser.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Parser/Evaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Parser/Evaluator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Parser/TextSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Parser/TextSpan.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Pool.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Pool.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Pool/ParticlePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Pool/ParticlePool.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Pool/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Pool/Pool.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Pool/Pool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Pool/Pool.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Pool/Pools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Pool/Pools.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Pool/Pools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Pool/Pools.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/RapidAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/RapidAction.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/RapidAction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/RapidAction.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Shell.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Shell.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Shell.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/SplashWorkaround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/SplashWorkaround.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Theme.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Theme.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Theme/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Theme/Theme.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Theme/Theme.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Theme/Theme.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Theme/ThemeColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Theme/ThemeColor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/Theme/ThemeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/Theme/ThemeGroup.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/WaveformGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/WaveformGenerator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/YamlExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/YamlExtractor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utility/YamlExtractor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Scripts/Utility/YamlExtractor.cs.meta -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders.meta -------------------------------------------------------------------------------- /Assets/Shaders/Arc.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Arc.shader -------------------------------------------------------------------------------- /Assets/Shaders/Arc.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Arc.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/ArcTap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/ArcTap.shader -------------------------------------------------------------------------------- /Assets/Shaders/ArcTap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/ArcTap.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/ColorSpace.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/ColorSpace.cginc -------------------------------------------------------------------------------- /Assets/Shaders/ColorSpace.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/ColorSpace.cginc.meta -------------------------------------------------------------------------------- /Assets/Shaders/Grid.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Grid.shader -------------------------------------------------------------------------------- /Assets/Shaders/Grid.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Grid.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/HoldJudge.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/HoldJudge.shader -------------------------------------------------------------------------------- /Assets/Shaders/HoldJudge.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/HoldJudge.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/HoldNote.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/HoldNote.shader -------------------------------------------------------------------------------- /Assets/Shaders/HoldNote.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/HoldNote.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/InstancedSprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/InstancedSprite.shader -------------------------------------------------------------------------------- /Assets/Shaders/InstancedSprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/InstancedSprite.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/Masked.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Masked.shader -------------------------------------------------------------------------------- /Assets/Shaders/Masked.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Masked.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/NotePreview.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/NotePreview.shader -------------------------------------------------------------------------------- /Assets/Shaders/NotePreview.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/NotePreview.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol.meta -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/BlendModes.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/BlendModes.cginc -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/ColorBurn.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/ColorBurn.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Darken.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Darken.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Default.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Default.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Exclusion.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Exclusion.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/FastAdd.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/FastAdd.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/HardLight.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/HardLight.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Lighten.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Lighten.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Mesh.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Mesh.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Mesh.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Mesh.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Multiply.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Multiply.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Overlay.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Screen.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Screen.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/SoftLight.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/SoftLight.shader -------------------------------------------------------------------------------- /Assets/Shaders/Scenecontrol/Subtract.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Scenecontrol/Subtract.shader -------------------------------------------------------------------------------- /Assets/Shaders/Shadow.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Shadow.shader -------------------------------------------------------------------------------- /Assets/Shaders/Shadow.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Shadow.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/SingleLine.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/SingleLine.shader -------------------------------------------------------------------------------- /Assets/Shaders/SingleLine.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/SingleLine.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/TapNote.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/TapNote.shader -------------------------------------------------------------------------------- /Assets/Shaders/TapNote.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/TapNote.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/Trace.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Trace.shader -------------------------------------------------------------------------------- /Assets/Shaders/Trace.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Trace.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/Track.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Track.shader -------------------------------------------------------------------------------- /Assets/Shaders/Track.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/Track.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI.meta -------------------------------------------------------------------------------- /Assets/Shaders/UI/FadeMiddle.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI/FadeMiddle.shader -------------------------------------------------------------------------------- /Assets/Shaders/UI/FadeMiddle.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI/FadeMiddle.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/UI/PatternOverlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI/PatternOverlay.shader -------------------------------------------------------------------------------- /Assets/Shaders/UI/PatternOverlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI/PatternOverlay.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/UI/PracticeWaveform.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI/PracticeWaveform.shader -------------------------------------------------------------------------------- /Assets/Shaders/UI/TriangleTile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI/TriangleTile.shader -------------------------------------------------------------------------------- /Assets/Shaders/UI/TriangleTile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI/TriangleTile.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/UI/Waveform.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI/Waveform.shader -------------------------------------------------------------------------------- /Assets/Shaders/UI/Waveform.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Shaders/UI/Waveform.shader.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/en-us.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/en-us.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/es-es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/es-es.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/ja-jp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/ja-jp.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/ko.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/ko.yml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/ko.yml.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/pl.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/pl.yml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/pl.yml.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/pt-br.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/pt-br.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/th-th.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/th-th.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/vi.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/vi.yml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/vi.yml.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/zh-cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/zh-cn.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Locales/zh-tw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Locales/zh-tw.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/Macros.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Macros.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/Macros/zero.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Macros/zero.lua -------------------------------------------------------------------------------- /Assets/StreamingAssets/Macros/zero.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Macros/zero.lua.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/Macros/zero.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Macros/zero.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/Macros/zero/curve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Macros/zero/curve.lua -------------------------------------------------------------------------------- /Assets/StreamingAssets/Macros/zero/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/Macros/zero/util.lua -------------------------------------------------------------------------------- /Assets/StreamingAssets/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/credits.txt -------------------------------------------------------------------------------- /Assets/StreamingAssets/credits.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/credits.txt.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/default.arcpkg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/default.arcpkg.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/locale_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/locale_list.yml -------------------------------------------------------------------------------- /Assets/StreamingAssets/locale_list.yml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/StreamingAssets/locale_list.yml.meta -------------------------------------------------------------------------------- /Assets/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Tests.meta -------------------------------------------------------------------------------- /Assets/Tests/ChartFormat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Tests/ChartFormat.meta -------------------------------------------------------------------------------- /Assets/Tests/Remote.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Tests/Remote.meta -------------------------------------------------------------------------------- /Assets/Tests/Remote/MessagePackagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Tests/Remote/MessagePackagerTest.cs -------------------------------------------------------------------------------- /Assets/Tests/Scenecontrol.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Tests/Scenecontrol.meta -------------------------------------------------------------------------------- /Assets/Tests/Scenecontrol/KeyChannelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Tests/Scenecontrol/KeyChannelTest.cs -------------------------------------------------------------------------------- /Assets/Tests/Scenecontrol/TextChannelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Tests/Scenecontrol/TextChannelTest.cs -------------------------------------------------------------------------------- /Assets/Tests/Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Tests/Tests.asmdef -------------------------------------------------------------------------------- /Assets/Tests/Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Tests/Tests.asmdef.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisB.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisB.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisB.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisS.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisS.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisS.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSi.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSi.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSi.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSiSi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSiSi.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSiSi.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSiSi.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSiSo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSiSo.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSiSo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSiSo.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSo.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSo.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSoSi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSoSi.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSoSi.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSoSi.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSoSo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSoSo.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/AxisSoSo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/AxisSoSo.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/Marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/Marker.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/Marker.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/Marker.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/MouseLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/MouseLeft.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/MouseLeft.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/MouseLeft.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/MouseMid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/MouseMid.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/MouseMid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/MouseMid.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/MouseRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/MouseRight.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/MouseRight.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/MouseRight.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/PalleteArc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/PalleteArc.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/PalleteArc.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/PalleteArc.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/PalleteHold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/PalleteHold.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/PalleteHold.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/PalleteHold.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/PalleteSky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/PalleteSky.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/PalleteSky.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/PalleteSky.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/PalleteTap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/PalleteTap.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/PalleteTap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/PalleteTap.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Compose/PalleteTrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/PalleteTrace.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/separator.png -------------------------------------------------------------------------------- /Assets/Textures/Compose/separator.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Compose/separator.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Blank.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Blank.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Blank.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/CriticalLine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/CriticalLine.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Darken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Darken.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Darken.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Darken.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/DefaultJacket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/DefaultJacket.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/HUD.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/HUD.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/HUD/Difficulty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/HUD/Difficulty.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/HUD/InfoLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/HUD/InfoLight.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/HUD/PauseLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/HUD/PauseLight.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Indicator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Indicator.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Note.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Note.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Note/ArcBody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Note/ArcBody.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Note/ArcCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Note/ArcCap.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Note/Conflict.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Note/Conflict.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Note/Joycon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Note/Joycon.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Note/Light.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Note/Light.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Particles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Particles.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Particles/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Particles/Grid.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/PauseScreen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/PauseScreen.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/SingleLine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/SingleLine.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Track.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Track.meta -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Track/LaneHit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Track/LaneHit.png -------------------------------------------------------------------------------- /Assets/Textures/Gameplay/Track/TrackRei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Gameplay/Track/TrackRei.png -------------------------------------------------------------------------------- /Assets/Textures/Logos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos.meta -------------------------------------------------------------------------------- /Assets/Textures/Logos/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/Banner.png -------------------------------------------------------------------------------- /Assets/Textures/Logos/Banner.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/Banner.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Logos/DiscordLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/DiscordLogo.png -------------------------------------------------------------------------------- /Assets/Textures/Logos/DiscordLogo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/DiscordLogo.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Logos/KofiLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/KofiLogo.png -------------------------------------------------------------------------------- /Assets/Textures/Logos/KofiLogo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/KofiLogo.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Logos/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/Logo.png -------------------------------------------------------------------------------- /Assets/Textures/Logos/Logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/Logo.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Logos/LogoBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/LogoBack.png -------------------------------------------------------------------------------- /Assets/Textures/Logos/LogoBack.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/LogoBack.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Logos/LogoDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/LogoDesktop.png -------------------------------------------------------------------------------- /Assets/Textures/Logos/LogoDesktop.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/LogoDesktop.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Logos/LogoFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/LogoFull.png -------------------------------------------------------------------------------- /Assets/Textures/Logos/LogoFull.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/LogoFull.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Logos/LogoTransparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Logos/LogoTransparent.png -------------------------------------------------------------------------------- /Assets/Textures/Result.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result.meta -------------------------------------------------------------------------------- /Assets/Textures/Result/Background Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Background Arrow.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Button Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Button Frame.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Button Frame.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Button Frame.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Result/Clear Glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Clear Glow.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Clear Glow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Clear Glow.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Result/ClearResult.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/ClearResult.meta -------------------------------------------------------------------------------- /Assets/Textures/Result/ClearResultShort.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/ClearResultShort.meta -------------------------------------------------------------------------------- /Assets/Textures/Result/Combo Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Combo Background.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Difficulty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Difficulty.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Difficulty.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Difficulty.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Result/Grade Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Grade Background.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Grades.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Grades.meta -------------------------------------------------------------------------------- /Assets/Textures/Result/Grades/GradeA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Grades/GradeA.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Grades/GradeAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Grades/GradeAA.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Grades/GradeB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Grades/GradeB.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Grades/GradeC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Grades/GradeC.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Grades/GradeD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Grades/GradeD.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Grades/GradeEX+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Grades/GradeEX+.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Grades/GradeEX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Grades/GradeEX.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Notch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Notch.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Notch.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Notch.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Result/Score Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Score Frame.png -------------------------------------------------------------------------------- /Assets/Textures/Result/Top Triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Result/Top Triangle.png -------------------------------------------------------------------------------- /Assets/Textures/Selection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Selection.meta -------------------------------------------------------------------------------- /Assets/Textures/Selection/Buttons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Selection/Buttons.meta -------------------------------------------------------------------------------- /Assets/Textures/Selection/Dialogs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Selection/Dialogs.meta -------------------------------------------------------------------------------- /Assets/Textures/Selection/Info.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Selection/Info.meta -------------------------------------------------------------------------------- /Assets/Textures/Selection/Info/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Selection/Info/Button.png -------------------------------------------------------------------------------- /Assets/Textures/Selection/Info/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Selection/Info/Info.png -------------------------------------------------------------------------------- /Assets/Textures/Selection/LevelRow.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Selection/LevelRow.meta -------------------------------------------------------------------------------- /Assets/Textures/Shutter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Shutter.meta -------------------------------------------------------------------------------- /Assets/Textures/Shutter/Corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Shutter/Corners.png -------------------------------------------------------------------------------- /Assets/Textures/Shutter/Corners.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Shutter/Corners.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Shutter/CornersThick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Shutter/CornersThick.png -------------------------------------------------------------------------------- /Assets/Textures/Shutter/Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Shutter/Frame.png -------------------------------------------------------------------------------- /Assets/Textures/Shutter/Frame.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Shutter/Frame.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Shutter/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Shutter/Grid.png -------------------------------------------------------------------------------- /Assets/Textures/Shutter/Grid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/Shutter/Grid.png.meta -------------------------------------------------------------------------------- /Assets/Textures/TextureImporter.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Assets/Textures/TextureImporter.preset -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_iOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/BurstAotSettings_iOS.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/README.md -------------------------------------------------------------------------------- /TRANSLATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/TRANSLATING.md -------------------------------------------------------------------------------- /decrypt_secret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/decrypt_secret.sh -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /omnisharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/omnisharp.json -------------------------------------------------------------------------------- /secret_files.zip.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcthesia/ArcCreate/HEAD/secret_files.zip.gpg --------------------------------------------------------------------------------