Initial commit.

This commit is contained in:
Patrick Marsee 2025-09-03 18:24:08 -04:00
commit 907695442f
28 changed files with 717 additions and 0 deletions

View file

@ -0,0 +1,8 @@
class_name AircraftController
extends Node
@export var pitch: float # Negative: down, positive: up
@export var yaw: float # Negative: left, positive: right
@export var roll: float # Negative: left, positive: right
@export var throttle: float # 0: minimum, 1: maximum
@export var brake: float # 0: fully released, 1: fully applied