8 lines
346 B
GDScript
8 lines
346 B
GDScript
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
|