1234567891011121314151617181920 |
- [gd_scene load_steps=3 format=2]
- [ext_resource path="res://decorations/coin_pile.png" type="Texture2D" id=1]
- [sub_resource type="CapsuleShape2D" id=1]
- radius = 12.0
- height = 38.0
- [node name="coin_pile" type="Node2D"]
- [node name="StaticBody2D" type="StaticBody2D" parent="."]
- [node name="Sprite2D" type="Sprite2D" parent="StaticBody2D"]
- position = Vector2( 0, -23 )
- texture = ExtResource( 1 )
- [node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"]
- position = Vector2( 0, -13 )
- rotation = 1.5708
- shape = SubResource( 1 )
|