Player.tscn 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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="HitBox" 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, -64 )
  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( -64, 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( 64, 0 )
  40. __meta__ = {
  41. "_edit_lock_": true
  42. }
  43. [node name="Tween" type="Tween" parent="."]
  44. script = ExtResource( 3 )
  45. duration = 0.25
  46. [connection signal="body_entered" from="." to="." method="_on_crash"]