分類:[C#]
本当に初心者です。Unityを使ってC#でコードを書いたのですが、綺麗な書き方がわかりません。Canvasコンポーネントを取り出してtrueとfalseを変えるスクリプトです。訂正とアドバイスをできたらどなたかお願いします。
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class WindowOnOff : MonoBehaviour
{
// Use this for initialization
void Start ()
{
GetComponent<Canvas> ().enabled = false;
}
// Update is called once per frame
void Update ()
{
if (Input.GetKey (KeyCode.V)) {
GetComponent<Canvas> ().enabled = true;
}
if (Input.GetKey (KeyCode.B)) {
GetComponent<Canvas> ().enabled = false;
}
}
}
|