Defualt phone orientation change?

Hi all

I am using the accelerator to control my player on android phones.

By default, the phone needs to be held vertically.

Is there a quick and dirty way to make its default at 45 degree angle?

Thanks for any help

Could you post your code please, it would be easier to help, if we see, what have you got so far.

Basically I am just addin 0.5 to the y input and it seems to work.

Just wondering if that was the done thing.

float curSpeed = Time.deltaTime * tiltSpeed;

 //tiltZ = Input.GetAxis ("Vertical") * curSpeed;
 //tiltX = Input.GetAxis("Horizontal") * curSpeed * -1f;

 tiltZ = (Input.acceleration.z + 0.5f) * curSpeed * -1f;
 tiltX = Input.acceleration.x * curSpeed * -1f;
[/code