I have something that works, but I want the idea of constantly scanning the map, and the code I have at the moment creates awkward pauses, as I have it interpolating from it's current alignment to another one. Here's the code.
Code: Select all
image map_scanning:
"placeholder.jpg"
zoom 2.0
block:
choice:
linear 5.0 align (0.0, 0.0)
choice:
linear 5.0 align (1.0, 0.0)
choice:
linear 5.0 align (0.0, 1.0)
choice:
linear 5.0 align (1.0, 1.0)
1.0
repeatSo, as you can see, each choice has the same chance of happening, but there's a 1/4 chance of the image just not moving, and this rather spoils the illusion of constantly scanning the map. Is there a way I can make it so that, after a repeat the same choice is never made twice? Should I be using choice in the first place or is there a better solution?
Thanks in advance <3

