How do we know what to use instead of depreciated fucntions ?
Another example below
How would I figure out how to replace this deprecated function
Thanks
How do we know what to use instead of depreciated fucntions ?
Another example below
How would I figure out how to replace this deprecated function
Thanks
I think in that particular case you can use StringUtils::format(...);
I’ve seen some deprecated methods with comments like “use this other method instead”, like setDisplayFrame tells you to use setSpriteFrame, but maybe they forgot some of them. You could create a new issue thing on github and remind them.
Yes. When they have message about what to use in exchange, thats great. Just hard know when they do not. Thanks for tip !