I want to download data written in the lua variant (eyeonScript). However, the data is flooded with references to initialization functions that are not lua equal:
Redden = BrightnessContrast {
Inputs = {
Red = Input {
Value = 0,
},
},
}
Standard lua gives the error "try to call a null value" or "unexpected character". Is there a way to catch them and pass them to some common initializer?
I want to finish with a nested table data structure.
Thank!
oofoe source
share