Hi there!
I'm facing some problems with the characters' text position when entering a room.
Say I enter a new room and I start a cutscene. Sometimes, the very first text will be in a random position and not on top of the character speaking(changing the TextPositionOverride didn't seem to do anythin). All other texts are positioned as expected.
For example, I might have something like this:
IEnumerator OnEnterRoomAfterFade(){ E.StartCutscene(); yield return C.Character1.Say("blah blab blah") //this text appears in a random position yield return C.Character1.Say("more blah") //this is positioned correctly E.EndCutscene(); }
Any ideas on what could be wrong?
I also have some secondary questions:
1) Sometimes I'd want a character to be talking in the background when entering a scene. I've noticed that if the character is off-screen, the text will appear on the edge of the screen. The problem is that when approaching the character, the text will stay in place and eventually appear as if it's floating.
Is there a built-in way to have the text stay on the edge of the screen while moving, and eventually rest on top of the character speaking when said character appears on the screen?
2)Having a character off-screen, is there a way to make their text not appear on the edge of the camera(making the text also off-screen).
Sorry for the long post, and thank you in advance!
~Alex