I had to create timeCounter on the screen using string. But there are some errors appeared like this “expression must have integral or unscoped enum type” blablabla
Sorry for my English
it looks like “ti” isn’t a string it’s an int, so use ofToString(ti) so try it like this:
string strTime = "0" + ofToString(ti) + ":" + ofToString(se) + " ";
I tried this out. Thank you so much It gave me the result I want.