first init

This commit is contained in:
2025-12-22 15:14:38 +01:00
commit bc75750128
30 changed files with 1660 additions and 0 deletions

8
Assets/player_ship.gd Normal file
View File

@@ -0,0 +1,8 @@
extends RigidBody3D
@export var _start_direction: Vector3
@export var _start_speed: float
func _ready():
# apply_force(_, global_position)
apply_central_force(_start_direction.normalized() * _start_speed)