Application.loadedLevelName
で取得できます.
Debug.Log(Application.loadedLevelName);
特定のシーンのときのみ何かしたいときは
if (Application.loadedLevelName == "HogeScene") {
// TODO:
}
って感じでいけます.
Go to list of users who liked
More than 5 years have passed since last update.
Application.loadedLevelName
で取得できます.
Debug.Log(Application.loadedLevelName);
特定のシーンのときのみ何かしたいときは
if (Application.loadedLevelName == "HogeScene") {
// TODO:
}
って感じでいけます.
Register as a new user and use Qiita more conveniently
Go to list of users who liked