small racing game im working on
Diffstat (limited to 'classes/track.gd')
| -rw-r--r-- | classes/track.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/track.gd b/classes/track.gd index 956fe39..c07ae6d 100644 --- a/classes/track.gd +++ b/classes/track.gd @@ -22,6 +22,8 @@ class_name TrackResource ## Sun y rotation ( its a game, the sun rotates around us ) @export_range(-360, 360) var sun_y := 0 @export_group("", "") +## The name of this track +@export var name: String = "" ## Does the track loop around? @export var is_loop := true ## Offset the entire track |