unity页面切换

一,功能:

做一个界面,点击继续,会弹出下一个界面。点击退出按钮,关闭界面。

如下图,Out和Contunue是两个按钮。

unity页面切换_第1张图片

二:对于Image2和Image2(1)的设置:

 创建脚本Appear:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Apper : MonoBehaviour {

    public void Click()
    {
        print("你好");
        gameObject.SetActive(true);
    }
}

创建脚本disappear:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class disapper : MonoBehaviour {

    //点击cube,显示image
    public void Click()
    { 
        gameObject.SetActive(false);
    }
}

将两个脚本拖到Image2和Image2(1)上。

 三,对于按钮Continue进行如下设置:

unity页面切换_第2张图片

四,对于按钮Out进行如下设置: 

unity页面切换_第3张图片

 这样就可以实现了。

你可能感兴趣的:(虚拟现实)