Improve warping code slightly.

This commit is contained in:
Casper V. Kristensen 2019-06-20 00:10:37 +02:00
parent c17fab7703
commit 5f4df3b138
Signed by: caspervk
GPG key ID: 289CA03790535054

View file

@ -3,13 +3,16 @@
function warp_to {
parameter timestamp.
if timestamp <= TIME:seconds {
return.
}
print "Warping for " + round(timestamp - TIME:seconds, 1) + " seconds".
KUNIVERSE:timewarp:warpto(timestamp). // TODO: improve.
wait until TIME:seconds >= timestamp. // TODO
}
function warp_for {
parameter seconds.
print "Warping for " + round(seconds, 1) + " seconds".
return warp_to(TIME:seconds + seconds).
}