blob: c7203d21f2cabc7b6d0203b01c429fb7552ad274 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://ballforbasketing.png" type="Texture" id=1]
[ext_resource path="res://Basketball.gd" type="Script" id=2]
[sub_resource type="CircleShape2D" id=1]
radius = 40.0
[node name="Basketball" type="RigidBody2D"]
position = Vector2( 71, 541 )
script = ExtResource( 2 )
__meta__ = {
"_edit_group_": true
}
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource( 1 )
[node name="Sprite" type="Sprite" parent="."]
scale = Vector2( 5, 5 )
texture = ExtResource( 1 )
|