blob: d3816a4ef5576beaaaa1dd8e5eba35f7d4c53562 (
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
|
[gd_scene load_steps=5 format=3 uid="uid://b1nhd5h4tie07"]
[ext_resource type="Script" uid="uid://bqxlt5ql0pfbt" path="res://ball.gd" id="1_41u45"]
[ext_resource type="Texture2D" uid="uid://1j0d0qpa7qxt" path="res://tuxeball.png" id="2_41u45"]
[sub_resource type="PhysicsMaterial" id="PhysicsMaterial_48gu3"]
bounce = 0.1
[sub_resource type="CircleShape2D" id="CircleShape2D_t6ii5"]
radius = 6.0
[node name="Ball" type="RigidBody2D"]
mass = 0.1
physics_material_override = SubResource("PhysicsMaterial_48gu3")
contact_monitor = true
max_contacts_reported = 5
script = ExtResource("1_41u45")
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("CircleShape2D_t6ii5")
[node name="Sprite2D" type="Sprite2D" parent="."]
position = Vector2(4.76837e-07, -9)
texture = ExtResource("2_41u45")
|