16
SCI Syntax Help / Large cel doesn't respond to setMotion: MoveTo
« on: April 30, 2023, 01:00:45 AM »
A SCI0 cel must be less than 2,116 pixels (46 x 46) or it will not respond to (self setMotion: MoveTo xPos yPos).
If you try to get around that with something like this:
You get major graphical glitches with cels containing over 2,116 pixels.
This behavior is exactly the same in DOSBox and ScummVM. It's a bit annoying.
If you try to get around that with something like this:
Code: [Select]
(if (> (self y?) 75)
(-- yPos))
(self posn: 160 yPos)
)You get major graphical glitches with cels containing over 2,116 pixels.
This behavior is exactly the same in DOSBox and ScummVM. It's a bit annoying.