Any #godot Jedi here who can tell me if Godot has something similar to tags in Unity? Web searches don’t give me a straight answer. Thanks!

@mediajolt I'm not a godot nor Unity jedi, but if your jedi doesn't come along: I think the Node Groups feature is similar:

https://docs.godotengine.org/en/stable/tutorials/scripting/groups.htm

@cd0 That seems to be the consensus. Thanks!
@mediajolt node groups probably the closest parallel, depending on what you need them for.
@KPD Thanks for the advice. Seems to be what everyone is suggesting.
@mediajolt some other jedis were faster, but yeah the group system is what you want 😁
https://docs.godotengine.org/en/stable/tutorials/scripting/groups.html
Groups

Groups in Godot work like tags in other software. You can add a node to as many groups as you want. Then, in code, you can use the SceneTree to: Get a list of nodes in a group., Call a method on al...

Godot Engine documentation