©BBB3viz

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Table of Contents

This page provides information on exploring the parameters of materials and textures created from plugins with V-Ray.

 

Overview


Material and textures can be created from any V-Ray Standalone material or texture plugin that comes with the V-Ray installation. The parameters of these materials and textures can be accessed through the command prompt.

 

Accessing Parameters in CMD


Details on plugin nodes from plugins is available with the plgparams.exe tool that comes with the V-Ray installation.

By default, the plgparams.exe can be found in C:\Program Files\Chaos Group\V-Ray\3ds Max NNNN\bin\ where NNNN is your 3ds Max version number, such as 2018.

 

With the command prompt, navigate to the C:\Program Files\Chaos Group\V-Ray\3ds Max NNNN\bin\ folder and run plgparams.exe without arguments to see a help message on the tool's usage. In general, you will need to run a series of commands to point plgparams to the plugin folder, locate the V-Ray name of the node (which might differ from its display name in the V-Ray UI), and list the parameters for the plugin.

To point plgparams to the folder where your plugins reside, use the -plugindir option:

plgparams -plugindir <plugin folder>

This command tells plgparams where to find your plugins. By default, the default plugins folder location is C:\Program Files\Chaos Group\V-Ray\3ds Max NNNN\bin\plugins.

"C:\Program Files\Chaos Group\V-Ray\3ds Max 2018\bin\plgparams.exe" -plugindir "C:\Program Files\Chaos Group\V-Ray\3ds Max 2018\bin\plugins"

To see the list of plugin names in this folder, use the following command:

## Usage
plgparams -plugindir <plugin folder> -list
 
## Example
"C:\Program Files\Chaos Group\V-Ray\3ds Max 2018\bin\plgparams.exe" -plugindir "C:\Program Files\Chaos Group\V-Ray\3ds Max 2018\bin\plugins" -list

Note that the plugin folder must be specified with the -plugindir switch each time you run the command.

To see help on the parameters for a specific plugin, name the plugin in quotes after the -plugindir switch and folder. For example, to see help on the BRDFGlass plugin, use the command:

## Usage
plgparams -plugindir <plugin folder> <plugin name>
 
## Example
"C:\Program Files\Chaos Group\V-Ray\3ds Max 2018\bin\plgparams.exe" -plugindir "C:\Program Files\Chaos Group\V-Ray\3ds Max 2018\bin\plugins" BRDFGlass

This will list all the parameters for the plugin, and definitions for each.

 

Was this helpful?