animate sqdl wrapper works now.

This commit is contained in:
Leo
2017-11-01 10:14:46 -02:00
committed by CitadelStationBot
parent 56c534fa62
commit 24eece99a5
@@ -3,9 +3,17 @@
/proc/_abs(A)
return abs(A)
<<<<<<< HEAD
/*/proc/_animate(atom/A, set_vars, time = 10, loop = 1, easing = LINEAR_EASING, flags_1 = null)
animate(A, set_vars, time, loop, easing, flags_1)
Borked. If anyone wants to fix this be my guest.*/
=======
/proc/_animate(atom/A, set_vars, time = 10, loop = 1, easing = LINEAR_EASING, flags = null)
var/mutable_appearance/MA = new()
for(var/v in set_vars)
MA.vars[v] = set_vars[v]
animate(A, appearance = MA, time, loop, easing, flags)
>>>>>>> 517a747... Merge pull request #32292 from RemieRichards/patch-5
/proc/_acrccos(A)
return arccos(A)