Arcade racing demo got Godot 3.3
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
529B

  1. [gd_scene load_steps=3 format=2]
  2. [ext_resource path="res://Objects/Trail/TrailLine.gd" type="Script" id=1]
  3. [ext_resource path="res://Objects/Trail/Trail.gd" type="Script" id=2]
  4. [node name="Trail" type="Position2D"]
  5. script = ExtResource( 2 )
  6. [node name="TrailLine" type="Line2D" parent="."]
  7. default_color = Color( 0.4, 0.501961, 1, 1 )
  8. script = ExtResource( 1 )
  9. [node name="Timer" type="Timer" parent="TrailLine"]
  10. one_shot = true
  11. [connection signal="timeout" from="TrailLine/Timer" to="TrailLine" method="_on_decay_timeout"]