PlotJuggler
PlotJuggler copied to clipboard
Question Reactive Script
I´m trying Reactive Script and have questions:
I started with a basic script:
file = io.open("testwrite.txt","w")
myText = "Hello"
file:write(myText)
file:close()
Raise Error:
This script was tested with Lua 54 and work fine.
Another question: Is possible install Lua modules? for example LuaSocket https://github.com/lunarmodules/luasocket
My setup:
Win10 PlotJuggler-Windows-3.6.0
Thank you
Here are the lua libraries loaded for the reactive function editor. I assume your script isn't working bc the io library is not explicitly loaded.
Adding the library could be done there, but I imagine that especially file io would be pretty slow for doing on cursor movement.
Thank you