diff options
| author | tpart <tpart120@proton.me> | 2024-08-19 22:02:55 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2024-08-19 22:02:55 +0200 |
| commit | 6e6c02c03a4c3a3cbc26e7c98436fd38c5a3931b (patch) | |
| tree | 98291dbd6ab000a394493b0407c3d7a9c0b2787d /client/map/items/plate_items.gd | |
| parent | afbea7fcf5f66b08d7ef0ed4e617678b8c20bda0 (diff) | |
| download | hurrycurry-6e6c02c03a4c3a3cbc26e7c98436fd38c5a3931b.tar hurrycurry-6e6c02c03a4c3a3cbc26e7c98436fd38c5a3931b.tar.bz2 hurrycurry-6e6c02c03a4c3a3cbc26e7c98436fd38c5a3931b.tar.zst | |
Add cooked rice curry plate model; Implement item
Diffstat (limited to 'client/map/items/plate_items.gd')
| -rw-r--r-- | client/map/items/plate_items.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/map/items/plate_items.gd b/client/map/items/plate_items.gd index c8e6901f..adbe7aa9 100644 --- a/client/map/items/plate_items.gd +++ b/client/map/items/plate_items.gd @@ -47,6 +47,12 @@ class CurryP extends PlateFill: super(owned_by_) set_color(Color(.75, .45, .1)) +class CookedRiceCurryP extends Plate: + func _init(owned_by_: Node3D): + super(owned_by_) + var fill = load("res://map/items/cooked-rice-curry-fill.tscn").instantiate() + add_child(fill) + class DirtyP extends Plate: func _init(owned_by_: Node3D): super(owned_by_) |