0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Unityでボタンを使ってシーンをロードする際のプログラム

Last updated at Posted at 2020-01-15

いちいちシーンロードするプログラムを書かなくても簡単にロードしたいシーンに移動できるプログラムを自分なりに考えてみました。
ぜひ、参考にしてみてください。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement; //シーン移動するために必要
//using UnityEngine.UI;              //UIを使う際に必要

public class LoadSceneButton : MonoBehaviour
{
    //[SerializeField]を使うことでpraivateの状態で
    //publicと同じようにunityのInspectorで入力できる
    [SerializeField] string loadsceneName = "";

    public void LoadSceneButtonDown()
    {
        //Inspectorで入力された名前が(loadsceneName)に入り
        //そのシーンをロードする
        SceneManager.LoadScene(loadsceneName);
    }
}

上記のプログラムをボタンにアタッチしprefab化するとステージセレクトボタンを作る際に楽になると思います。

自分自身まだプログラムの経験が浅いためこのプログラムで大丈夫かが不安ですが役立つことができたら幸いです。

0
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?