├── .gitignore ├── LICENSE ├── README.md ├── godot ├── RhythmGame │ ├── Autoload │ │ └── Events.gd │ ├── Editor │ │ ├── Patterns.tscn │ │ ├── PlacerHitBeat.gd │ │ ├── PlacerHitBeat.tscn │ │ ├── PlacerHitRoller.gd │ │ ├── PlacerHitRoller.tscn │ │ ├── PlacerRest.gd │ │ ├── PlacerRest.tscn │ │ ├── editor_rest_icon.svg.import │ │ ├── icon_beats.png │ │ ├── icon_beats.png.import │ │ ├── icon_rests.png │ │ ├── icon_rests.png.import │ │ ├── placer_hit_beat_icon.svg │ │ ├── placer_hit_beat_icon.svg.import │ │ ├── placer_hit_roller_icon.svg │ │ ├── placer_hit_roller_icon.svg.import │ │ ├── placer_rest_icon.svg │ │ └── placer_rest_icon.svg.import │ ├── HitSpawner.gd │ ├── Hits │ │ ├── HitBeat.gd │ │ ├── HitBeat.tscn │ │ ├── HitRoller │ │ │ ├── GrowingLine2D.gd │ │ │ ├── HitRoller.gd │ │ │ ├── HitRoller.tscn │ │ │ ├── Roller.gd │ │ │ ├── RollerPath.gd │ │ │ ├── roller_sprites.png │ │ │ └── roller_sprites.png.import │ │ ├── TargetCircle.gd │ │ ├── TargetCircle.tscn │ │ ├── hit_sprites.png │ │ ├── hit_sprites.png.import │ │ └── target_circle.shader │ ├── Synchronizer.gd │ ├── Tracks │ │ ├── Cephalopod │ │ │ ├── Cephalopod.ogg │ │ │ ├── Cephalopod.ogg.import │ │ │ ├── Cephalopod.tscn │ │ │ ├── cephalopod.tres │ │ │ ├── icon_cephalopod.png │ │ │ └── icon_cephalopod.png.import │ │ ├── DiscoLounge │ │ │ ├── DiscoLounge.ogg │ │ │ ├── DiscoLounge.ogg.import │ │ │ ├── DiscoLounge.tscn │ │ │ ├── disco_lounge.tres │ │ │ ├── icon_disco_lounge.png │ │ │ └── icon_disco_lounge.png.import │ │ ├── TrackData.gd │ │ └── Werq │ │ │ ├── Werq.ogg │ │ │ ├── Werq.ogg.import │ │ │ ├── Werq.tscn │ │ │ ├── icon_werq.png │ │ │ ├── icon_werq.png.import │ │ │ └── werq.tres │ ├── UI │ │ ├── Fonts │ │ │ └── Montserrat-Bold.ttf │ │ ├── LabelCustom.tscn │ │ ├── TrackFinished │ │ │ ├── UITrackFinished.gd │ │ │ ├── UITrackFinished.tscn │ │ │ ├── background_end_screen.png │ │ │ ├── background_end_screen.png.import │ │ │ ├── button_back_hover.png │ │ │ ├── button_back_hover.png.import │ │ │ ├── button_back_normal.png │ │ │ └── button_back_normal.png.import │ │ ├── TrackPlaying │ │ │ ├── UIMetronome.gd │ │ │ ├── UIMetronome.tscn │ │ │ ├── UIScore.gd │ │ │ ├── UIScore.tscn │ │ │ ├── UITrackPlaying.gd │ │ │ ├── UITrackPlaying.tscn │ │ │ ├── metronome_sprite.png │ │ │ └── metronome_sprite.png.import │ │ ├── TrackSelector │ │ │ ├── DragDetector.gd │ │ │ ├── SelectArea.gd │ │ │ ├── TrackTile.gd │ │ │ ├── TrackTile.tscn │ │ │ ├── TrackTiles.gd │ │ │ ├── UITrackSelector.gd │ │ │ ├── UITrackSelector.tscn │ │ │ ├── button_go_hover.png │ │ │ ├── button_go_hover.png.import │ │ │ ├── button_go_normal.png │ │ │ └── button_go_normal.png.import │ │ ├── background_shapes.png │ │ └── background_shapes.png.import │ └── VFX │ │ ├── VFXScore.gd │ │ ├── VFXScore.tscn │ │ ├── hit_sprites.png │ │ ├── hit_sprites.png.import │ │ ├── sparkle.png │ │ └── sparkle.png.import ├── RhythmGameDemo.gd ├── RhythmGameDemo.tscn ├── default_env.tres ├── icon.png ├── icon.png.import └── project.godot ├── img ├── rhythm-game-banner.png ├── screen-editor.png └── screen-gameplay.png └── start-project ├── RhythmGame ├── AutoLoad │ └── .gitignore ├── Editor │ ├── icon_beats.png │ ├── icon_beats.png.import │ ├── icon_rests.png │ ├── icon_rests.png.import │ ├── placer_hit_beat_icon.svg │ ├── placer_hit_roller_icon.svg │ └── placer_rest_icon.svg ├── Hits │ ├── hit_sprites.png │ ├── hit_sprites.png.import │ ├── roller_sprites.png │ └── roller_sprites.png.import ├── Tracks │ ├── Cephalopod │ │ ├── Cephalopod.ogg │ │ ├── Cephalopod.ogg.import │ │ ├── icon_cephalopod.png │ │ └── icon_cephalopod.png.import │ ├── DiscoLounge │ │ ├── DiscoLounge.ogg │ │ ├── DiscoLounge.ogg.import │ │ ├── icon_disco_lounge.png │ │ └── icon_disco_lounge.png.import │ └── Werq │ │ ├── Werq.ogg │ │ ├── Werq.ogg.import │ │ ├── icon_werq.png │ │ └── icon_werq.png.import ├── UI │ ├── Fonts │ │ └── Montserrat-Bold.ttf │ ├── TrackFinished │ │ ├── background_end_screen.png │ │ ├── background_end_screen.png.import │ │ ├── button_back_hover.png │ │ ├── button_back_hover.png.import │ │ ├── button_back_normal.png │ │ └── button_back_normal.png.import │ ├── TrackPlaying │ │ ├── metronome_sprite.png │ │ └── metronome_sprite.png.import │ ├── TrackSelector │ │ ├── button_go_hover.png │ │ ├── button_go_hover.png.import │ │ ├── button_go_normal.png │ │ └── button_go_normal.png.import │ ├── background_shapes.png │ └── background_shapes.png.import └── VFX │ ├── hit_sprites.png │ ├── hit_sprites.png.import │ ├── sparkle.png │ └── sparkle.png.import ├── default_env.tres ├── icon.png ├── icon.png.import └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/README.md -------------------------------------------------------------------------------- /godot/RhythmGame/Autoload/Events.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Autoload/Events.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/Patterns.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/Patterns.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/PlacerHitBeat.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/PlacerHitBeat.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/PlacerHitBeat.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/PlacerHitBeat.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/PlacerHitRoller.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/PlacerHitRoller.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/PlacerHitRoller.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/PlacerHitRoller.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/PlacerRest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/PlacerRest.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/PlacerRest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/PlacerRest.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/editor_rest_icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/editor_rest_icon.svg.import -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/icon_beats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/icon_beats.png -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/icon_beats.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/icon_beats.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/icon_rests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/icon_rests.png -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/icon_rests.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/icon_rests.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/placer_hit_beat_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/placer_hit_beat_icon.svg -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/placer_hit_beat_icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/placer_hit_beat_icon.svg.import -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/placer_hit_roller_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/placer_hit_roller_icon.svg -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/placer_hit_roller_icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/placer_hit_roller_icon.svg.import -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/placer_rest_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/placer_rest_icon.svg -------------------------------------------------------------------------------- /godot/RhythmGame/Editor/placer_rest_icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Editor/placer_rest_icon.svg.import -------------------------------------------------------------------------------- /godot/RhythmGame/HitSpawner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/HitSpawner.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/HitBeat.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/HitBeat.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/HitBeat.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/HitBeat.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/HitRoller/GrowingLine2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/HitRoller/GrowingLine2D.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/HitRoller/HitRoller.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/HitRoller/HitRoller.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/HitRoller/HitRoller.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/HitRoller/HitRoller.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/HitRoller/Roller.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/HitRoller/Roller.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/HitRoller/RollerPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/HitRoller/RollerPath.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/HitRoller/roller_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/HitRoller/roller_sprites.png -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/HitRoller/roller_sprites.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/HitRoller/roller_sprites.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/TargetCircle.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/TargetCircle.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/TargetCircle.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/TargetCircle.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/hit_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/hit_sprites.png -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/hit_sprites.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/hit_sprites.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/Hits/target_circle.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Hits/target_circle.shader -------------------------------------------------------------------------------- /godot/RhythmGame/Synchronizer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Synchronizer.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Cephalopod/Cephalopod.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Cephalopod/Cephalopod.ogg -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Cephalopod/Cephalopod.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Cephalopod/Cephalopod.ogg.import -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Cephalopod/Cephalopod.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Cephalopod/Cephalopod.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Cephalopod/cephalopod.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Cephalopod/cephalopod.tres -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Cephalopod/icon_cephalopod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Cephalopod/icon_cephalopod.png -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Cephalopod/icon_cephalopod.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Cephalopod/icon_cephalopod.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/DiscoLounge/DiscoLounge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/DiscoLounge/DiscoLounge.ogg -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/DiscoLounge/DiscoLounge.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/DiscoLounge/DiscoLounge.ogg.import -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/DiscoLounge/DiscoLounge.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/DiscoLounge/DiscoLounge.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/DiscoLounge/disco_lounge.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/DiscoLounge/disco_lounge.tres -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/DiscoLounge/icon_disco_lounge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/DiscoLounge/icon_disco_lounge.png -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/DiscoLounge/icon_disco_lounge.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/DiscoLounge/icon_disco_lounge.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/TrackData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/TrackData.gd -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Werq/Werq.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Werq/Werq.ogg -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Werq/Werq.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Werq/Werq.ogg.import -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Werq/Werq.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Werq/Werq.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Werq/icon_werq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Werq/icon_werq.png -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Werq/icon_werq.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Werq/icon_werq.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/Tracks/Werq/werq.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/Tracks/Werq/werq.tres -------------------------------------------------------------------------------- /godot/RhythmGame/UI/Fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/Fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /godot/RhythmGame/UI/LabelCustom.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/LabelCustom.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackFinished/UITrackFinished.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackFinished/UITrackFinished.gd -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackFinished/UITrackFinished.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackFinished/UITrackFinished.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackFinished/background_end_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackFinished/background_end_screen.png -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackFinished/background_end_screen.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackFinished/background_end_screen.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackFinished/button_back_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackFinished/button_back_hover.png -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackFinished/button_back_hover.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackFinished/button_back_hover.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackFinished/button_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackFinished/button_back_normal.png -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackFinished/button_back_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackFinished/button_back_normal.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackPlaying/UIMetronome.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackPlaying/UIMetronome.gd -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackPlaying/UIMetronome.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackPlaying/UIMetronome.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackPlaying/UIScore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackPlaying/UIScore.gd -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackPlaying/UIScore.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackPlaying/UIScore.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackPlaying/UITrackPlaying.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackPlaying/UITrackPlaying.gd -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackPlaying/UITrackPlaying.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackPlaying/UITrackPlaying.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackPlaying/metronome_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackPlaying/metronome_sprite.png -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackPlaying/metronome_sprite.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackPlaying/metronome_sprite.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/DragDetector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/DragDetector.gd -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/SelectArea.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/SelectArea.gd -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/TrackTile.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/TrackTile.gd -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/TrackTile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/TrackTile.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/TrackTiles.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/TrackTiles.gd -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/UITrackSelector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/UITrackSelector.gd -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/UITrackSelector.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/UITrackSelector.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/button_go_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/button_go_hover.png -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/button_go_hover.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/button_go_hover.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/button_go_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/button_go_normal.png -------------------------------------------------------------------------------- /godot/RhythmGame/UI/TrackSelector/button_go_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/TrackSelector/button_go_normal.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/UI/background_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/background_shapes.png -------------------------------------------------------------------------------- /godot/RhythmGame/UI/background_shapes.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/UI/background_shapes.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/VFX/VFXScore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/VFX/VFXScore.gd -------------------------------------------------------------------------------- /godot/RhythmGame/VFX/VFXScore.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/VFX/VFXScore.tscn -------------------------------------------------------------------------------- /godot/RhythmGame/VFX/hit_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/VFX/hit_sprites.png -------------------------------------------------------------------------------- /godot/RhythmGame/VFX/hit_sprites.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/VFX/hit_sprites.png.import -------------------------------------------------------------------------------- /godot/RhythmGame/VFX/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/VFX/sparkle.png -------------------------------------------------------------------------------- /godot/RhythmGame/VFX/sparkle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGame/VFX/sparkle.png.import -------------------------------------------------------------------------------- /godot/RhythmGameDemo.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGameDemo.gd -------------------------------------------------------------------------------- /godot/RhythmGameDemo.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/RhythmGameDemo.tscn -------------------------------------------------------------------------------- /godot/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/default_env.tres -------------------------------------------------------------------------------- /godot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/icon.png -------------------------------------------------------------------------------- /godot/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/icon.png.import -------------------------------------------------------------------------------- /godot/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/godot/project.godot -------------------------------------------------------------------------------- /img/rhythm-game-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/img/rhythm-game-banner.png -------------------------------------------------------------------------------- /img/screen-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/img/screen-editor.png -------------------------------------------------------------------------------- /img/screen-gameplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/img/screen-gameplay.png -------------------------------------------------------------------------------- /start-project/RhythmGame/AutoLoad/.gitignore: -------------------------------------------------------------------------------- 1 | Empty file for git tracking -------------------------------------------------------------------------------- /start-project/RhythmGame/Editor/icon_beats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Editor/icon_beats.png -------------------------------------------------------------------------------- /start-project/RhythmGame/Editor/icon_beats.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Editor/icon_beats.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/Editor/icon_rests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Editor/icon_rests.png -------------------------------------------------------------------------------- /start-project/RhythmGame/Editor/icon_rests.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Editor/icon_rests.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/Editor/placer_hit_beat_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Editor/placer_hit_beat_icon.svg -------------------------------------------------------------------------------- /start-project/RhythmGame/Editor/placer_hit_roller_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Editor/placer_hit_roller_icon.svg -------------------------------------------------------------------------------- /start-project/RhythmGame/Editor/placer_rest_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Editor/placer_rest_icon.svg -------------------------------------------------------------------------------- /start-project/RhythmGame/Hits/hit_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Hits/hit_sprites.png -------------------------------------------------------------------------------- /start-project/RhythmGame/Hits/hit_sprites.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Hits/hit_sprites.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/Hits/roller_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Hits/roller_sprites.png -------------------------------------------------------------------------------- /start-project/RhythmGame/Hits/roller_sprites.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Hits/roller_sprites.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/Cephalopod/Cephalopod.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/Cephalopod/Cephalopod.ogg -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/Cephalopod/Cephalopod.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/Cephalopod/Cephalopod.ogg.import -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/Cephalopod/icon_cephalopod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/Cephalopod/icon_cephalopod.png -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/Cephalopod/icon_cephalopod.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/Cephalopod/icon_cephalopod.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/DiscoLounge/DiscoLounge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/DiscoLounge/DiscoLounge.ogg -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/DiscoLounge/DiscoLounge.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/DiscoLounge/DiscoLounge.ogg.import -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/DiscoLounge/icon_disco_lounge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/DiscoLounge/icon_disco_lounge.png -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/DiscoLounge/icon_disco_lounge.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/DiscoLounge/icon_disco_lounge.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/Werq/Werq.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/Werq/Werq.ogg -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/Werq/Werq.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/Werq/Werq.ogg.import -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/Werq/icon_werq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/Werq/icon_werq.png -------------------------------------------------------------------------------- /start-project/RhythmGame/Tracks/Werq/icon_werq.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/Tracks/Werq/icon_werq.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/Fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/Fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackFinished/background_end_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackFinished/background_end_screen.png -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackFinished/background_end_screen.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackFinished/background_end_screen.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackFinished/button_back_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackFinished/button_back_hover.png -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackFinished/button_back_hover.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackFinished/button_back_hover.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackFinished/button_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackFinished/button_back_normal.png -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackFinished/button_back_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackFinished/button_back_normal.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackPlaying/metronome_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackPlaying/metronome_sprite.png -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackPlaying/metronome_sprite.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackPlaying/metronome_sprite.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackSelector/button_go_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackSelector/button_go_hover.png -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackSelector/button_go_hover.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackSelector/button_go_hover.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackSelector/button_go_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackSelector/button_go_normal.png -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/TrackSelector/button_go_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/TrackSelector/button_go_normal.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/background_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/background_shapes.png -------------------------------------------------------------------------------- /start-project/RhythmGame/UI/background_shapes.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/UI/background_shapes.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/VFX/hit_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/VFX/hit_sprites.png -------------------------------------------------------------------------------- /start-project/RhythmGame/VFX/hit_sprites.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/VFX/hit_sprites.png.import -------------------------------------------------------------------------------- /start-project/RhythmGame/VFX/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/VFX/sparkle.png -------------------------------------------------------------------------------- /start-project/RhythmGame/VFX/sparkle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/RhythmGame/VFX/sparkle.png.import -------------------------------------------------------------------------------- /start-project/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/default_env.tres -------------------------------------------------------------------------------- /start-project/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/icon.png -------------------------------------------------------------------------------- /start-project/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/icon.png.import -------------------------------------------------------------------------------- /start-project/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-2d-rhythm/HEAD/start-project/project.godot --------------------------------------------------------------------------------