summaryrefslogtreecommitdiffhomepage
path: root/Ghost.tscn
diff options
context:
space:
mode:
authorarngo <[email protected]>2021-01-20 18:30:48 -0500
committerarngo <[email protected]>2021-01-20 18:30:48 -0500
commit32528712befef39670f2ef30974e33fa291cebe3 (patch)
tree8e8aa13520fd0fc55c18884f138080a3191ec5c8 /Ghost.tscn
parent1f69f893502a03dd8cc8d7961354f528239bd82b (diff)
downloadE-C-Kai-32528712befef39670f2ef30974e33fa291cebe3.tar.gz
E-C-Kai-32528712befef39670f2ef30974e33fa291cebe3.zip
implemented basic platforming controls and physics as well as ghosts
Diffstat (limited to 'Ghost.tscn')
-rw-r--r--Ghost.tscn18
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 )