入门源码

来源:互联网 发布:淘宝能直接微信支付吗 编辑:程序博客网 时间:2024/06/05 11:29
using System.Collections;
using System.Collections.Generic;
using UnityEngine;


public class action : MonoBehaviour {


// Use this for initialization
void Start () {

}

// Update is called once per frame
void Update () {

}


    void OnGUI()
    {
        GUI.skin.label.fontSize = 100;
        GUI.Label(new Rect(10, 10, Screen.width, Screen.height), "我爱亲亲宝,亲爱的!!");


    }
}
0 0