Arcade racing demo got Godot 3.3
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
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"]