Quellcode durchsuchen

:wrench: Tweak the wheel

- Make it rough
- Reduce max speed (can lead to unfair games lost)
- Slightly increase mass (to avoid crazy bounces)
- Slightly reduce max rotation speed (to avoid crazy bounces as well)
DricomDragon vor 2 Jahren
Ursprung
Commit
3a318395a5

+ 1 - 0
godot/component/entity/chick/Chicken.tscn

@@ -19,4 +19,5 @@ shape = SubResource( 1 )
 
 [node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
 rect = Rect2( -40, -40, 80, 80 )
+
 [connection signal="screen_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_screen_exited"]

+ 6 - 5
godot/component/entity/octo/Octo.tscn

@@ -14,16 +14,16 @@ bounce = 0.8
 
 [sub_resource type="SpriteFrames" id=2]
 animations = [ {
-"frames": [ ExtResource( 2 ), ExtResource( 3 ) ],
-"loop": true,
-"name": "swim",
-"speed": 4.0
-}, {
 "frames": [ ExtResource( 4 ), ExtResource( 5 ) ],
 "loop": true,
 "name": "fly",
 "speed": 3.0
 }, {
+"frames": [ ExtResource( 2 ), ExtResource( 3 ) ],
+"loop": true,
+"name": "swim",
+"speed": 4.0
+}, {
 "frames": [ ExtResource( 6 ), ExtResource( 7 ) ],
 "loop": true,
 "name": "walk",
@@ -53,4 +53,5 @@ shape = SubResource( 3 )
 
 [node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
 rect = Rect2( -50, -60, 100, 120 )
+
 [connection signal="screen_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_screen_exited"]

+ 5 - 3
godot/component/entity/wheel/Wheel.tscn

@@ -4,19 +4,20 @@
 [ext_resource path="res://component/entity/wheel/Wheel.gd" type="Script" id=2]
 
 [sub_resource type="PhysicsMaterial" id=2]
+rough = true
 bounce = 0.9
 
 [sub_resource type="CircleShape2D" id=1]
 radius = 33.1812
 
 [node name="Wheel" type="RigidBody2D"]
-mass = 0.1
+mass = 0.25
 physics_material_override = SubResource( 2 )
 angular_damp = 0.0
 script = ExtResource( 2 )
 min_linear_speed = 200
-max_linear_speed = 400
-max_angular_speed = 25.132
+max_linear_speed = 325
+max_angular_speed = 18.85
 
 [node name="Shape" type="CollisionShape2D" parent="."]
 shape = SubResource( 1 )
@@ -27,4 +28,5 @@ texture = ExtResource( 1 )
 
 [node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
 rect = Rect2( -32, -32, 64, 64 )
+
 [connection signal="screen_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_screen_exited"]