10 lines
247 B
GDScript
10 lines
247 B
GDScript
extends MeshInstance3D
|
|
|
|
@export var type:CollectableResource.ResourceType
|
|
@export var ant:WorkerAnt
|
|
|
|
func _process(delta: float) -> void:
|
|
visible = ant.capacity > 0 and \
|
|
ant.target == PlayerCamp.instance and \
|
|
ant.source_target.type == type
|