我一直在努力简单地显示当前时间,但找不到一个解决方案,anywhere...so为错误的帖子道歉。
我只想在用户的pc或手机上显示时间。
我能做的是让时间显示在框中的消息,而不是它只是显示和更新每秒。
这是我当前的代码
//store the current time
t=date_current_datetime();
//get the hour portion of that time
h=date_get_hour(t);
//get the minute portion of the time.
m=date_get_minute(t);
//get the second potion of the time
s=date_get_second(t);
//show the time
txt="The current time is:"+string(h)+":"+string(m)+":"+string(s);
show_message(txt); 希望这个gamemaker代码有意义,谢谢你的帮助。
发布于 2015-07-13 02:12:48
好的,添加到Create事件:
txt = "";
alarm[0] = 1;将您的代码移动到Alarm 0事件:
//store the current time
t = date_current_datetime();
//get the hour portion of that time
h = date_get_hour(t);
//get the minute portion of the time.
m = date_get_minute(t);
//get the second potion of the time
s = date_get_second(t);
//show the time
txt = "The current time is: " + string(h) + ":" + string(m) + ":" + string(s);
alarm[0] = room_speed;和last - Draw事件:
draw_text(10, 10, txt);当然,您也可以使用Draw GUI事件或视图坐标,例如
draw_text(view_xview[0] + 10, view_yview[0] + 10, txt);https://stackoverflow.com/questions/31370455
复制相似问题