如果有人能向我解释 occam-pi 中文本动画的原理,我将不胜感激。谢谢。
问问题
168 次
1 回答
1
您需要导入course
库,并使用cursor.x.y
在屏幕上移动光标以进行绘制,或用空白位覆盖文本,这将导致动画。
http://occam-pi.org/occamdoc/course.html#name-cursor.xy
即,为了将光标移动到 3, 3:
#INCLUDE "course.module"
cursor.x.y( 3, 3, scr )
-- where scr is your screen channel
然后以通常的方式写到屏幕上
out.string( 'asdf', 0, scr )
重复...
于 2010-03-07T12:10:21.893 回答