Created
March 11, 2021 14:09
-
-
Save pvanliefland/cd1e1ae9f0d13d6be5330d4a17a139f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string content = story.Continue().Trim(); | |
List<string> tags = story.currentTags; | |
if (tags.Count > 0) { | |
string lastTag = tags.Last().ToString(); | |
if (lastTag == "positiveChoice") { | |
Debug.Log("Last Tag" + lastTag); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment