Skip to content

Commit

Permalink
Changed default lift/drag coefficient.
Browse files Browse the repository at this point in the history
  • Loading branch information
addmix committed Feb 7, 2024
1 parent 03dd16d commit 8ca68e3
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
extends Resource
class_name ManualAeroSurfaceConfig

@export var min_lift_coefficient : float = -1.0
@export var max_lift_coefficient : float = 1.0
@export var min_lift_coefficient : float = -1.5
@export var max_lift_coefficient : float = 1.5
@export var lift_aoa_curve : Curve
@export var min_drag_coefficient : float = 0.0
@export var max_drag_coefficient : float = 1.0
@export var min_drag_coefficient : float = 0.001
@export var max_drag_coefficient : float = 0.5

@export var drag_aoa_curve : Curve

func _init(_lift_aoa_curve : Curve = preload("../../../resources/default_lift_aoa_curve.tres").duplicate(), _drag_aoa_curve : Curve = preload("../../../resources/default_drag_aoa_curve.tres").duplicate()) -> void:
Expand Down

0 comments on commit 8ca68e3

Please sign in to comment.