Advertisement
marcusa3000

Speedlines

Dec 26th, 2024
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.19 KB | None | 0 0
  1. {
  2.     Tools = ordered() {
  3.         FastNoise = FastNoise {
  4.             NameSet = true,
  5.             Inputs = {
  6.                 GlobalOut = Input { Value = 78, },
  7.                 Width = Input { Value = 1920, },
  8.                 Height = Input { Value = 1080, },
  9.                 ["Gamut.SLogVersion"] = Input { Value = FuID { "SLog2" }, },
  10.                 Center = Input {
  11.                     Value = { 0.5, 4.6 },
  12.                     Expression = "Point(0.5, time*0.10)",
  13.                 },
  14.                 Detail = Input { Value = 4.33, },
  15.                 Contrast = Input { Value = 1.38, },
  16.                 LockXY = Input { Value = 0, },
  17.                 XScale = Input { Value = 50, },
  18.                 YScale = Input { Value = 0.6, },
  19.                 SeetheRate = Input { Value = 0.5, },
  20.                 Type = Input { Value = 1, },
  21.                 Gradient = Input {
  22.                     Value = Gradient {
  23.                         Colors = {
  24.                             [0] = { 0.87843137254902, 0.662745098039216, 0.0901960784313725, 1 },
  25.                             [0.33] = { 1, 0.8039215686275, 0.0549019607843, 1 }
  26.                         }
  27.                     },
  28.                 }
  29.             },
  30.             ViewInfo = OperatorInfo { Pos = { -1595, 973.5 } },
  31.         },
  32.         CoordinateSpace = CoordSpace {
  33.             CtrlWZoom = false,
  34.             NameSet = true,
  35.             Inputs = {
  36.                 Shape = Input { Value = 1, },
  37.                 Input = Input {
  38.                     SourceOp = "FastNoise",
  39.                     Source = "Output",
  40.                 }
  41.             },
  42.             ViewInfo = OperatorInfo { Pos = { -1595, 1006.5 } },
  43.         }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement