A game prototype built with Godot 4 exploring in-world inventory management mechanics.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
extends RigidBody3D |
|
class_name Item |
|
|
|
const GRID_SIZE := 0.05 |
|
|
|
@export var size := Vector3i(1, 4, 1) |
|
|
|
@onready var mesh := $MeshInstance3D as MeshInstance3D
|
|
|