Selaa lähdekoodia

:beetle: Fix warnings on unused args

Prevent Gdscript compiler to complain about the names of unused args.
DricomDragon 1 vuosi sitten
vanhempi
commit
9b412f7ccf

+ 1 - 1
godot/component/entity/vehicles/plane/tiny_plane.gd

@@ -29,7 +29,7 @@ func get_free_seat() -> Node3D:
 	return $DrivingSeat
 
 
-func _physics_process(delta: float) -> void:
+func _physics_process(_delta) -> void:
 	_apply_plane_rotation()
 	_apply_plane_thrust()
 	_apply_wing_resistance()

+ 3 - 3
godot/component/entity/vehicles/seated_vehicle.gd

@@ -34,7 +34,7 @@ func _integrate_forces(state: PhysicsDirectBodyState3D) -> void:
 		_has_collided = false
 
 
-func _on_body_shape_entered(body_rid: RID, body: Node, body_shape_index: int, local_shape_index: int) -> void:
+func _on_body_shape_entered(_body_rid, body: Node, _body_shape_index, _local_shape_index) -> void:
 	if body is Walker:
 		return
 
@@ -53,10 +53,10 @@ func get_free_seat() -> Node3D:
 
 
 ## Need to be overridden to react to direction changed
-func _on_dir_changed(dir: Vector2) -> void:
+func _on_dir_changed(_dir: Vector2) -> void:
 	pass
 
 
 ## Need to be overridden to react to main action
-func _on_main_action(pressed: bool) -> void:
+func _on_main_action(_pressed: bool) -> void:
 	pass