#ifndef shaveConstant_h #define shaveConstant_h // Shave and a Haircut // (c) 2019 Epic Games // US Patent 6720962 class shaveConstant { public: enum FileNameFormat { kNoFileNameFormat, kFileExtFrame, kFileFrameExt, kFileFrame }; enum RenderMode { kBufferRender = 0, kGeometryRender = 1, kNoRender = 3 }; enum RibBlurInheritSettings { kRibBlurInheritOff, kRibBlurInheritMaya, kRibBlurInheritRenderman }; enum ShadowSource { kNoShadows, kShaveShadows, kMayaGeomShadows }; enum ShutterState { kShutterNone, kShutterOpen, kShutterClose, kShutterBoth }; enum TimeBasis { kTimeAbsolute, kTimeRelative }; }; #endif