├── .gitattributes ├── .gitignore ├── DefaultMovementData.tres ├── Events.gd ├── FasterMovementData.tres ├── LICENSE ├── PlayerMovementData.gd ├── SlowMovementData.tres ├── black_9slice.png ├── black_9slice.png.import ├── black_9slice.tres ├── default_theme.tres ├── hazard_area.tscn ├── heart.gd ├── heart.png ├── heart.png.import ├── heart.tscn ├── icon.svg ├── icon.svg.import ├── level_completed.gd ├── level_completed.tscn ├── level_one.tscn ├── level_tile_map.tscn ├── level_transition.gd ├── level_transition.tscn ├── level_two.tscn ├── pixel_font.ttf ├── pixel_font.ttf.import ├── player.gd ├── player.png ├── player.png.import ├── player.tscn ├── project.godot ├── slopes.png ├── slopes.png.import ├── slopes_flipped.png ├── slopes_flipped.png.import ├── spikes.png ├── spikes.png.import ├── spikes.tscn ├── start_menu.gd ├── start_menu.tscn ├── tileset.png ├── tileset.png.import ├── victory_screen.gd ├── victory_screen.tscn ├── white_9slice.png ├── white_9slice.png.import ├── white_9slice.tres ├── world.gd └── world.tscn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /DefaultMovementData.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/DefaultMovementData.tres -------------------------------------------------------------------------------- /Events.gd: -------------------------------------------------------------------------------- 1 | extends Node 2 | 3 | signal level_completed 4 | -------------------------------------------------------------------------------- /FasterMovementData.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/FasterMovementData.tres -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/LICENSE -------------------------------------------------------------------------------- /PlayerMovementData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/PlayerMovementData.gd -------------------------------------------------------------------------------- /SlowMovementData.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/SlowMovementData.tres -------------------------------------------------------------------------------- /black_9slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/black_9slice.png -------------------------------------------------------------------------------- /black_9slice.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/black_9slice.png.import -------------------------------------------------------------------------------- /black_9slice.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/black_9slice.tres -------------------------------------------------------------------------------- /default_theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/default_theme.tres -------------------------------------------------------------------------------- /hazard_area.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/hazard_area.tscn -------------------------------------------------------------------------------- /heart.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/heart.gd -------------------------------------------------------------------------------- /heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/heart.png -------------------------------------------------------------------------------- /heart.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/heart.png.import -------------------------------------------------------------------------------- /heart.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/heart.tscn -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/icon.svg.import -------------------------------------------------------------------------------- /level_completed.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/level_completed.gd -------------------------------------------------------------------------------- /level_completed.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/level_completed.tscn -------------------------------------------------------------------------------- /level_one.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/level_one.tscn -------------------------------------------------------------------------------- /level_tile_map.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/level_tile_map.tscn -------------------------------------------------------------------------------- /level_transition.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/level_transition.gd -------------------------------------------------------------------------------- /level_transition.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/level_transition.tscn -------------------------------------------------------------------------------- /level_two.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/level_two.tscn -------------------------------------------------------------------------------- /pixel_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/pixel_font.ttf -------------------------------------------------------------------------------- /pixel_font.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/pixel_font.ttf.import -------------------------------------------------------------------------------- /player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/player.gd -------------------------------------------------------------------------------- /player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/player.png -------------------------------------------------------------------------------- /player.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/player.png.import -------------------------------------------------------------------------------- /player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/player.tscn -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/project.godot -------------------------------------------------------------------------------- /slopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/slopes.png -------------------------------------------------------------------------------- /slopes.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/slopes.png.import -------------------------------------------------------------------------------- /slopes_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/slopes_flipped.png -------------------------------------------------------------------------------- /slopes_flipped.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/slopes_flipped.png.import -------------------------------------------------------------------------------- /spikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/spikes.png -------------------------------------------------------------------------------- /spikes.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/spikes.png.import -------------------------------------------------------------------------------- /spikes.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/spikes.tscn -------------------------------------------------------------------------------- /start_menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/start_menu.gd -------------------------------------------------------------------------------- /start_menu.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/start_menu.tscn -------------------------------------------------------------------------------- /tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/tileset.png -------------------------------------------------------------------------------- /tileset.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/tileset.png.import -------------------------------------------------------------------------------- /victory_screen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/victory_screen.gd -------------------------------------------------------------------------------- /victory_screen.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/victory_screen.tscn -------------------------------------------------------------------------------- /white_9slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/white_9slice.png -------------------------------------------------------------------------------- /white_9slice.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/white_9slice.png.import -------------------------------------------------------------------------------- /white_9slice.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/white_9slice.tres -------------------------------------------------------------------------------- /world.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/world.gd -------------------------------------------------------------------------------- /world.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Heart-Platformer-Godot-4/HEAD/world.tscn --------------------------------------------------------------------------------