From 32528712befef39670f2ef30974e33fa291cebe3 Mon Sep 17 00:00:00 2001 From: arngo <27396817+arngo@users.noreply.github.com> Date: Wed, 20 Jan 2021 18:30:48 -0500 Subject: implemented basic platforming controls and physics as well as ghosts --- DeadBody.tscn | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 DeadBody.tscn (limited to 'DeadBody.tscn') 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 ) -- cgit v1.2.3