クソゲー入れ

Unity製のクソゲー

5作目:画面遷移するだけのゲーム

| Comments

画面遷移テスト

このサイトを参考にした
雑な画面遷移(クリックで遷移)

ビルドしてから気づいたけど「スタート」とか「ゲームメイン画面」とか「ゲームオーバー」とかテキスト入れていたのに消えてる

画面遷移のソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
 
public class red : MonoBehaviour {
 
  // Use this for initialization
  void Start () {
      
  }
  
  // Update is called once per frame
  void Update () {
 
      if (Input.GetMouseButtonDown (0)) {
          SceneManager.LoadScene ("green");
      }   
  }
}
1
SceneManager.LoadScene ("green");

で引数に渡したグリーンのシーンを呼び出している

1
Input.GetMouseButtonDown (0)

if文のこれはマウスクリックされたらtrueを返す

Comments