blob: bf6281c989a9e54cd25a4e717e50372718e62729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
[gd_scene load_steps=5 format=2]
[ext_resource path="res://icon.png" type="Texture" id=1]
[ext_resource path="res://basketball.tscn" type="PackedScene" id=2]
[ext_resource path="res://hoop.tscn" type="PackedScene" id=3]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 512, 10 )
[node name="Node2D" type="Node2D"]
[node name="hoop" parent="." instance=ExtResource( 3 )]
position = Vector2( 721, 409 )
[node name="Basketball" parent="." instance=ExtResource( 2 )]
position = Vector2( 71, 536 )
[node name="StaticBody2D" type="StaticBody2D" parent="."]
position = Vector2( 512, 590 )
__meta__ = {
"_edit_group_": true
}
[node name="Sprite" type="Sprite" parent="StaticBody2D"]
position = Vector2( -3.05176e-05, 2.52724e-05 )
scale = Vector2( 16, 0.3125 )
texture = ExtResource( 1 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"]
shape = SubResource( 1 )
|