Player.tscn 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. [gd_scene load_steps=4 format=2]
  2. [ext_resource path="res://Player.gd" type="Script" id=1]
  3. [ext_resource path="res://player.png" type="Texture" id=2]
  4. [sub_resource type="RectangleShape2D" id=1]
  5. extents = Vector2( 16, 16 )
  6. [node name="Player" type="Area2D"]
  7. position = Vector2( 544, 224 )
  8. script = ExtResource( 1 )
  9. rayU = NodePath("RayUp")
  10. rayD = NodePath("RayDown")
  11. rayL = NodePath("RayLeft")
  12. rayR = NodePath("RayRight")
  13. [node name="Sprite" type="Sprite" parent="."]
  14. texture = ExtResource( 2 )
  15. __meta__ = {
  16. "_edit_lock_": true
  17. }
  18. [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
  19. shape = SubResource( 1 )
  20. __meta__ = {
  21. "_edit_lock_": true
  22. }
  23. [node name="RayUp" type="RayCast2D" parent="."]
  24. position = Vector2( 0, -30 )
  25. enabled = true
  26. exclude_parent = false
  27. cast_to = Vector2( 0, -32 )
  28. __meta__ = {
  29. "_edit_lock_": true
  30. }
  31. [node name="RayDown" type="RayCast2D" parent="."]
  32. position = Vector2( 0, 30 )
  33. enabled = true
  34. exclude_parent = false
  35. cast_to = Vector2( 0, 32 )
  36. __meta__ = {
  37. "_edit_lock_": true
  38. }
  39. [node name="RayLeft" type="RayCast2D" parent="."]
  40. position = Vector2( -30, 0 )
  41. enabled = true
  42. exclude_parent = false
  43. cast_to = Vector2( -32, 0 )
  44. __meta__ = {
  45. "_edit_lock_": true
  46. }
  47. [node name="RayRight" type="RayCast2D" parent="."]
  48. position = Vector2( 30, 0 )
  49. enabled = true
  50. exclude_parent = false
  51. cast_to = Vector2( 32, 0 )
  52. __meta__ = {
  53. "_edit_lock_": true
  54. }