diff options
| author | nokoe <nokoe@mailbox.org> | 2024-08-13 14:14:01 +0200 |
|---|---|---|
| committer | nokoe <nokoe@mailbox.org> | 2024-08-13 14:26:50 +0200 |
| commit | 84a96522aad9970d6ade4849f865d4e66e448f3d (patch) | |
| tree | 4b1653d9f62524833e33300b0ad81465d2025f3c /client/map/items/food_processor_content.gd | |
| parent | ebf97951b163a52f9969097f76dbeab1272a4d2c (diff) | |
| download | hurrycurry-84a96522aad9970d6ade4849f865d4e66e448f3d.tar hurrycurry-84a96522aad9970d6ade4849f865d4e66e448f3d.tar.bz2 hurrycurry-84a96522aad9970d6ade4849f865d4e66e448f3d.tar.zst | |
add rice models
Diffstat (limited to 'client/map/items/food_processor_content.gd')
| -rw-r--r-- | client/map/items/food_processor_content.gd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/map/items/food_processor_content.gd b/client/map/items/food_processor_content.gd index dedd6a37..8968b390 100644 --- a/client/map/items/food_processor_content.gd +++ b/client/map/items/food_processor_content.gd @@ -24,6 +24,5 @@ func _init(owned_by_: Node3D): add_child(content) func set_color(c: Color): - var mat: BaseMaterial3D = content.get_active_material(0).duplicate(true) + var mat: BaseMaterial3D = content.get_active_material(0) mat.albedo_color = c - content.material_override = mat |