Hello.
I found that the Text system, is really interesting... But I like the old Basic styles with "Set Cursor", "Ink", "Print", "Center Text" or "Text".
So, I decided to emulate all these (and more

) on AppGameKit.
I highly inspired from DarkBASIC Professional's print commands.
The main challenge was not to optimise the system to reduce cpu consumption because for this I use a "stack" system I've created that stores all emulated commands in a dynamic list and then, execute them all at once checking to avoid multiple "SetTextfont" or "SetTextColor" calls. It do the minimum, to render the requested texts.
the main challenge was to be able to handle a multi-lines print command to write long texts like they should be.
Here is a small demonstration of this :
Do you think I should makes an "ofiicial eXtends WIP " thread ?
Regards,