2009-11-30 41 views

回答

1

您将要导入的course库,并使用cursor.x.y移动光标在屏幕上绘制,或文本,这将导致在动画的空白位覆盖。

http://occam-pi.org/occamdoc/course.html#name-cursor.x.y

也就是说,为了将光标移动到3,3:

#INCLUDE "course.module" 

cursor.x.y(3, 3, scr) 

-- where scr is your screen channel 

,然后只写在屏幕上以通常的方式

out.string('asdf', 0, scr) 

重复...