blob: ebf475ec284dc158e64da82b38c43539f393fe27 (
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://scenes/hoop.tscn" type="PackedScene" id=2]
[ext_resource path="res://scenes/basketball.tscn" type="PackedScene" id=3]
[sub_resource type="LineShape2D" id=1]
d = 10.0
[node name="Node2D" type="Node2D"]
[node name="Hoop" parent="." instance=ExtResource( 2 )]
position = Vector2( 721, 215 )
[node name="Basketball" parent="." instance=ExtResource( 3 )]
position = Vector2( 71, 423 )
[node name="Floor" type="StaticBody2D" parent="."]
position = Vector2( 512, 590 )
__meta__ = {
"_edit_group_": true
}
[node name="Sprite" type="Sprite" parent="Floor"]
position = Vector2( -3.05176e-05, 2.52724e-05 )
scale = Vector2( 16, 0.3125 )
texture = ExtResource( 1 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="Floor"]
shape = SubResource( 1 )
|