Go to: Synopsis. Return value. MEL examples.

Synopsis

HfBuildFurFiles(string $fPath, int $equalOption)

To generate Fur Files in the background process.

Return value

None

Arguments

Variable Name Variable Type Description
None.

MEL examples

 string $project = `workspace -q -dir`;

 string $fPath = ($project + "/furFiles/SceneName");

 // 1 (Default Equalizer map information will be added in the fur file).
 // 0 (Default Equalizer map information will not be added in the fur file).
 int $equalOption = 1;

 HfBuildFurFiles($fPath, $equalOption);