如何在执行下一个任务之前完全等待屏幕更改方向?
IEnumerator ChangeOrientation()
{
Screen.orientation = ScreenOrientation.LandscapeLeft;
// Fix background not completely rotate on unpacking story
yield return Timing.WaitUntilTrue(() => Screen.orientation == ScreenOrientation.LandscapeLeft);
bool unpack = storyData.sceneBundleName.Length > 0; //If we have loaded a scene bundle
StoryManager.Instance.StartStory(this, unpack);
}