Anyone can helpme, do a script to Overclock the Iphone 4 through Unity app. Im using Vuforia with Unity, and it need more power horse.
No problem if it get hot the phone.
Sure, no problem!
- go to settings
- go to date and time
- now set the overclock of your choice. Since it’s 2013, I would recommend you set the over clock to 2013, and check the time… if you’re feeling adventurous you could maybe put it one or two minutes into the future.
Thanks Dump…
Well you asked for gibberish so I obliged. I mean, overclocking an iPhone via unity script? are you for real?
In Using Vuforia for Augmented Reality, on iphone 4 does not run good, to heavy. Then i saw an AR from Total Immersion, more complex and runing on my iphone 4, is another world, pretty lite and smooth image track.
I think that is some script that make this possible, thats why I ask.
About the only “overclocking” you can do with Unity iPhone is to change Application.targetFrameRate. On mobile its default value is 30. I tend to set it to 60 in an Awake() handler.
Nevertheless, you can’t really overclock with a Unity script, in the strict sense of the word.
i chage this Application.targetFrameRate, in XCODE project exported from Unity?
Attach a script to a game object in your first scene with an Awake() handler with this in it:
Application.targetFrameRate = 60;
(i’m typing from my ipad, otherwise I’d just make you the script)