// =========================================================================== // Copyright 2018 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // agreement provided at the time of installation or download, or which // otherwise accompanies this software in either electronic or hard copy form. // =========================================================================== // // // // // // HfBuildFurImages(string $fPath, string $sdwPath, string $imgPath, int $buildShadow, int $buildImage) // // // To generate fur shadow maps and fur images in the background process. // // // None. // // // None. // // // string $project = `workspace -q -dir`; // // string $fPath = ($project + "/furFiles/SceneName"); // string $imgPath = ($project + "/furImages/SceneName"); // string $sdwPath = ($project + "/furShadowMap/SceneName"); // int $buildShadow = 1; // (Generate fur shadow maps) // // 0 (No fur shadow maps) // int $buildImage = 1; // (Generate fur images) // // 0 (No fur images) // HfBuildFurImages($fPath, $sdwPath, $imgPath, $buildShadow, $buildImage); // // //