Player.tscn 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [gd_scene load_steps=6 format=2]
  2. [ext_resource path="res://Scripts/Player.gd" type="Script" id=1]
  3. [ext_resource path="res://Scripts/CharTween.gd" type="Script" id=2]
  4. [ext_resource path="res://Resources/Images/player.png" type="Texture" id=3]
  5. [ext_resource path="res://Resources/Images/crash.png" type="Texture" id=4]
  6. [sub_resource type="RectangleShape2D" id=1]
  7. extents = Vector2( 16, 16 )
  8. [node name="Player" type="Area2D" groups=[
  9. "players",
  10. ]]
  11. script = ExtResource( 1 )
  12. [node name="Liner" type="Sprite" parent="."]
  13. z_index = 1
  14. texture = ExtResource( 3 )
  15. __meta__ = {
  16. "_edit_lock_": true
  17. }
  18. [node name="Crash" type="Sprite" parent="."]
  19. visible = false
  20. z_index = 1
  21. texture = ExtResource( 4 )
  22. __meta__ = {
  23. "_edit_lock_": true
  24. }
  25. [node name="HitBox" type="CollisionShape2D" parent="."]
  26. shape = SubResource( 1 )
  27. __meta__ = {
  28. "_edit_lock_": true
  29. }
  30. [node name="Tween" type="Tween" parent="."]
  31. script = ExtResource( 2 )
  32. [connection signal="arena_removed" from="." to="Crash" method="hide"]
  33. [connection signal="arena_removed" from="." to="Liner" method="show"]
  34. [connection signal="body_entered" from="." to="." method="_on_crash"]
  35. [connection signal="crash" from="." to="Crash" method="show"]
  36. [connection signal="crash" from="." to="Liner" method="hide"]