├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── icon.svg ├── icon.svg.import ├── launch_button.png ├── launch_button.png.import ├── project.godot ├── rocket_ship.png ├── rocket_ship.png.import ├── rocket_ship_launch.png ├── rocket_ship_launch.png.import ├── world.gd └── world.tscn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/icon.svg.import -------------------------------------------------------------------------------- /launch_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/launch_button.png -------------------------------------------------------------------------------- /launch_button.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/launch_button.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/project.godot -------------------------------------------------------------------------------- /rocket_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/rocket_ship.png -------------------------------------------------------------------------------- /rocket_ship.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/rocket_ship.png.import -------------------------------------------------------------------------------- /rocket_ship_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/rocket_ship_launch.png -------------------------------------------------------------------------------- /rocket_ship_launch.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/rocket_ship_launch.png.import -------------------------------------------------------------------------------- /world.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/world.gd -------------------------------------------------------------------------------- /world.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uheartbeast/Rocket-Launch-Godot-4/HEAD/world.tscn --------------------------------------------------------------------------------