I am wondering is it possible to get the current tags of a line that has attached external function call using ink integration?
Code: Select all
* [Sentry: We might be ronin, but we still walk the path of honor.] {SetCharacterAttribute("sentry","ronin",1, true)} # LineTag_002_0201_6B477ABA_Sentry
I don't want to alter my SetCharacterAttribute calls, but instead in the SetCharacterAttribute call I would love to get current text and tags.
But when I do it the direct way I am getting empty strings only.
Code: Select all
Debug.Log($"Curernt tags: {string.Join(",", activeStory.currentTags)}");
this gives me empty results, despite the activeStory being ok. Am I missing something?