Hi!
How does it affect Construct's performance if I create a hundred separate text objects vs. one text object with a hundred instances and an instance variable to separate them?
Will it for example affect the download size of the game?
I did some testing on the matter and at least 33 text objects vs 1 object with 33 instances didn't seem to affect the download size even a single kb.
Develop games in your browser. Powerful, performant & highly capable.
Text object is not a sprite. It is not drawn from some source as Sprite is. Text object is generated on the fly and that's why it does not affect download size. Note that it may look different on various devices since it is generated by the device. As it is not affecting download size, it does affect CPU usage.