Explorar el Código

Collision with tiles

DricomDragon hace 5 años
padre
commit
9537c8daae
Se han modificado 2 ficheros con 77 adiciones y 71 borrados
  1. 14 71
      Game.tscn
  2. 63 0
      Player.tscn

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 14 - 71
Game.tscn


+ 63 - 0
Player.tscn

@@ -0,0 +1,63 @@
+[gd_scene load_steps=4 format=2]
+
+[ext_resource path="res://Player.gd" type="Script" id=1]
+[ext_resource path="res://player.png" type="Texture" id=2]
+
+[sub_resource type="RectangleShape2D" id=1]
+extents = Vector2( 16, 16 )
+
+[node name="Player" type="Area2D"]
+position = Vector2( 544, 224 )
+script = ExtResource( 1 )
+rayU = NodePath("RayUp")
+rayD = NodePath("RayDown")
+rayL = NodePath("RayLeft")
+rayR = NodePath("RayRight")
+
+[node name="Sprite" type="Sprite" parent="."]
+texture = ExtResource( 2 )
+__meta__ = {
+"_edit_lock_": true
+}
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
+shape = SubResource( 1 )
+__meta__ = {
+"_edit_lock_": true
+}
+
+[node name="RayUp" type="RayCast2D" parent="."]
+position = Vector2( 0, -30 )
+enabled = true
+exclude_parent = false
+cast_to = Vector2( 0, -32 )
+__meta__ = {
+"_edit_lock_": true
+}
+
+[node name="RayDown" type="RayCast2D" parent="."]
+position = Vector2( 0, 30 )
+enabled = true
+exclude_parent = false
+cast_to = Vector2( 0, 32 )
+__meta__ = {
+"_edit_lock_": true
+}
+
+[node name="RayLeft" type="RayCast2D" parent="."]
+position = Vector2( -30, 0 )
+enabled = true
+exclude_parent = false
+cast_to = Vector2( -32, 0 )
+__meta__ = {
+"_edit_lock_": true
+}
+
+[node name="RayRight" type="RayCast2D" parent="."]
+position = Vector2( 30, 0 )
+enabled = true
+exclude_parent = false
+cast_to = Vector2( 32, 0 )
+__meta__ = {
+"_edit_lock_": true
+}