9 lines
346 B
GDScript3
9 lines
346 B
GDScript3
|
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
|