close

using UnityEngine;
using System.Collections;

public class test : MonoBehaviour {
public GameObject ccc;
// Use this for initialization
void Start () {

}

// Update is called once per frame
void Update () {
if(Input.GetKeyDown(KeyCode.R))
//如果按下鍵盤R
{
ccc.SetActive(false);

}

if(Input.GetKeyDown(KeyCode.E))
//如果按下鍵盤E
{
ccc.SetActive(true);

}
}
}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 bravohsiao 的頭像
    bravohsiao

    夏夜醍醐

    bravohsiao 發表在 痞客邦 留言(0) 人氣()