Changing camera scenes in Godot to change the POV from player to other area

Godot Version

4.4.1

I am trying to add code into my game which will switch the players camera from their camera to another camera when they walk into a certain scene, however I am relatively new with Godot and coding so all help would be appreciated thanks! (For ref I am planning on making a 2d platformer and would like the camera functions to work similar to Hollow Knight)


You can have multiple Camera2D nodes set up in your scene and change between them with make_current() function.

1 Like

Thanks so much!!