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.
9 lines
156 B
9 lines
156 B
2 years ago
|
extends RigidBody3D
|
||
|
class_name Item
|
||
|
|
||
|
const GRID_SIZE := 0.05
|
||
|
|
||
|
@export var size := Vector3i(1, 4, 1)
|
||
|
|
||
|
@onready var mesh := $MeshInstance3D as MeshInstance3D
|