templeos-info/public/Wb/Demo/Graphics/PanText.HC

36 lines
433 B
HolyC
Raw Normal View History

2024-03-16 10:26:19 +00:00
U0 PanText()
{
I64 i;
for (i=0;i<=7;i++) {
gr.pan_text_x=i;
Sleep(30);
}
i--;
for (;i>=-7;i--) {
gr.pan_text_x=i;
Sleep(30);
}
i++;
for (;i<=0;i++) {
gr.pan_text_x=i;
Sleep(30);
}
for (i=0;i<=7;i++) {
gr.pan_text_y=i;
Sleep(30);
}
i--;
for (;i>=-7;i--) {
gr.pan_text_y=i;
Sleep(30);
}
i++;
for (;i<=0;i++) {
gr.pan_text_y=i;
Sleep(30);
}
}
PanText;