CharacterController Move Scene Question

I cant figure out how to use Character Controller and sceneManager together i want my player to go to the next scene and i only made it so far with rigidbody movement but i rly want to use CC on my player!Any tutorials or any place i can learn more ?

CharacterController or Rigidbody movement has nothing to do with scene management. Both options will have the same limitations regarding preserving the character between scenes.

Here are some options:

  • Call DontDestroyOnLoad on your Character in Start() or Awake(). This will keep your character around even if you load a new scene with SceneManager.
  • Turn your character into a prefab (you should probably do this anyway), and place a copy of your character in each scene of your game.
  • Use Additive Scene loading - turn your character into a standalone scene with just the character. Then additively load a level. When the level is complete, unload that level and additively load the next level. Your character scene will not be destroyed if you use Additive loading.

Thank you very much I have the first 2 already done so ill try learning more about the additive scene loading !