Player.tscn 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. script = ExtResource( 1 )
  8. rayU = NodePath("RayUp")
  9. rayD = NodePath("RayDown")
  10. rayL = NodePath("RayLeft")
  11. rayR = NodePath("RayRight")
  12. [node name="Sprite" type="Sprite" parent="."]
  13. texture = ExtResource( 2 )
  14. __meta__ = {
  15. "_edit_lock_": true
  16. }
  17. [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
  18. shape = SubResource( 1 )
  19. __meta__ = {
  20. "_edit_lock_": true
  21. }
  22. [node name="RayUp" type="RayCast2D" parent="."]
  23. position = Vector2( 0, -30 )
  24. enabled = true
  25. exclude_parent = false
  26. cast_to = Vector2( 0, -32 )
  27. __meta__ = {
  28. "_edit_lock_": true
  29. }
  30. [node name="RayDown" type="RayCast2D" parent="."]
  31. position = Vector2( 0, 30 )
  32. enabled = true
  33. exclude_parent = false
  34. cast_to = Vector2( 0, 32 )
  35. __meta__ = {
  36. "_edit_lock_": true
  37. }
  38. [node name="RayLeft" type="RayCast2D" parent="."]
  39. position = Vector2( -30, 0 )
  40. enabled = true
  41. exclude_parent = false
  42. cast_to = Vector2( -32, 0 )
  43. __meta__ = {
  44. "_edit_lock_": true
  45. }
  46. [node name="RayRight" type="RayCast2D" parent="."]
  47. position = Vector2( 30, 0 )
  48. enabled = true
  49. exclude_parent = false
  50. cast_to = Vector2( 32, 0 )
  51. __meta__ = {
  52. "_edit_lock_": true
  53. }