2009-11-30 37 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) 

重複...