Hello,
I have a very small basic battleground with 1 unit on left, 1 unit on right, and two buttons Attack and Rest for each.
Under this i have a Patch9Frame with a RichTextLabel
When i Attack i print a text "You hit for 4 points" for example in this frame. When i rest, text is something like "You rest and regain 2 points".
It's "fine"... but the previous text disappear each time i click a button.
get_node("CombatText").set_text("You hit for "+str(_Power)+" points")
How can i do something like mostly all roguelike games or MMORPG, a kind of chat/log windows that can keep track of events, line by line ?