diff options
author | nokoe <nokoe@mailbox.org> | 2024-06-24 02:00:24 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-06-24 02:01:09 +0200 |
commit | 372bc4897f81fabb919ab79bce6d6d7aa00fad78 (patch) | |
tree | b094c5dbad652850e287413fd1101a4c180063a0 /client/map/items/plate.gd | |
parent | 4c51bd75579b148ba94f5a87aa8bd8ff19569705 (diff) | |
download | hurrycurry-372bc4897f81fabb919ab79bce6d6d7aa00fad78.tar hurrycurry-372bc4897f81fabb919ab79bce6d6d7aa00fad78.tar.bz2 hurrycurry-372bc4897f81fabb919ab79bce6d6d7aa00fad78.tar.zst |
add some items
Diffstat (limited to 'client/map/items/plate.gd')
-rw-r--r-- | client/map/items/plate.gd | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index 8ebea099..91faf0b1 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -18,4 +18,7 @@ extends Item func _init(owned_by_: Node3D): super(owned_by_) - add_child(load("res://map/items/plate.tscn").instantiate()) + base.add_child(load("res://map/items/plate.tscn").instantiate()) + +static func base_position() -> Vector3: + return Vector3(0., 0.015, 0.) |