I'm slowly picking up Tier II from Tier I using Visual Studio 2019 and the AppGameKit 2 library of functions.
I'd like to display an integer value using the CreateText command in Tier II.
In Tier I, the following works:
CreateText(3,"SCORE: " + str(score) )
However, when I call the Tier II function:
agk::CreateText( 3, "SCORE: " + str(score) );
I get an error message. Is "str" not recognized in Tier II or do I need to go about this a different way in C++?
The following command works, but I like having more text options with the CreateText command:
agk:
rint(score);
Any help greatly appreciated.