Three things to remember…
For adding to iPhone speed:
1. #pragma strict
2. Script Call Optimization
A good development practice on the iPhone is to never rely on exception handling (either internally or through the use of try/catch blocks). When using the default Slow and Safe option, any exceptions that occur on the device will be caught and a stack trace will be provided. When using the Fast but no Exceptions option, any exceptions that occur will crash the game, and no stack trace will be provided. However, the game will run faster since the processor is not diverting power to handle exceptions. When releasing your game to the world, it’s best to publish with the Fast but no Exceptions option.
3. Stripping Level
Most games don’t use all necessary dlls. With this option, you can strip out unused parts to reduce the size of the built player on the iPhone. If your game is using classes that would normally be stripped out by the option you currently have selected, you’ll be presented with a Debug message when you make a build.
[...] Three Thing to Remember-iPhone/Unity advice from PixelPlacement.com [...]
[...] Three Thing to Remember-iPhone/Unity advice from PixelPlacement.com [...]
[...] Three Thing to Remember-iPhone/Unity3D advice from PixelPlacement.com [...]
[...] Three Thing to Remember-iPhone/Unity3D advice from PixelPlacement.com [...]
[...] Three Thing to Remember-iPhone/Unity3D advice from PixelPlacement.com [...]
[...] Three Thing to Remember-iPhone/Unity3D advice from PixelPlacement.com [...]