Local Scoping
About Variables
In osl all variables are global scope and to use locally scoped variables you must use the keyword local
Where can I use local
?
local
?You can local scope inside of any function context
How does local
work?
local
work?The local keyword creates a key on an json object that's unique to the current context/scope that's accessible using the this keyword
this
has a different value depending on the scope of when you access it
Example script
If a local variable and a global variable exist with the same name, it will access the local variable first.
Last updated
Was this helpful?