Advertisement
Enjl

sinelayers

Aug 22nd, 2022 (edited)
1,145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.77 KB | None | 0 0
  1. -- sinelayers 1.0
  2. -- by Enjl
  3. -- last updated August 22 2022
  4.  
  5. local sl = {}
  6.  
  7. local layers = {}
  8.  
  9. -- This script automatically works via layer names.
  10. -- Layer names follow a specific format.
  11. -- Examples:
  12. -- sinea8f1x10y10d8 -- Y-Sway amplitude of 8 (* 8), frequency of 1 (second), x-movement of 10 (blocks right), y-movement of 10 blocks (down), over the course of 8 (seconds)
  13. -- sinea0f1x-3y-8d1 -- No sway. Move 3 blocks left and 8 blocks up within one second.
  14.  
  15. -- Explanation:
  16. -- The layer gets 2 sine motions applied. A constant y-sway, and a separate x/y movement motion. The former is controlled by a, f. The latter by x, y, d
  17. -- sinea <- identifier
  18. -- a[num] <- amplitude of the constant y-swaying motion, in quarter-blocks (pixels * 8)
  19. -- f[num] <- frequency of the constant y-swaying motion, in seconds
  20. -- x[num] <- horizontal distance travelled during movement motion, in blocks (pixels * 32)
  21. -- y[num] <- vertical distance travelled during movement motion, in blocks (pixels * 32)
  22. -- d[num] <- frequency (duration) of the movement motion, in seconds
  23. local function addSineLayer(layer, amplitude, frequency, xMovement, yMovement, duration)
  24.     table.insert(layers, {
  25.         layer = layer,
  26.         yAmp = amplitude * 4,
  27.         yFreq = math.max(frequency, 0.1),
  28.         xMult = xMovement * 16,
  29.         yMult = yMovement * 16,
  30.         xFreq = math.max(duration, 0.1)
  31.     })
  32. end
  33.  
  34. function sl.onStart()
  35.     for k,l in ipairs(Layer.get()) do
  36.         if l.name:find("sinea") then
  37.             local amp = l.name:find("a")
  38.             local freq = l.name:find("f")
  39.             local x = l.name:find("x")
  40.             local y = l.name:find("y")
  41.             local duration = l.name:find("d")
  42.             addSineLayer(
  43.                 l,
  44.                 tonumber(l.name:sub(amp+1, freq-1)),
  45.                 tonumber(l.name:sub(freq+1, x-1)),
  46.                 tonumber(l.name:sub(x+1, y-1)),
  47.                 tonumber(l.name:sub(y+1, duration-1)),
  48.                 tonumber(l.name:sub(duration+1))
  49.             )
  50.         end
  51.     end
  52. end
  53.  
  54. local timer = 0
  55. local add = math.pi/64.1 * 4
  56.  
  57. function sl.onReset()
  58.     timer = 0
  59. end
  60.  
  61. function sl.onTick()
  62.     if not Layer.isPaused() then
  63.         local oldTimer = timer
  64.         timer = timer + add
  65.         for k,v in ipairs(layers) do
  66.             local oldAmp = math.sin(oldTimer / v.yFreq);
  67.             local oldMove = math.cos(oldTimer / v.xFreq)
  68.             local newAmp = math.sin(timer / v.yFreq)
  69.             local newMove = math.cos(timer / v.xFreq)
  70.             v.layer.speedX = -(newMove - oldMove) * v.xMult
  71.             v.layer.speedY = -(newMove - oldMove) * v.yMult + (-(newAmp - oldAmp) * v.yAmp)
  72.         end
  73.     end
  74. end
  75.  
  76. registerEvent(sl, "onStart")
  77. registerEvent(sl, "onTick")
  78. registerEvent(sl, "onReset")
  79.  
  80. return sl
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement