
This is the character and the collider that will trigger the transition of camera.

When the character hits or enters the collider. The camera will switch to this character.

My question is how will the camera will switch? Thank you for the help

Code: Select all
Camera(Full Back, Boy123)
Code: Select all
Camera(Cutscene Camera Position)
Code: Select all
Fade(out,1);
Camera(Full Back, Boy123)@1;
Fade(in,1)@1;
AnimatorPlay(StandUp, Boy123)@2;
AudioWait(GiveAnswer, Boy123)@3
Code: Select all
Camera(Full Back, Boy123);
Delay(10)
Code: Select all
SetEnabled(SmoothCameraFollow,false,Player);
SetEnabled(MouseLook,false,Player);
Camera(Full Back, Boy123);
SetEnabled(SmoothCameraFollow,true,Player)@10;
SetEnabled(MouseLook,true,Player)@10