Threader2.tscn 681 B

123456789101112131415161718192021222324
  1. [gd_scene load_steps=5 format=2]
  2. [ext_resource path="res://Threader.gd" type="Script" id=1]
  3. [ext_resource path="res://icon.png" type="Texture" id=2]
  4. [sub_resource type="RectangleShape2D" id=1]
  5. extents = Vector2( 500, 300 )
  6. [sub_resource type="RectangleShape2D" id=2]
  7. extents = Vector2( 32, 32 )
  8. [node name="Threader" type="KinematicBody2D"]
  9. script = ExtResource( 1 )
  10. [node name="Sprite" type="Sprite" parent="."]
  11. texture = ExtResource( 2 )
  12. [node name="Area2D" type="Area2D" parent="."]
  13. [node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
  14. shape = SubResource( 1 )
  15. [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
  16. shape = SubResource( 2 )