unity3d随笔-1

来源:互联网 发布:樱井知香迅雷种子全集 编辑:程序博客网 时间:2024/05/19 08:23
using System.Collections;using System.Collections.Generic;using UnityEngine;public class test : MonoBehaviour {    public string username = "";    public string password = "";    public string ispass ="yes";    void OnGUI()    {        GUI.Box(new Rect(10, 10, 200, 120),"登录框");        GUI.Label(new Rect(20,40,50,30),"用户名");        username = GUI.TextField(new Rect(70, 40, 120, 20), username);        GUI.Label(new Rect(20, 70, 50, 30), "密码");        password = GUI.PasswordField(new Rect(70, 70, 120, 20), password ,'*');        if (GUI.Button(new Rect(70, 100, 50, 25), "登录"))        {            if (username == "myhaspl" && password == "good123")            {                ispass = "yes";            }            else            {                ispass = "no";            }        }       if (ispass=="yes")        {             GUI.Label(new Rect(120, 100, 50, 25), "正确");        }       else if (ispass == "no")        {            GUI.Label(new Rect(120, 100, 50, 25), "错误");        }    }// Use this for initializationvoid Start () {}// Update is called once per framevoid Update () {}}


0 0
原创粉丝点击