diff options
| author | arngo <[email protected]> | 2021-01-20 18:30:48 -0500 |
|---|---|---|
| committer | arngo <[email protected]> | 2021-01-20 18:30:48 -0500 |
| commit | 32528712befef39670f2ef30974e33fa291cebe3 (patch) | |
| tree | 8e8aa13520fd0fc55c18884f138080a3191ec5c8 /DeadBody.tscn | |
| parent | 1f69f893502a03dd8cc8d7961354f528239bd82b (diff) | |
| download | E-C-Kai-32528712befef39670f2ef30974e33fa291cebe3.tar.gz E-C-Kai-32528712befef39670f2ef30974e33fa291cebe3.zip | |
implemented basic platforming controls and physics as well as ghosts
Diffstat (limited to 'DeadBody.tscn')
| -rw-r--r-- | DeadBody.tscn | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/DeadBody.tscn b/DeadBody.tscn new file mode 100644 index 0000000..b0d0062 --- /dev/null +++ b/DeadBody.tscn @@ -0,0 +1,15 @@ +[gd_scene load_steps=3 format=2] + +[ext_resource path="res://Assets/kenny_complete/Base pack/Player/p1_duck.png" type="Texture" id=1] + +[sub_resource type="RectangleShape2D" id=1] +extents = Vector2( 34.8766, 35.7335 ) + +[node name="DeadBody" type="RigidBody2D"] +gravity_scale = 3.49 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +shape = SubResource( 1 ) + +[node name="Sprite" type="Sprite" parent="."] +texture = ExtResource( 1 ) |
