Starting Position of User

Hi, Everyone.

This is my first post here. Nice to meet all of you!

I’ve only recently started working with Unity and I have a question I’m hoping I can get a little help with. We’ve built a Cardboard app and have noticed that when the app starts up the user might be facing any direction. This means that what we want them to see right away when the app starts up isn’t necessarily what they see.

Is there a way to ensure that either (1) when the app starts up the user is always looking in the same direction, or (2) if it’s not possible to control the direction the user is facing when the app starts maybe we can rotate the user to face the direction we want.

I’ve come across a discussion that seems related here:

Any help would be greatly appreciated.

Thx!

Seems simple to me unless I’m missing something.
Lets say you want to always have the “user-gameobject” start out with a rotation of A.
When the game starts, the user’s rotation is B.
Presumably you’re currently doing A = user.rotation every update

Change this to remove the initial rotation B.
A = user.rotation - B.