aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/map/items/food_processor.gd6
1 files changed, 2 insertions, 4 deletions
diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd
index 63bcfebf..1429ea74 100644
--- a/client/map/items/food_processor.gd
+++ b/client/map/items/food_processor.gd
@@ -16,7 +16,6 @@
class_name FoodProcessor
extends Item
-var time := 0.
var processing: CPUParticles3D = load("res://map/items/processing.tscn").instantiate()
func _init(owned_by_: Node3D):
@@ -65,9 +64,8 @@ func add_contents(contents: Array[String]):
func _process(delta: float):
super(delta)
- time += delta
- processing.rotation.y += time * TAU
- base.rotation.y += time * TAU
+ processing.rotation.y += delta * TAU * 10
+ base.rotation.y += delta * TAU * 15
func progress(position_: float, speed: float, warn: bool):
super(position_, speed, warn)