I’m looking to use the Print String function within a blueprint to print onscreen a piece of text that includes the value of one of the blueprint’s variables. For example, “Coins Collected: X” where x is the current value of an int variable called Coins. How would I do this? Any help would be appreciated. Thanks!
Get coins → To string (Int) → Append [Coins collected: ] → Print string
That’s the node structure you should use.
Be careful though, print string is a debug tool, it won’t show on the finished game. Display it in the HUD instead.
Yup, that’s exactly what I needed. Thanks!