From 3aab06c6763fc5ad3396bd5451c100364afeb76b Mon Sep 17 00:00:00 2001 From: IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com> Date: Sun, 17 Jul 2022 05:18:57 +0200 Subject: buff detection --- godot/scenes/objects/GroundCollision.tscn | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 godot/scenes/objects/GroundCollision.tscn (limited to 'godot/scenes/objects/GroundCollision.tscn') diff --git a/godot/scenes/objects/GroundCollision.tscn b/godot/scenes/objects/GroundCollision.tscn new file mode 100644 index 0000000..9f98830 --- /dev/null +++ b/godot/scenes/objects/GroundCollision.tscn @@ -0,0 +1,11 @@ +[gd_scene load_steps=2 format=2] + +[sub_resource type="BoxShape" id=1] +extents = Vector3( 0.204438, 0.202656, 0.204615 ) + +[node name="GroundCollision" type="Area"] +collision_layer = 4 +collision_mask = 4 + +[node name="CollisionShape" type="CollisionShape" parent="."] +shape = SubResource( 1 ) -- cgit