├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── PataponGameHost.sln ├── PataponGameHost.sln.DotSettings ├── README.md ├── clients ├── .sconsign.dblite ├── _dotnet_lib_godot │ ├── PataNext.Export.GodotNE.dll │ ├── PataNext.Export.GodotNE.so │ └── README.md └── godot │ ├── .gitignore │ ├── .import │ ├── .gdignore │ ├── Model.fbx-0a690ee25722fb55bcc3b17ccae809c9.md5 │ ├── Model.glb-59400e7bfc6bd4694d9cf128ac6cc659.md5 │ ├── Model_Body.glb-a7ea6091ede89497716984a8f58f9a18.md5 │ ├── Model_Body.glb-a7ea6091ede89497716984a8f58f9a18.scn │ ├── Model_Foot.glb-d2f432b7743b63090d4dac6fffa50650.md5 │ ├── Model_Foot.glb-d2f432b7743b63090d4dac6fffa50650.scn │ ├── Model_Hand.glb-c99cc16231ac506a1716c43ffc90f2a3.md5 │ ├── Model_Hand.glb-c99cc16231ac506a1716c43ffc90f2a3.scn │ ├── Model_Head.glb-f6217a6461b6ebbc199398af36dc2e58.md5 │ ├── Model_Head.glb-f6217a6461b6ebbc199398af36dc2e58.scn │ ├── Model_Scarf0.glb-2aede7db0381f73df3fcab9a407d73cf.md5 │ ├── Model_Scarf0.glb-2aede7db0381f73df3fcab9a407d73cf.scn │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ └── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── .sconsign.dblite │ ├── ModuleRunner.gd │ ├── UI.tscn │ ├── addons │ └── autoanim │ │ ├── autoanim.gd │ │ └── plugin.cfg │ ├── debug_test.tscn │ ├── default_bus_layout.tres │ ├── dotnet │ ├── .gitignore │ ├── dotnet_lib.gdextension │ └── managed │ │ ├── PataNext.Export.GodotNE.dll │ │ └── PataNext.Export.GodotNE.so │ ├── export_presets.cfg │ ├── icon.png │ ├── icon.png.import │ ├── libs │ └── line_renderer │ │ └── LineRenderer.gd │ ├── linux.sh │ ├── linux.x86_64 │ ├── plane.tscn │ ├── project.godot │ ├── rhythm_engine.gd │ ├── rhythm_engine.tscn │ ├── scenes │ ├── components │ │ └── gpu_spline │ │ │ ├── gpu_spline_bezier.gd │ │ │ └── gpu_spline_bezier.tscn │ └── models │ │ └── uberhero │ │ ├── ModelSpline.gd │ │ ├── Old.ModelSpline.gd │ │ ├── Uberhero.tscn │ │ ├── UberheroNoScript.tscn │ │ ├── __int │ │ ├── Body.material │ │ ├── Model.blend │ │ ├── Model.blend.import │ │ ├── Model_Body.glb │ │ ├── Model_Body.glb.import │ │ ├── Model_Foot.glb │ │ ├── Model_Foot.glb.import │ │ ├── Model_Hand.glb │ │ ├── Model_Hand.glb.import │ │ ├── Model_Head.glb │ │ ├── Model_Head.glb.import │ │ ├── Model_Scarf0.glb │ │ ├── Model_Scarf0.glb.import │ │ ├── Scarf.material │ │ ├── Scarf.tscn │ │ ├── Toon.material │ │ ├── Toon_001.material │ │ ├── Toon_002.material │ │ └── Toon_003.material │ │ ├── __int2 │ │ ├── Body.tscn │ │ ├── LegBase.tscn │ │ ├── ScarfBase.tscn │ │ ├── ShoulderBase.tscn │ │ ├── scarf_size.png │ │ └── scarf_size.png.import │ │ └── new_shader.tres │ ├── shaders │ ├── bezier_spline.gdshader │ ├── includes │ │ └── sd_bezier.gdshaderinc │ └── scarf_spline.gdshader │ ├── singletons │ └── revghost.tscn │ └── world.tscn ├── dependencies ├── .nuget │ └── .placeholder └── deps.json ├── nuget.config ├── src ├── PataNext.Export.Desktop │ ├── AssemblyInfo.cs │ ├── EntryModule.cs │ ├── PataNext.Export.Desktop.csproj │ ├── Program.cs │ ├── TestSimulationSystem.cs │ └── game.ico ├── PataNext.Export.Godot │ ├── AssemblyInfo.cs │ ├── Core │ │ └── Presentation │ │ │ ├── OldPresentationGodotBaseSystem.cs │ │ │ └── PresentationGodotBaseSystem.cs │ ├── EntryModule.cs │ ├── GodotComponents │ │ └── SplineModel.cs │ ├── GodotModuleRunner.cs │ ├── PataNext.Export.Godot.csproj │ ├── PataNext.Export.Godot.runtimeconfig.json │ ├── Program.cs │ ├── RhythmEnginePresentation.cs │ └── UnitPresentation.cs ├── PataNext.Game.Client.Resources │ ├── Abilities │ │ ├── tate │ │ │ └── TateEnergyField.ogg │ │ └── yari │ │ │ └── YariFearSpear.ogg │ ├── AssemblyInfo.cs │ ├── Bgm │ │ ├── ZippedTheme.zip │ │ └── ponbekedetta_rock.zip │ ├── Fonts │ │ ├── ar_cena.fnt │ │ ├── ar_cena_0.png │ │ ├── mojipon.fnt │ │ └── mojipon_0.png │ ├── Items │ │ ├── Consumables │ │ │ └── st.pn_-item_type_-consumable │ │ │ │ └── rock.json │ │ └── Equipments │ │ │ ├── st.pn_-item_type_-bow │ │ │ └── default_bow.json │ │ │ ├── st.pn_-item_type_-flag │ │ │ └── default_flag.json │ │ │ ├── st.pn_-item_type_-helm │ │ │ └── default_helm.json │ │ │ ├── st.pn_-item_type_-mask │ │ │ └── yarida.json │ │ │ ├── st.pn_-item_type_-shield │ │ │ └── default_shield.json │ │ │ ├── st.pn_-item_type_-spear │ │ │ └── default_spear.json │ │ │ └── st.pn_-item_type_-sword │ │ │ └── default_sword.json │ ├── Kits │ │ └── taterazay.json │ ├── Module.cs │ ├── PataNext.Game.Client.Resources.csproj │ ├── Textures │ │ ├── patanext_background_2.png │ │ ├── patanext_logo.png │ │ ├── patanext_logo_blur.png │ │ ├── popup_update.png │ │ ├── progress_bar_side.png │ │ ├── sidebar_changelogs.png │ │ └── sidebar_settings.png │ └── paket.references ├── PataNext.Game.Client │ ├── AssemblyInfo.cs │ ├── Core │ │ └── Presentation │ │ │ ├── IPresentationLoop.cs │ │ │ ├── PresentationBaseSystem.cs │ │ │ └── UpdatePresentationSystems.cs │ ├── Module.cs │ ├── PataNext.Game.Client.csproj │ └── RhythmEngineAudio │ │ ├── BGM │ │ ├── BFileDescription.cs │ │ ├── BgmDirector.cs │ │ ├── BgmStore.cs │ │ └── Directors │ │ │ ├── BgmDirectorSystemBase.cs │ │ │ ├── Defaults │ │ │ ├── BgmDefaultDirector.cs │ │ │ ├── BgmDefaultDirectorCommandsSystem.cs │ │ │ ├── BgmDefaultDirectorSoundtrackSystem.cs │ │ │ └── BgmDefaultSamplesLoader.cs │ │ │ └── TaskMap.cs │ │ ├── Resources │ │ ├── Drums │ │ │ ├── drum_1_0.ogg │ │ │ ├── drum_1_1.ogg │ │ │ ├── drum_1_2.ogg │ │ │ ├── drum_2_0.ogg │ │ │ ├── drum_2_1.ogg │ │ │ ├── drum_2_2.ogg │ │ │ ├── drum_3_0.ogg │ │ │ ├── drum_3_1.ogg │ │ │ ├── drum_3_2.ogg │ │ │ ├── drum_4_0.ogg │ │ │ ├── drum_4_1.ogg │ │ │ └── drum_4_2.ogg │ │ ├── on_enter_fever.wav │ │ ├── on_fever_lost.wav │ │ ├── on_new_beat.ogg │ │ └── on_perfect.wav │ │ └── Systems │ │ ├── LoadBgmSystem.cs │ │ ├── OnNewBeatSystem.cs │ │ ├── PresentationRhythmEngineSystemBase.cs │ │ └── ShoutDrumSystem.cs ├── PataNext.Game │ ├── AssemblyInfo.cs │ ├── Module.cs │ ├── Modules │ │ ├── Abilities │ │ │ ├── AbilitySpawner.cs │ │ │ ├── Components │ │ │ │ └── AbilityModifyStatsOnChaining.cs │ │ │ ├── Module.cs │ │ │ ├── StatisticModifier.cs │ │ │ ├── StatisticsModifierJson.cs │ │ │ ├── Storages │ │ │ │ └── AbilityDescriptionStorage.cs │ │ │ └── SystemBase │ │ │ │ └── BaseRhythmAbilityProvider.cs │ │ └── RhythmEngine │ │ │ ├── CommandIdentifier.cs │ │ │ ├── Commands.cs │ │ │ ├── CreateCommandSystem.cs │ │ │ └── Module.cs │ ├── PataNext.Game.csproj │ └── global.usings.cs └── PataNext.Module.Abilities │ ├── AssemblyInfo.cs │ ├── Descriptions │ ├── JumpCommand │ │ └── DefaultJump.json │ ├── MarchCommand │ │ └── DefaultMarch.json │ └── README.md │ ├── Module.cs │ ├── PataNext.Module.Abilities.csproj │ ├── Providers │ ├── Common │ │ ├── DefaultJumpAbility.cs │ │ └── DefaultMarchAbility.cs │ └── README.md │ └── Scripts │ ├── Common │ ├── DefaultJumpScript.cs │ └── DefaultMarchScript.cs │ └── README.md ├── tools ├── godot │ ├── script.cs │ └── setup.csproj └── setup │ ├── script.cs │ └── setup.csproj └── wiki_resources ├── logo.png └── patanext_logo_banner.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/LICENSE -------------------------------------------------------------------------------- /PataponGameHost.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/PataponGameHost.sln -------------------------------------------------------------------------------- /PataponGameHost.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/PataponGameHost.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/README.md -------------------------------------------------------------------------------- /clients/.sconsign.dblite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/.sconsign.dblite -------------------------------------------------------------------------------- /clients/_dotnet_lib_godot/PataNext.Export.GodotNE.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/_dotnet_lib_godot/PataNext.Export.GodotNE.dll -------------------------------------------------------------------------------- /clients/_dotnet_lib_godot/PataNext.Export.GodotNE.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/_dotnet_lib_godot/PataNext.Export.GodotNE.so -------------------------------------------------------------------------------- /clients/_dotnet_lib_godot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/_dotnet_lib_godot/README.md -------------------------------------------------------------------------------- /clients/godot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.gitignore -------------------------------------------------------------------------------- /clients/godot/.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /clients/godot/.import/Model.fbx-0a690ee25722fb55bcc3b17ccae809c9.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model.fbx-0a690ee25722fb55bcc3b17ccae809c9.md5 -------------------------------------------------------------------------------- /clients/godot/.import/Model.glb-59400e7bfc6bd4694d9cf128ac6cc659.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model.glb-59400e7bfc6bd4694d9cf128ac6cc659.md5 -------------------------------------------------------------------------------- /clients/godot/.import/Model_Body.glb-a7ea6091ede89497716984a8f58f9a18.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Body.glb-a7ea6091ede89497716984a8f58f9a18.md5 -------------------------------------------------------------------------------- /clients/godot/.import/Model_Body.glb-a7ea6091ede89497716984a8f58f9a18.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Body.glb-a7ea6091ede89497716984a8f58f9a18.scn -------------------------------------------------------------------------------- /clients/godot/.import/Model_Foot.glb-d2f432b7743b63090d4dac6fffa50650.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Foot.glb-d2f432b7743b63090d4dac6fffa50650.md5 -------------------------------------------------------------------------------- /clients/godot/.import/Model_Foot.glb-d2f432b7743b63090d4dac6fffa50650.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Foot.glb-d2f432b7743b63090d4dac6fffa50650.scn -------------------------------------------------------------------------------- /clients/godot/.import/Model_Hand.glb-c99cc16231ac506a1716c43ffc90f2a3.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Hand.glb-c99cc16231ac506a1716c43ffc90f2a3.md5 -------------------------------------------------------------------------------- /clients/godot/.import/Model_Hand.glb-c99cc16231ac506a1716c43ffc90f2a3.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Hand.glb-c99cc16231ac506a1716c43ffc90f2a3.scn -------------------------------------------------------------------------------- /clients/godot/.import/Model_Head.glb-f6217a6461b6ebbc199398af36dc2e58.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Head.glb-f6217a6461b6ebbc199398af36dc2e58.md5 -------------------------------------------------------------------------------- /clients/godot/.import/Model_Head.glb-f6217a6461b6ebbc199398af36dc2e58.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Head.glb-f6217a6461b6ebbc199398af36dc2e58.scn -------------------------------------------------------------------------------- /clients/godot/.import/Model_Scarf0.glb-2aede7db0381f73df3fcab9a407d73cf.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Scarf0.glb-2aede7db0381f73df3fcab9a407d73cf.md5 -------------------------------------------------------------------------------- /clients/godot/.import/Model_Scarf0.glb-2aede7db0381f73df3fcab9a407d73cf.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/Model_Scarf0.glb-2aede7db0381f73df3fcab9a407d73cf.scn -------------------------------------------------------------------------------- /clients/godot/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 -------------------------------------------------------------------------------- /clients/godot/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /clients/godot/.sconsign.dblite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/.sconsign.dblite -------------------------------------------------------------------------------- /clients/godot/ModuleRunner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/ModuleRunner.gd -------------------------------------------------------------------------------- /clients/godot/UI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/UI.tscn -------------------------------------------------------------------------------- /clients/godot/addons/autoanim/autoanim.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/addons/autoanim/autoanim.gd -------------------------------------------------------------------------------- /clients/godot/addons/autoanim/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/addons/autoanim/plugin.cfg -------------------------------------------------------------------------------- /clients/godot/debug_test.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/debug_test.tscn -------------------------------------------------------------------------------- /clients/godot/default_bus_layout.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/default_bus_layout.tres -------------------------------------------------------------------------------- /clients/godot/dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/dotnet/.gitignore -------------------------------------------------------------------------------- /clients/godot/dotnet/dotnet_lib.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/dotnet/dotnet_lib.gdextension -------------------------------------------------------------------------------- /clients/godot/dotnet/managed/PataNext.Export.GodotNE.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/dotnet/managed/PataNext.Export.GodotNE.dll -------------------------------------------------------------------------------- /clients/godot/dotnet/managed/PataNext.Export.GodotNE.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/dotnet/managed/PataNext.Export.GodotNE.so -------------------------------------------------------------------------------- /clients/godot/export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/export_presets.cfg -------------------------------------------------------------------------------- /clients/godot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/icon.png -------------------------------------------------------------------------------- /clients/godot/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/icon.png.import -------------------------------------------------------------------------------- /clients/godot/libs/line_renderer/LineRenderer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/libs/line_renderer/LineRenderer.gd -------------------------------------------------------------------------------- /clients/godot/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/linux.sh -------------------------------------------------------------------------------- /clients/godot/linux.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/linux.x86_64 -------------------------------------------------------------------------------- /clients/godot/plane.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/plane.tscn -------------------------------------------------------------------------------- /clients/godot/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/project.godot -------------------------------------------------------------------------------- /clients/godot/rhythm_engine.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/rhythm_engine.gd -------------------------------------------------------------------------------- /clients/godot/rhythm_engine.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/rhythm_engine.tscn -------------------------------------------------------------------------------- /clients/godot/scenes/components/gpu_spline/gpu_spline_bezier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/components/gpu_spline/gpu_spline_bezier.gd -------------------------------------------------------------------------------- /clients/godot/scenes/components/gpu_spline/gpu_spline_bezier.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/components/gpu_spline/gpu_spline_bezier.tscn -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/ModelSpline.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/ModelSpline.gd -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/Old.ModelSpline.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/Old.ModelSpline.gd -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/Uberhero.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/Uberhero.tscn -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/UberheroNoScript.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/UberheroNoScript.tscn -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Body.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Body.material -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model.blend -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model.blend.import -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Body.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Body.glb -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Body.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Body.glb.import -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Foot.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Foot.glb -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Foot.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Foot.glb.import -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Hand.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Hand.glb -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Hand.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Hand.glb.import -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Head.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Head.glb -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Head.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Head.glb.import -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Scarf0.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Scarf0.glb -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Model_Scarf0.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Model_Scarf0.glb.import -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Scarf.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Scarf.material -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Scarf.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Scarf.tscn -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Toon.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Toon.material -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Toon_001.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Toon_001.material -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Toon_002.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Toon_002.material -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int/Toon_003.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int/Toon_003.material -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int2/Body.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int2/Body.tscn -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int2/LegBase.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int2/LegBase.tscn -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int2/ScarfBase.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int2/ScarfBase.tscn -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int2/ShoulderBase.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int2/ShoulderBase.tscn -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int2/scarf_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int2/scarf_size.png -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/__int2/scarf_size.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/__int2/scarf_size.png.import -------------------------------------------------------------------------------- /clients/godot/scenes/models/uberhero/new_shader.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/scenes/models/uberhero/new_shader.tres -------------------------------------------------------------------------------- /clients/godot/shaders/bezier_spline.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/shaders/bezier_spline.gdshader -------------------------------------------------------------------------------- /clients/godot/shaders/includes/sd_bezier.gdshaderinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/shaders/includes/sd_bezier.gdshaderinc -------------------------------------------------------------------------------- /clients/godot/shaders/scarf_spline.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/shaders/scarf_spline.gdshader -------------------------------------------------------------------------------- /clients/godot/singletons/revghost.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/singletons/revghost.tscn -------------------------------------------------------------------------------- /clients/godot/world.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/clients/godot/world.tscn -------------------------------------------------------------------------------- /dependencies/.nuget/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/dependencies/deps.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/nuget.config -------------------------------------------------------------------------------- /src/PataNext.Export.Desktop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Desktop/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Desktop/EntryModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Desktop/EntryModule.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Desktop/PataNext.Export.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Desktop/PataNext.Export.Desktop.csproj -------------------------------------------------------------------------------- /src/PataNext.Export.Desktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Desktop/Program.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Desktop/TestSimulationSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Desktop/TestSimulationSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Desktop/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Desktop/game.ico -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/Core/Presentation/OldPresentationGodotBaseSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/Core/Presentation/OldPresentationGodotBaseSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/Core/Presentation/PresentationGodotBaseSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/Core/Presentation/PresentationGodotBaseSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/EntryModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/EntryModule.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/GodotComponents/SplineModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/GodotComponents/SplineModel.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/GodotModuleRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/GodotModuleRunner.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/PataNext.Export.Godot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/PataNext.Export.Godot.csproj -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/PataNext.Export.Godot.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/PataNext.Export.Godot.runtimeconfig.json -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/Program.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/RhythmEnginePresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/RhythmEnginePresentation.cs -------------------------------------------------------------------------------- /src/PataNext.Export.Godot/UnitPresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Export.Godot/UnitPresentation.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Abilities/tate/TateEnergyField.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Abilities/tate/TateEnergyField.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Abilities/yari/YariFearSpear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Abilities/yari/YariFearSpear.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Bgm/ZippedTheme.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Bgm/ZippedTheme.zip -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Bgm/ponbekedetta_rock.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Bgm/ponbekedetta_rock.zip -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Fonts/ar_cena.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Fonts/ar_cena.fnt -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Fonts/ar_cena_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Fonts/ar_cena_0.png -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Fonts/mojipon.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Fonts/mojipon.fnt -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Fonts/mojipon_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Fonts/mojipon_0.png -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Items/Consumables/st.pn_-item_type_-consumable/rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Items/Consumables/st.pn_-item_type_-consumable/rock.json -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-bow/default_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-bow/default_bow.json -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-flag/default_flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-flag/default_flag.json -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-helm/default_helm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-helm/default_helm.json -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-mask/yarida.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-mask/yarida.json -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-shield/default_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-shield/default_shield.json -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-spear/default_spear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-spear/default_spear.json -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-sword/default_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Items/Equipments/st.pn_-item_type_-sword/default_sword.json -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Kits/taterazay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Kits/taterazay.json -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Module.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/PataNext.Game.Client.Resources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/PataNext.Game.Client.Resources.csproj -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Textures/patanext_background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Textures/patanext_background_2.png -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Textures/patanext_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Textures/patanext_logo.png -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Textures/patanext_logo_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Textures/patanext_logo_blur.png -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Textures/popup_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Textures/popup_update.png -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Textures/progress_bar_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Textures/progress_bar_side.png -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Textures/sidebar_changelogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Textures/sidebar_changelogs.png -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/Textures/sidebar_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client.Resources/Textures/sidebar_settings.png -------------------------------------------------------------------------------- /src/PataNext.Game.Client.Resources/paket.references: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/PataNext.Game.Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/Core/Presentation/IPresentationLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/Core/Presentation/IPresentationLoop.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/Core/Presentation/PresentationBaseSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/Core/Presentation/PresentationBaseSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/Core/Presentation/UpdatePresentationSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/Core/Presentation/UpdatePresentationSystems.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/Module.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/PataNext.Game.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/PataNext.Game.Client.csproj -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/BGM/BFileDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/BGM/BFileDescription.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/BGM/BgmDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/BGM/BgmDirector.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/BGM/BgmStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/BGM/BgmStore.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/BgmDirectorSystemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/BgmDirectorSystemBase.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/Defaults/BgmDefaultDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/Defaults/BgmDefaultDirector.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/Defaults/BgmDefaultDirectorCommandsSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/Defaults/BgmDefaultDirectorCommandsSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/Defaults/BgmDefaultDirectorSoundtrackSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/Defaults/BgmDefaultDirectorSoundtrackSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/Defaults/BgmDefaultSamplesLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/Defaults/BgmDefaultSamplesLoader.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/TaskMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/BGM/Directors/TaskMap.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_1_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_1_0.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_1_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_1_1.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_1_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_1_2.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_2_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_2_0.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_2_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_2_1.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_2_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_2_2.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_3_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_3_0.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_3_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_3_1.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_3_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_3_2.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_4_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_4_0.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_4_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_4_1.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_4_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/Drums/drum_4_2.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/on_enter_fever.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/on_enter_fever.wav -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/on_fever_lost.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/on_fever_lost.wav -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/on_new_beat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/on_new_beat.ogg -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Resources/on_perfect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Resources/on_perfect.wav -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Systems/LoadBgmSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Systems/LoadBgmSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Systems/OnNewBeatSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Systems/OnNewBeatSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Systems/PresentationRhythmEngineSystemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Systems/PresentationRhythmEngineSystemBase.cs -------------------------------------------------------------------------------- /src/PataNext.Game.Client/RhythmEngineAudio/Systems/ShoutDrumSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game.Client/RhythmEngineAudio/Systems/ShoutDrumSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Game/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Module.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/Abilities/AbilitySpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/Abilities/AbilitySpawner.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/Abilities/Components/AbilityModifyStatsOnChaining.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/Abilities/Components/AbilityModifyStatsOnChaining.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/Abilities/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/Abilities/Module.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/Abilities/StatisticModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/Abilities/StatisticModifier.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/Abilities/StatisticsModifierJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/Abilities/StatisticsModifierJson.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/Abilities/Storages/AbilityDescriptionStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/Abilities/Storages/AbilityDescriptionStorage.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/Abilities/SystemBase/BaseRhythmAbilityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/Abilities/SystemBase/BaseRhythmAbilityProvider.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/RhythmEngine/CommandIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/RhythmEngine/CommandIdentifier.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/RhythmEngine/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/RhythmEngine/Commands.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/RhythmEngine/CreateCommandSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/RhythmEngine/CreateCommandSystem.cs -------------------------------------------------------------------------------- /src/PataNext.Game/Modules/RhythmEngine/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/Modules/RhythmEngine/Module.cs -------------------------------------------------------------------------------- /src/PataNext.Game/PataNext.Game.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/PataNext.Game.csproj -------------------------------------------------------------------------------- /src/PataNext.Game/global.usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Game/global.usings.cs -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Descriptions/JumpCommand/DefaultJump.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Descriptions/MarchCommand/DefaultMarch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/Descriptions/MarchCommand/DefaultMarch.json -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Descriptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/Descriptions/README.md -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/Module.cs -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/PataNext.Module.Abilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/PataNext.Module.Abilities.csproj -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Providers/Common/DefaultJumpAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/Providers/Common/DefaultJumpAbility.cs -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Providers/Common/DefaultMarchAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/Providers/Common/DefaultMarchAbility.cs -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Providers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/Providers/README.md -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Scripts/Common/DefaultJumpScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/Scripts/Common/DefaultJumpScript.cs -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Scripts/Common/DefaultMarchScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/Scripts/Common/DefaultMarchScript.cs -------------------------------------------------------------------------------- /src/PataNext.Module.Abilities/Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/src/PataNext.Module.Abilities/Scripts/README.md -------------------------------------------------------------------------------- /tools/godot/script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/tools/godot/script.cs -------------------------------------------------------------------------------- /tools/godot/setup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/tools/godot/setup.csproj -------------------------------------------------------------------------------- /tools/setup/script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/tools/setup/script.cs -------------------------------------------------------------------------------- /tools/setup/setup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/tools/setup/setup.csproj -------------------------------------------------------------------------------- /wiki_resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/wiki_resources/logo.png -------------------------------------------------------------------------------- /wiki_resources/patanext_logo_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patanext-project/patanext/HEAD/wiki_resources/patanext_logo_banner.png --------------------------------------------------------------------------------