|
- [gd_scene load_steps=6 format=2]
-
- [ext_resource path="res://Assets/Graphics/Car-Yellow.png" type="Texture" id=1]
- [ext_resource path="res://Objects/Vehicle/Vehicle.gd" type="Script" id=2]
- [ext_resource path="res://Objects/Trail/Trail.tscn" type="PackedScene" id=3]
- [ext_resource path="res://Objects/Vehicle/Tire_Curve_Basic.tres" type="Curve" id=4]
-
- [sub_resource type="CapsuleShape2D" id=1]
- radius = 14.0
- height = 32.0
-
- [node name="Vehicle" type="KinematicBody2D"]
- z_index = 1
- script = ExtResource( 2 )
-
- [node name="Collision" type="CollisionShape2D" parent="."]
- visible = false
- shape = SubResource( 1 )
-
- [node name="Sprite" type="Sprite" parent="."]
- show_behind_parent = true
- texture = ExtResource( 1 )
-
- [node name="Camera2D" type="Camera2D" parent="."]
- smoothing_enabled = true
-
- [node name="Trail_FD" parent="." instance=ExtResource( 3 )]
- position = Vector2( -5, -10 )
- width_curve = ExtResource( 4 )
-
- [node name="Trail_FP" parent="." instance=ExtResource( 3 )]
- position = Vector2( 5, -10 )
- width_curve = ExtResource( 4 )
- default_color = Color( 0.4, 0.831373, 1, 1 )
-
- [node name="Trail_RD" parent="." instance=ExtResource( 3 )]
- position = Vector2( -5, 10 )
- width_curve = ExtResource( 4 )
- default_color = Color( 1, 0.780392, 0.4, 1 )
-
- [node name="Trail_RP" parent="." instance=ExtResource( 3 )]
- position = Vector2( 5, 10 )
- width_curve = ExtResource( 4 )
- default_color = Color( 1, 0.552941, 0.4, 1 )
|