The Throne and Liberty Speeder has been updated to version 202.
A couple of camera zoom commands have been added to allow you to control zoom distance via scripts:
- "get % zoom,[variable]" — The camera's current zoom distance will be placed into "variable." You may find this command useful in conjunction with the "zoom" command. Example:
- keys=get % zoom,ZOOM|dbg % camera distance: (VAR % ZOOM)
- "zoom[distance]" — The camera's current zoom distance will be set to "distance." Example:
- keys=eq % ZOOM,0|get % zoom,ZOOM|dbg % locking zoom distance to (VAR % ZOOM)
keys2=zoom(VAR % ZOOM)
keys3=s10
endkeys=store % ZOOM,0|dbg % zoom unlocked
repeat=2 - The above example will lock the camera's zoom distance to its current value.
- keys=eq % ZOOM,0|get % zoom,ZOOM|dbg % locking zoom distance to (VAR % ZOOM)