diff options
| author | nokoe <nokoe@mailbox.org> | 2024-06-24 22:09:46 +0200 | 
|---|---|---|
| committer | nokoe <nokoe@mailbox.org> | 2024-06-24 22:09:46 +0200 | 
| commit | 5137dd483921d27f501db198e55b5d563db0ab7a (patch) | |
| tree | ced8127392cccc3436a47e6671ea72d2ea4aced3 /client/map/items/food_processor.gd | |
| parent | 144a4cf77ab18c73fd7b1fdbc390445056a615fb (diff) | |
| download | hurrycurry-5137dd483921d27f501db198e55b5d563db0ab7a.tar hurrycurry-5137dd483921d27f501db198e55b5d563db0ab7a.tar.bz2 hurrycurry-5137dd483921d27f501db198e55b5d563db0ab7a.tar.zst | |
rotate object in food processor
Diffstat (limited to 'client/map/items/food_processor.gd')
| -rw-r--r-- | client/map/items/food_processor.gd | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd index 1be3d591..f2226e5f 100644 --- a/client/map/items/food_processor.gd +++ b/client/map/items/food_processor.gd @@ -27,6 +27,7 @@ func progress(p: float, warn: bool):  	super(p, warn)  	processing.emitting = true  	processing.rotation.y += p * TAU +	base.rotation.y += p * TAU  func finish(warn: bool):  	super(warn) | 
