View previous topic :: View next topic |
Author |
Message |
Buni Pickney Bear Chess World Champion

Joined: 13 Jul 2007 Posts: 11
|
Posted: Mon Jan 11, 2010 12:58 pm Post subject: Moving slices |
|
|
Like everyone else, I have a slice question. So I've seen games where slices seem to move around pretty smoothly, but when I tried to move slices in my own game (specifically using set slice screen x) they instantaneously moved. I'm pretty sure that's how it's supposed to work, but is there any plotscript command that moves slices a certain distance like you can move NPCs? Thanks in advance! |
|
Back to top |
|
 |
Bob the Hamster OHRRPGCE Developer

Joined: 22 Feb 2003 Posts: 2526 Location: Hamster Republic (Southern California Enclave)
|
Posted: Mon Jan 11, 2010 1:03 pm Post subject: |
|
|
Nope. You probably want a for loop.
Code: |
variable(x)
for(x, 0, 99), do(
set slice screen x(sl, x)
wait(1)
)
|
|
|
Back to top |
|
 |
Buni Pickney Bear Chess World Champion

Joined: 13 Jul 2007 Posts: 11
|
Posted: Mon Jan 11, 2010 2:33 pm Post subject: |
|
|
All right, that makes sense. Thanks! |
|
Back to top |
|
 |
|