Search Unity

Loading Previous Scene takes a lot time

Discussion in 'Editor & General Support' started by Grimstborith, Oct 21, 2017.

  1. Grimstborith

    Grimstborith

    Joined:
    Jun 13, 2017
    Posts:
    6
    Hello.

    I have an application with multiple scenes.

    When I am going forward, i mean loading scene number 1 from number 0, all is well.

    But when i try to load a previous scene, it takes a lot of time. How can i make it faster?

    I am currently using Input.GetKeyDown in update method.


    if (Input.GetKeyDown(KeyCode.Escape))
    {
    Application.LoadLevel("PreviousScene");

    // ON BACK PRESSED
    }