Making a Reset Menu in Unity XR

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

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

  • @3DComparison
    @3DComparison Год назад +2

    Great content! Looking forward for more added feature for the VR app!

  • @Productimothy
    @Productimothy 10 месяцев назад +1

    Unity's Load Screen Script:
    using UnityEngine;
    using UnityEngine.SceneManagement;
    ///
    /// Load scene using name, or reload the active scene
    ///
    public class LoadScene : MonoBehaviour
    {
    public void LoadSceneUsingName(string sceneName)
    {
    SceneManager.LoadScene(sceneName);
    }
    public void ReloadCurrentScene()
    {
    SceneManager.LoadScene(SceneManager.GetActiveScene().name);
    }
    }

  • @m.garaseey
    @m.garaseey 9 месяцев назад

    provide the on button press script please

  • @anooymous84
    @anooymous84 Год назад +1

    at least provide scripts that you find elsewhere. or pause the damn screen to allow us to type all that shit in