It is possible to create your own shaders using Open Shading Language. OSL shaders can be used to implement anything from simple texture patterns to full materials using closures. They can be placed in the plugin search path, and will then be automatically loaded like other types of shaders. Once loaded, they can be inspected, instantiated, and linked in the same way as C++ shaders. The More information about using OSL shaders can be found here. here. Shader outputs can be linked to inputs of other shader nodes in an .ass file or programmatically via the AiNodeLinkOutput() function by optionally specifying which output is desired when linking. When no output is specified, the node's default output parameter will be chosen, preserving Arnold's existing behavior. Standard OSL language rules apply when specifying multiple OSL shader outputs. An example OSL shader with three color outputs could look like the following snippet and each output could be connected separately :
The OSL shaders used in the above examples can be found here.
osl
node provides an alternate way to load OSL shaders, which can be used to write shader code for a specific material. When setting the shader name or code, the parameters from the OSL shader automatically appear on the node to be set or linked.An example .osl shader and .mtd file can be found here.
Limitations
Multiple Outputs
shader test_shader
(
output color result = color(
1
,
1
,
1
),
output color good = color(
0
,
0
,
1
),
output color bad = color(
1
,
0
,
0
)
)
{
}
An example .ass file using multiple outputs can be downloaded here.
OSL shader using multiple shader outputs
OSL Code
Write the shader code here.
Compile OSL Code
Compiles the OSL shader.
Import
Loads the code from a .osl script file.
Export
Writes the shader code to a .osl script file.
OSL Attributes
View the attributes of the OSL shader here once it has compiled.