10 lines
195 B
GDScript
10 lines
195 B
GDScript
extends Item
|
|
class_name ToolItem
|
|
|
|
@export var area_width: float = 50
|
|
|
|
func generate_action_area(player : Player) -> ActionArea:
|
|
return ActionArea.new(
|
|
player,
|
|
area_width
|
|
) |