├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── pr-artifacts.yml │ ├── publish-debug.yml │ ├── publish-release.yml │ └── publish-snapshot.yml ├── .gitignore ├── .hintrc ├── .prettierignore ├── .prettierrc ├── .vercelignore ├── LICENSE ├── README.md ├── android ├── .gitignore ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── deploymentTargetSelector.xml │ ├── migrations.xml │ ├── misc.xml │ └── other.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── capacitor.build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── cn │ │ │ │ └── phizone │ │ │ │ └── player │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-land-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-ldpi │ │ │ └── splash.png │ │ │ ├── drawable-land-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-night-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-night-ldpi │ │ │ └── splash.png │ │ │ ├── drawable-land-night-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-night-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-night-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-night-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-night │ │ │ └── splash.png │ │ │ ├── drawable-port-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-ldpi │ │ │ └── splash.png │ │ │ ├── drawable-port-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-night-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-night-ldpi │ │ │ └── splash.png │ │ │ ├── drawable-port-night-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-night-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-night-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-night-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── splash.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-ldpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── file_paths.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── getcapacitor │ │ └── myapp │ │ └── ExampleUnitTest.java ├── build.gradle ├── capacitor.settings.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── variables.gradle ├── capacitor.config.ts ├── eslint.config.js ├── icons ├── icon-128.webp ├── icon-192.webp ├── icon-256.webp ├── icon-48.webp ├── icon-512.webp ├── icon-72.webp └── icon-96.webp ├── ios ├── .gitignore └── App │ ├── App.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── App.xcscheme │ │ └── ShareExtension.xcscheme │ ├── App.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ ├── App │ ├── App.entitlements │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-512@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Splash.imageset │ │ │ ├── Contents.json │ │ │ ├── Default@1x~universal~anyany-dark.png │ │ │ ├── Default@1x~universal~anyany.png │ │ │ ├── Default@2x~universal~anyany-dark.png │ │ │ ├── Default@2x~universal~anyany.png │ │ │ ├── Default@3x~universal~anyany-dark.png │ │ │ ├── Default@3x~universal~anyany.png │ │ │ ├── splash-2732x2732-1.png │ │ │ ├── splash-2732x2732-2.png │ │ │ └── splash-2732x2732.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Info.plist │ ├── Podfile │ ├── Podfile.lock │ └── ShareExtension │ ├── Base.lproj │ └── MainInterface.storyboard │ ├── Info.plist │ ├── ShareExtension.entitlements │ └── ShareViewController.swift ├── leanengine.yaml ├── messages ├── en.json └── zh.json ├── package.json ├── patches └── phaser@3.88.2.patch ├── pnpm-lock.yaml ├── postcss.config.js ├── project.inlang ├── .gitignore ├── project_id └── settings.json ├── resources ├── icon-background.png ├── icon-foreground.png ├── icon-only.png ├── splash-dark.png └── splash.png ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── 64x64.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── src │ ├── audio.rs │ ├── ffmpeg.rs │ ├── lib.rs │ └── main.rs └── tauri.conf.json ├── src ├── app.css ├── app.d.ts ├── app.html ├── global.d.ts ├── hooks.client.ts ├── hooks.server.ts ├── hooks.ts ├── lib │ ├── components │ │ ├── Distribution.svelte │ │ ├── FancyButton.svelte │ │ ├── LanguageSwitcher.svelte │ │ ├── LocalStorage.svelte │ │ └── Preferences.svelte │ ├── converters │ │ ├── phiediter │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── phira │ │ │ └── respack.ts │ ├── index.ts │ ├── player │ │ ├── EventBus.ts │ │ ├── Player.svelte │ │ ├── constants.ts │ │ ├── handlers │ │ │ ├── JudgmentHandler.ts │ │ │ ├── KeyboardHandler.ts │ │ │ ├── PointerHandler.ts │ │ │ ├── ResourcePackHandler.ts │ │ │ └── StatisticsHandler.ts │ │ ├── main.ts │ │ ├── objects │ │ │ ├── GameUI.ts │ │ │ ├── HitEffects.ts │ │ │ ├── Line.ts │ │ │ ├── LongNote.ts │ │ │ ├── Node.ts │ │ │ ├── PlainNote.ts │ │ │ ├── ResultsUI.ts │ │ │ ├── ShaderNode.ts │ │ │ ├── ShaderPipeline.ts │ │ │ ├── Signal.ts │ │ │ └── Video.ts │ │ ├── scenes │ │ │ └── Game.ts │ │ ├── services │ │ │ ├── audio.ts │ │ │ ├── clock.ts │ │ │ ├── database.ts │ │ │ ├── ffmpeg │ │ │ │ ├── index.ts │ │ │ │ └── tauri.ts │ │ │ └── renderer.ts │ │ └── utils.ts │ ├── types.ts │ ├── utils.ts │ └── workers │ │ └── FrameSender.ts └── routes │ ├── (app) │ ├── +layout.svelte │ ├── +page.svelte │ └── app │ │ ├── +page.svelte │ │ └── +page.ts │ ├── +layout.svelte │ ├── +layout.ts │ └── play │ └── +page.svelte ├── static.json ├── static ├── .well-known │ ├── apple-app-site-association │ └── assetlinks.json ├── _headers ├── banner.png ├── favicon.ico ├── ffmpeg │ ├── ffmpeg-core.js │ └── ffmpeg-core.wasm ├── fonts │ ├── NotoSansSC │ │ ├── NotoSansSC.ttf │ │ └── OFL.txt │ └── Outfit │ │ ├── OFL.txt │ │ ├── Outfit.fnt │ │ ├── Outfit.png │ │ └── Outfit.ttf ├── game │ ├── HitEffects.png │ ├── Pause.svg │ ├── Progress.png │ ├── ending │ │ ├── GradeHit.wav │ │ ├── LevelOver0.wav │ │ ├── LevelOver1.wav │ │ ├── LevelOver2.wav │ │ ├── LevelOver3.wav │ │ └── LevelOver4.wav │ ├── grades │ │ ├── A.png │ │ ├── B.png │ │ ├── C.png │ │ ├── F.png │ │ ├── Phi.png │ │ ├── S.png │ │ ├── V-FC.png │ │ └── V.png │ ├── hitsounds │ │ ├── Drag.wav │ │ ├── Flick.wav │ │ └── Tap.wav │ ├── line.png │ ├── notes │ │ ├── Drag.png │ │ ├── DragHL.png │ │ ├── Flick.png │ │ ├── FlickHL.png │ │ ├── HoldBody.png │ │ ├── HoldBodyHL.png │ │ ├── HoldHead.png │ │ ├── HoldHeadHL.png │ │ ├── HoldTail.png │ │ ├── HoldTailHL.png │ │ ├── Tap.png │ │ └── TapHL.png │ └── shaders │ │ ├── chromatic.glsl │ │ ├── circleBlur.glsl │ │ ├── fisheye.glsl │ │ ├── glitch.glsl │ │ ├── grayscale.glsl │ │ ├── noise.glsl │ │ ├── pixel.glsl │ │ ├── radialBlur.glsl │ │ ├── shockwave.glsl │ │ └── vignette.glsl └── landing │ ├── polygon-bg-element-dark.svg │ └── polygon-bg-element.svg ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json └── vite ├── config.dev.mjs └── config.prod.mjs /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pr-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.github/workflows/pr-artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/publish-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.github/workflows/publish-debug.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.github/workflows/publish-snapshot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.gitignore -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.hintrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- 1 | /* 2 | !build 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/.idea/compiler.xml -------------------------------------------------------------------------------- /android/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /android/.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /android/.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/.idea/migrations.xml -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/.idea/misc.xml -------------------------------------------------------------------------------- /android/.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/.idea/other.xml -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/cn/phizone/player/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/java/cn/phizone/player/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-ldpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-ldpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-night-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-night-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-night-ldpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-night-ldpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-night-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-night-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-night-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-night-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-night-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-night-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-night-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-night-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-night/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-ldpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-ldpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-night-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-night-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-night-ldpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-night-ldpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-night-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-night-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-night-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-night-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-night-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-night-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-night-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-night-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/variables.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/android/variables.gradle -------------------------------------------------------------------------------- /capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/capacitor.config.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/eslint.config.js -------------------------------------------------------------------------------- /icons/icon-128.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/icons/icon-128.webp -------------------------------------------------------------------------------- /icons/icon-192.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/icons/icon-192.webp -------------------------------------------------------------------------------- /icons/icon-256.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/icons/icon-256.webp -------------------------------------------------------------------------------- /icons/icon-48.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/icons/icon-48.webp -------------------------------------------------------------------------------- /icons/icon-512.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/icons/icon-512.webp -------------------------------------------------------------------------------- /icons/icon-72.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/icons/icon-72.webp -------------------------------------------------------------------------------- /icons/icon-96.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/icons/icon-96.webp -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/xcshareddata/xcschemes/ShareExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App.xcodeproj/xcshareddata/xcschemes/ShareExtension.xcscheme -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/App/App/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/App.entitlements -------------------------------------------------------------------------------- /ios/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Default@1x~universal~anyany-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Default@1x~universal~anyany-dark.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Default@1x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Default@1x~universal~anyany.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Default@2x~universal~anyany-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Default@2x~universal~anyany-dark.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Default@3x~universal~anyany-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Default@3x~universal~anyany-dark.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Default@3x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Default@3x~universal~anyany.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/App/Info.plist -------------------------------------------------------------------------------- /ios/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/Podfile -------------------------------------------------------------------------------- /ios/App/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/Podfile.lock -------------------------------------------------------------------------------- /ios/App/ShareExtension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/ShareExtension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /ios/App/ShareExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/ShareExtension/Info.plist -------------------------------------------------------------------------------- /ios/App/ShareExtension/ShareExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/ShareExtension/ShareExtension.entitlements -------------------------------------------------------------------------------- /ios/App/ShareExtension/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/ios/App/ShareExtension/ShareViewController.swift -------------------------------------------------------------------------------- /leanengine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/leanengine.yaml -------------------------------------------------------------------------------- /messages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/messages/en.json -------------------------------------------------------------------------------- /messages/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/messages/zh.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/package.json -------------------------------------------------------------------------------- /patches/phaser@3.88.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/patches/phaser@3.88.2.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/postcss.config.js -------------------------------------------------------------------------------- /project.inlang/.gitignore: -------------------------------------------------------------------------------- 1 | cache -------------------------------------------------------------------------------- /project.inlang/project_id: -------------------------------------------------------------------------------- 1 | czE7c82O7cdhDGeUZY -------------------------------------------------------------------------------- /project.inlang/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/project.inlang/settings.json -------------------------------------------------------------------------------- /resources/icon-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/resources/icon-background.png -------------------------------------------------------------------------------- /resources/icon-foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/resources/icon-foreground.png -------------------------------------------------------------------------------- /resources/icon-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/resources/icon-only.png -------------------------------------------------------------------------------- /resources/splash-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/resources/splash-dark.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/64x64.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/src/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/src/audio.rs -------------------------------------------------------------------------------- /src-tauri/src/ffmpeg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/src/ffmpeg.rs -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/app.html -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/hooks.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/hooks.client.ts -------------------------------------------------------------------------------- /src/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/hooks.server.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/lib/components/Distribution.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/components/Distribution.svelte -------------------------------------------------------------------------------- /src/lib/components/FancyButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/components/FancyButton.svelte -------------------------------------------------------------------------------- /src/lib/components/LanguageSwitcher.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/components/LanguageSwitcher.svelte -------------------------------------------------------------------------------- /src/lib/components/LocalStorage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/components/LocalStorage.svelte -------------------------------------------------------------------------------- /src/lib/components/Preferences.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/components/Preferences.svelte -------------------------------------------------------------------------------- /src/lib/converters/phiediter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/converters/phiediter/index.ts -------------------------------------------------------------------------------- /src/lib/converters/phiediter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/converters/phiediter/types.ts -------------------------------------------------------------------------------- /src/lib/converters/phira/respack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/converters/phira/respack.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/player/EventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/EventBus.ts -------------------------------------------------------------------------------- /src/lib/player/Player.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/Player.svelte -------------------------------------------------------------------------------- /src/lib/player/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/constants.ts -------------------------------------------------------------------------------- /src/lib/player/handlers/JudgmentHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/handlers/JudgmentHandler.ts -------------------------------------------------------------------------------- /src/lib/player/handlers/KeyboardHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/handlers/KeyboardHandler.ts -------------------------------------------------------------------------------- /src/lib/player/handlers/PointerHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/handlers/PointerHandler.ts -------------------------------------------------------------------------------- /src/lib/player/handlers/ResourcePackHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/handlers/ResourcePackHandler.ts -------------------------------------------------------------------------------- /src/lib/player/handlers/StatisticsHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/handlers/StatisticsHandler.ts -------------------------------------------------------------------------------- /src/lib/player/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/main.ts -------------------------------------------------------------------------------- /src/lib/player/objects/GameUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/GameUI.ts -------------------------------------------------------------------------------- /src/lib/player/objects/HitEffects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/HitEffects.ts -------------------------------------------------------------------------------- /src/lib/player/objects/Line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/Line.ts -------------------------------------------------------------------------------- /src/lib/player/objects/LongNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/LongNote.ts -------------------------------------------------------------------------------- /src/lib/player/objects/Node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/Node.ts -------------------------------------------------------------------------------- /src/lib/player/objects/PlainNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/PlainNote.ts -------------------------------------------------------------------------------- /src/lib/player/objects/ResultsUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/ResultsUI.ts -------------------------------------------------------------------------------- /src/lib/player/objects/ShaderNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/ShaderNode.ts -------------------------------------------------------------------------------- /src/lib/player/objects/ShaderPipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/ShaderPipeline.ts -------------------------------------------------------------------------------- /src/lib/player/objects/Signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/Signal.ts -------------------------------------------------------------------------------- /src/lib/player/objects/Video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/objects/Video.ts -------------------------------------------------------------------------------- /src/lib/player/scenes/Game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/scenes/Game.ts -------------------------------------------------------------------------------- /src/lib/player/services/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/services/audio.ts -------------------------------------------------------------------------------- /src/lib/player/services/clock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/services/clock.ts -------------------------------------------------------------------------------- /src/lib/player/services/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/services/database.ts -------------------------------------------------------------------------------- /src/lib/player/services/ffmpeg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/services/ffmpeg/index.ts -------------------------------------------------------------------------------- /src/lib/player/services/ffmpeg/tauri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/services/ffmpeg/tauri.ts -------------------------------------------------------------------------------- /src/lib/player/services/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/services/renderer.ts -------------------------------------------------------------------------------- /src/lib/player/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/player/utils.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/workers/FrameSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/lib/workers/FrameSender.ts -------------------------------------------------------------------------------- /src/routes/(app)/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/routes/(app)/+layout.svelte -------------------------------------------------------------------------------- /src/routes/(app)/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/routes/(app)/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/app/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/routes/(app)/app/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/app/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/routes/(app)/app/+page.ts -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/routes/+layout.ts -------------------------------------------------------------------------------- /src/routes/play/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/src/routes/play/+page.svelte -------------------------------------------------------------------------------- /static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static.json -------------------------------------------------------------------------------- /static/.well-known/apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/.well-known/apple-app-site-association -------------------------------------------------------------------------------- /static/.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/.well-known/assetlinks.json -------------------------------------------------------------------------------- /static/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/_headers -------------------------------------------------------------------------------- /static/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/banner.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/ffmpeg/ffmpeg-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/ffmpeg/ffmpeg-core.js -------------------------------------------------------------------------------- /static/ffmpeg/ffmpeg-core.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/ffmpeg/ffmpeg-core.wasm -------------------------------------------------------------------------------- /static/fonts/NotoSansSC/NotoSansSC.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/fonts/NotoSansSC/NotoSansSC.ttf -------------------------------------------------------------------------------- /static/fonts/NotoSansSC/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/fonts/NotoSansSC/OFL.txt -------------------------------------------------------------------------------- /static/fonts/Outfit/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/fonts/Outfit/OFL.txt -------------------------------------------------------------------------------- /static/fonts/Outfit/Outfit.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/fonts/Outfit/Outfit.fnt -------------------------------------------------------------------------------- /static/fonts/Outfit/Outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/fonts/Outfit/Outfit.png -------------------------------------------------------------------------------- /static/fonts/Outfit/Outfit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/fonts/Outfit/Outfit.ttf -------------------------------------------------------------------------------- /static/game/HitEffects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/HitEffects.png -------------------------------------------------------------------------------- /static/game/Pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/Pause.svg -------------------------------------------------------------------------------- /static/game/Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/Progress.png -------------------------------------------------------------------------------- /static/game/ending/GradeHit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/ending/GradeHit.wav -------------------------------------------------------------------------------- /static/game/ending/LevelOver0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/ending/LevelOver0.wav -------------------------------------------------------------------------------- /static/game/ending/LevelOver1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/ending/LevelOver1.wav -------------------------------------------------------------------------------- /static/game/ending/LevelOver2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/ending/LevelOver2.wav -------------------------------------------------------------------------------- /static/game/ending/LevelOver3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/ending/LevelOver3.wav -------------------------------------------------------------------------------- /static/game/ending/LevelOver4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/ending/LevelOver4.wav -------------------------------------------------------------------------------- /static/game/grades/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/grades/A.png -------------------------------------------------------------------------------- /static/game/grades/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/grades/B.png -------------------------------------------------------------------------------- /static/game/grades/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/grades/C.png -------------------------------------------------------------------------------- /static/game/grades/F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/grades/F.png -------------------------------------------------------------------------------- /static/game/grades/Phi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/grades/Phi.png -------------------------------------------------------------------------------- /static/game/grades/S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/grades/S.png -------------------------------------------------------------------------------- /static/game/grades/V-FC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/grades/V-FC.png -------------------------------------------------------------------------------- /static/game/grades/V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/grades/V.png -------------------------------------------------------------------------------- /static/game/hitsounds/Drag.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/hitsounds/Drag.wav -------------------------------------------------------------------------------- /static/game/hitsounds/Flick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/hitsounds/Flick.wav -------------------------------------------------------------------------------- /static/game/hitsounds/Tap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/hitsounds/Tap.wav -------------------------------------------------------------------------------- /static/game/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/line.png -------------------------------------------------------------------------------- /static/game/notes/Drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/Drag.png -------------------------------------------------------------------------------- /static/game/notes/DragHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/DragHL.png -------------------------------------------------------------------------------- /static/game/notes/Flick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/Flick.png -------------------------------------------------------------------------------- /static/game/notes/FlickHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/FlickHL.png -------------------------------------------------------------------------------- /static/game/notes/HoldBody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/HoldBody.png -------------------------------------------------------------------------------- /static/game/notes/HoldBodyHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/HoldBodyHL.png -------------------------------------------------------------------------------- /static/game/notes/HoldHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/HoldHead.png -------------------------------------------------------------------------------- /static/game/notes/HoldHeadHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/HoldHeadHL.png -------------------------------------------------------------------------------- /static/game/notes/HoldTail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/HoldTail.png -------------------------------------------------------------------------------- /static/game/notes/HoldTailHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/HoldTailHL.png -------------------------------------------------------------------------------- /static/game/notes/Tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/Tap.png -------------------------------------------------------------------------------- /static/game/notes/TapHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/notes/TapHL.png -------------------------------------------------------------------------------- /static/game/shaders/chromatic.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/chromatic.glsl -------------------------------------------------------------------------------- /static/game/shaders/circleBlur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/circleBlur.glsl -------------------------------------------------------------------------------- /static/game/shaders/fisheye.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/fisheye.glsl -------------------------------------------------------------------------------- /static/game/shaders/glitch.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/glitch.glsl -------------------------------------------------------------------------------- /static/game/shaders/grayscale.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/grayscale.glsl -------------------------------------------------------------------------------- /static/game/shaders/noise.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/noise.glsl -------------------------------------------------------------------------------- /static/game/shaders/pixel.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/pixel.glsl -------------------------------------------------------------------------------- /static/game/shaders/radialBlur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/radialBlur.glsl -------------------------------------------------------------------------------- /static/game/shaders/shockwave.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/shockwave.glsl -------------------------------------------------------------------------------- /static/game/shaders/vignette.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/game/shaders/vignette.glsl -------------------------------------------------------------------------------- /static/landing/polygon-bg-element-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/landing/polygon-bg-element-dark.svg -------------------------------------------------------------------------------- /static/landing/polygon-bg-element.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/static/landing/polygon-bg-element.svg -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite/config.dev.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/vite/config.dev.mjs -------------------------------------------------------------------------------- /vite/config.prod.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhiZone/player/HEAD/vite/config.prod.mjs --------------------------------------------------------------------------------