1234567891011121314151617181920212223242526 |
- [gd_scene load_steps=5 format=2]
- [ext_resource path="res://labs/cascade/component/ball/firefox-logo.png" type="Texture" id=1]
- [ext_resource path="res://labs/cascade/component/ball/Ball.gd" type="Script" id=2]
- [sub_resource type="PhysicsMaterial" id=2]
- friction = 0.61
- bounce = 0.26
- [sub_resource type="CircleShape2D" id=1]
- radius = 4.0
- [node name="Ball" type="RigidBody2D"]
- physics_material_override = SubResource( 2 )
- script = ExtResource( 2 )
- [node name="FirefoxSprite" type="Sprite" parent="."]
- scale = Vector2( 0.064, 0.064 )
- texture = ExtResource( 1 )
- [node name="RoundFixture" type="CollisionShape2D" parent="."]
- shape = SubResource( 1 )
- [node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
- [connection signal="screen_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_screen_exited"]
|