How does the camera work? #11
Answered
by
VectorSatyr
Feli0TheWriter
asked this question in
Q&A
-
Hey! |
Beta Was this translation helpful? Give feedback.
Answered by
VectorSatyr
Jan 7, 2025
Replies: 1 comment 3 replies
-
Hey, sorry for the late reply. You can check the |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
An instance of
PlayerCamera
is created by thePlayableCharacter
in the Create Event:User Event 0 of
PlayerCamera
handles connecting the camera to a view camera, while User Event 1 handles disconnecting it; these are called bygame_pc_camera_connect
andgame_pc_camera_disconnect
, respectively.They are indeed used that way. For example, in
player_is_looking_up
, the camera's behavior …