VRAYprocedural – getting started 2 – compiling
- September 21st, 2010
- Write comment
Compiling a VRAYprocedural example
Compiling a SOP
After you have copied the samples folder from $HFS/toolkit/samples it is time to try and compile one of the examples. It is a little bit easier to compile a normal sop rather than a VRAYprocedural, so let’s do that first. The SOP_Star.C is easy to test.
cd $HOME/dev/houdini11.0/samples/SOP
hcustom SOP_Star.C
This will create SOP_Star.so in $HOME/houdini11.0/dso which is the default where hcustom will put plugins for most nodes. VRAYprocedurals are not loaded by houdini, but are loaded by mantra. They should be put in:
$HOME/houdini11.0/dso/mantra
If all went well, you should be able to start up a new houdini and inside of a geometry node, lay down a star sop. A change to a plugin requires you to restart houdini. However changing a VRAYprocedural does not require you to restart houdini as it is loaded by mantra and mantra is only called when you launch a render.

