博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
按钮响应
阅读量:6169 次
发布时间:2019-06-21

本文共 618 字,大约阅读时间需要 2 分钟。

  hot3.png

// boolean variable to decide whether to show the window or not.
// Change this from the in-game GUI, scripting, the inspector or anywhere else to
// decide whether the window is visible
var doWindow0 : boolean = true;
// Make the contents of the window.
function DoWindow0 (windowID : int) {
    ( (10,30, 80,20), "Click Me!");
}
function OnGUI () {
    // Make a toggle button for hiding and showing the window
    doWindow0 = ( (10,10,100,20), doWindow0, "Window 0");
   
    // Make sure we only call if doWindow0 is true.
    if (doWindow0)
        (0, (110,10,200,60), DoWindow0, "Basic Window");
}

转载于:https://my.oschina.net/jieshu/blog/156211

你可能感兴趣的文章
nslookup错误
查看>>
我的友情链接
查看>>
Supported plattforms
查看>>
做自己喜欢的事情
查看>>
CRM安装(二)
查看>>
Eclipse工具进行Spring开发时,Spring配置文件智能提示需要安装STS插件
查看>>
NSURLCache内存缓存
查看>>
jquery click嵌套 事件重复注册 多次执行的问题
查看>>
Dev GridControl导出
查看>>
开始翻译Windows Phone 8 Development for Absolute Beginners教程
查看>>
Python tablib模块
查看>>
站立会议02
查看>>
Windows和Linux如何使用Java代码实现关闭进程
查看>>
0428继承性 const static
查看>>
第一课:从一个简单的平方根运算学习平方根---【重温数学】
查看>>
NET反射系统
查看>>
Oracle12C本地用户的创建和登录
查看>>
使用JS制作一个鼠标可拖的DIV(一)——鼠标拖动
查看>>
HDU problem 5635 LCP Array【思维】
查看>>
leetcode10. 正则表达式匹配
查看>>