Initial commit.
This commit is contained in:
commit
907695442f
28 changed files with 717 additions and 0 deletions
8
scripts/aircraft/nodes/aircraft_controller.gd
Normal file
8
scripts/aircraft/nodes/aircraft_controller.gd
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue