Am I right in thinking that PRINT statements should be commented out for performance reasons? [import]uid: 9371 topic_id: 4885 reply_id: 304885[/import]
Yes, as they output to the device console and a lot of print statements each frame will have an effect on the performance.
If you work with them alot, then you might want to run your own print function. With it you can chekc if you are running in the simulator or on the device and act accordingly to it. [import]uid: 5712 topic_id: 4885 reply_id: 15735[/import]