diff --git a/Rope.tscn b/Rope.tscn new file mode 100644 index 0000000..756bcc7 --- /dev/null +++ b/Rope.tscn @@ -0,0 +1,20 @@ +[gd_scene load_steps=3 format=2] + +[ext_resource path="res://assets/placeholder_white.png" type="Texture" id=1] + +[sub_resource type="RectangleShape2D" id=1] +extents = Vector2( 1, 10 ) + +[node name="Rope" type="RigidBody2D"] +position = Vector2( 0, 6 ) + +[node name="Sprite" type="Sprite" parent="."] +modulate = Color( 0.423529, 0.176471, 0, 1 ) +scale = Vector2( 0.2, 2.5 ) +texture = ExtResource( 1 ) + +[node name="Anchor" type="Position2D" parent="."] +position = Vector2( 0, 9.83977 ) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +shape = SubResource( 1 )