Can't find any reference to how to clear tag values from GridGraph using GraphUpdateScene

Using GraphUpdateScene.Apply() I can apply my tags during runtime, how do I clear them? I find no reference to it here: https://arongranberg.com/astar/docs/graphupdatescene.html.

I made an attempt setting GraphUpdateScene.modifyTags = false then calling Apply(), but no luck.

Hi

A node always has a tag, so it’s not possible to clear them. However, you can reset the tag to the default value (Tag 0). That can be done in the same way that you set the tags in the first place.

1 Like

Makes sense, thanks!