Player.tscn 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [gd_scene load_steps=5 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. [ext_resource path="res://CharTween.gd" type="Script" id=3]
  5. [sub_resource type="RectangleShape2D" id=1]
  6. extents = Vector2( 16, 16 )
  7. [node name="Player" type="Area2D"]
  8. script = ExtResource( 1 )
  9. [node name="Sprite" type="Sprite" parent="."]
  10. texture = ExtResource( 2 )
  11. __meta__ = {
  12. "_edit_lock_": true
  13. }
  14. [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
  15. shape = SubResource( 1 )
  16. __meta__ = {
  17. "_edit_lock_": true
  18. }
  19. [node name="RayFront" type="RayCast2D" parent="."]
  20. position = Vector2( 0, -30 )
  21. enabled = true
  22. exclude_parent = false
  23. cast_to = Vector2( 0, -32 )
  24. __meta__ = {
  25. "_edit_lock_": true
  26. }
  27. [node name="RayLeft" type="RayCast2D" parent="."]
  28. position = Vector2( -30, 0 )
  29. enabled = true
  30. exclude_parent = false
  31. cast_to = Vector2( -32, 0 )
  32. __meta__ = {
  33. "_edit_lock_": true
  34. }
  35. [node name="RayRight" type="RayCast2D" parent="."]
  36. position = Vector2( 30, 0 )
  37. enabled = true
  38. exclude_parent = false
  39. cast_to = Vector2( 32, 0 )
  40. __meta__ = {
  41. "_edit_lock_": true
  42. }
  43. [node name="Tween" type="Tween" parent="."]
  44. script = ExtResource( 3 )