small racing game im working on
1
2
3
4
5
6
7
8
9
10
11
12
extends Resource
class_name TrackResource
## Width of road
@export var track_width = 17.0
## Distance between rails and road
@export var rail_distance = 3.0
## Support base width
@export var lower_support_width = 15.0
## Height of supports
@export var support_height = 8.0
## Track curve
@export var track: Curve3D = null