pong.tscn 863 B

12345678910111213141516171819202122232425262728293031323334
  1. [gd_scene load_steps=6 format=1]
  2. [ext_resource path="res://pong.gd" type="Script" id=1]
  3. [ext_resource path="res://left_pallete.png" type="Texture" id=2]
  4. [ext_resource path="res://right_pallete.png" type="Texture" id=3]
  5. [ext_resource path="res://separator.png" type="Texture" id=4]
  6. [ext_resource path="res://ball.png" type="Texture" id=5]
  7. [node name="game" type="Node2D"]
  8. script/script = ExtResource( 1 )
  9. [node name="left" type="Sprite" parent="."]
  10. transform/pos = Vector2( 67.6875, 183.208 )
  11. texture = ExtResource( 2 )
  12. [node name="right" type="Sprite" parent="."]
  13. transform/pos = Vector2( 577, 187 )
  14. texture = ExtResource( 3 )
  15. [node name="separator" type="Sprite" parent="."]
  16. transform/pos = Vector2( 320, 200 )
  17. texture = ExtResource( 4 )
  18. [node name="ball" type="Sprite" parent="."]
  19. transform/pos = Vector2( 320.283, 188 )
  20. texture = ExtResource( 5 )