Unity Tutorial - How to do multiple Scenes

Поделиться
HTML-код
  • Опубликовано: 8 янв 2025

Комментарии • 26

  • @joeyllorca502
    @joeyllorca502 4 года назад +10

    This tutorial has the complete info in terms of multiple scenes than other videos. its great..

  • @tantarcheng3050
    @tantarcheng3050 3 года назад +11

    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    using UnityEngine.SceneManagement;
    public class ToNextScene : MonoBehaviour
    {
    public void LoadNextScene()
    {
    int currentSceneIndex = SceneManager.GetActiveScene().buildIndex;
    SceneManager.LoadScene(currentSceneIndex + 1);
    }
    public void LoadStartScene()
    {
    SceneManager.LoadScene(0);
    }
    }

  • @danila116-52
    @danila116-52 2 года назад

    Thank you so much! You tutorial is very good!!!

  • @Immigrantsworld
    @Immigrantsworld 3 года назад +1

    Thanks you man this was very helpful!!!

  • @miaofeila
    @miaofeila 3 года назад +1

    Thank you very much Sir this helped me a lot

  • @jolibog8119
    @jolibog8119 Месяц назад

    it stil zhe best vid on this topic

  • @drm8164
    @drm8164 3 года назад +1

    Please, how to deal when you have a GAME OVER and MULTIPLE SCENES and want to restart in the concerned scene when the player dies? I struggle so much to realise it.

  • @DrPrabathJayatissa
    @DrPrabathJayatissa 3 года назад +1

    All in one, this is great

  • @bluecloudcreationx7907
    @bluecloudcreationx7907  4 года назад

    hit SUBSCRIBE for helpful tutorials! :)

  • @inteletronx3564
    @inteletronx3564 3 года назад +1

    Thanks for the useful video.
    In 3D game world how do we position and instantiate the button after completing the goal right in front of the screen??

  • @niushayaghini9953
    @niushayaghini9953 3 дня назад

    thanks it was great

  • @interestingduniya9181
    @interestingduniya9181 2 года назад

    thanks for information

  • @justinflores7781
    @justinflores7781 3 года назад

    Is this how open world games are created , adding scenes together ?

    • @tuananhluu768
      @tuananhluu768 3 года назад +3

      open world is using another method call pseudo generator

  • @garysmith4283
    @garysmith4283 2 года назад

    Thanks very helpfull.

  • @ekzac
    @ekzac Год назад

    I thought "do multiple scenes" did mean to actual work with multiple scenes. To load a scene is very easy and a quick look on the docs should do the work, but suppose I have multiple scenes for Level 1, Level 2, Level 3..Level 99, now I want to add a new component in the Camera of the scenes. Should I open scenes from 1 to 99, add the component and save? I am certain that there is a better way, or Unity really sucks for level management.

  • @hezekiahsaifpalmes8545
    @hezekiahsaifpalmes8545 Год назад

    Thank you.

  • @OfficialHarrison
    @OfficialHarrison 2 года назад

    Instead of helping me, they just give me more problems

  • @aaryanbhabhe
    @aaryanbhabhe 4 года назад +1

    Make more tutorial videos....😂