diff options
Diffstat (limited to 'Ghost.tscn')
| -rw-r--r-- | Ghost.tscn | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Ghost.tscn b/Ghost.tscn new file mode 100644 index 0000000..1898866 --- /dev/null +++ b/Ghost.tscn @@ -0,0 +1,18 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://Assets/icon.png" type="Texture" id=1] +[ext_resource path="res://Ghost.gd" type="Script" id=2] + +[sub_resource type="RectangleShape2D" id=1] +extents = Vector2( 32, 32 ) + +[node name="Ghost" type="KinematicBody2D"] +modulate = Color( 1, 1, 1, 0.427451 ) +script = ExtResource( 2 ) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +shape = SubResource( 1 ) +disabled = true + +[node name="Sprite" type="Sprite" parent="."] +texture = ExtResource( 1 ) |
