I am trying to rotate an object using gyro and it rotates fine but the left and right rotation is flipped meaning when you tilt the phone right it will rotate left.
Origin = transform.rotation
Void Update()
{
Transform.rotation = Origin * Input.gyro.attitude;
}
Any suggestions?