/**************************************************************************************** Copyright (C) 2015 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. ****************************************************************************************/ //! \file fbxsurfacelambert.h #ifndef _FBXSDK_SCENE_SHADING_SURFACE_LAMBERT_H_ #define _FBXSDK_SCENE_SHADING_SURFACE_LAMBERT_H_ #include #include #include /** This class contains settings for Lambert Materials. * \nosubgrouping */ class FBXSDK_DLL FbxSurfaceLambert : public FbxSurfaceMaterial { FBXSDK_OBJECT_DECLARE(FbxSurfaceLambert,FbxSurfaceMaterial); public: /** * \name Material properties */ //@{ //! Emissive color property. FbxPropertyT Emissive; /** Emissive factor property. This factor is used to * attenuate the emissive color. */ FbxPropertyT EmissiveFactor; //! Ambient color property. FbxPropertyT Ambient; /** Ambient factor property. This factor is used to * attenuate the ambient color. */ FbxPropertyT AmbientFactor; //! Diffuse color property. FbxPropertyT Diffuse; /** Diffuse factor property. This factor is used to * attenuate the diffuse color. */ FbxPropertyT DiffuseFactor; /** NormalMap property. This property can be used to specify the distortion of the surface * normals and create the illusion of a bumpy surface. */ FbxPropertyT NormalMap; /** Bump property. This property is used to distort the * surface normal and create the illusion of a bumpy surface. */ FbxPropertyT Bump; /** Bump factor property. This factor is used to * make a surface more or less bumpy. */ FbxPropertyT BumpFactor; //! Transparent color property. FbxPropertyT TransparentColor; /** Transparency factor property. This property is used to make a * surface more or less opaque (0 = opaque, 1 = transparent). */ FbxPropertyT TransparencyFactor; //! Displacement color property. FbxPropertyT DisplacementColor; //! Displacement factor property. FbxPropertyT DisplacementFactor; //! Vector displacement color property. FbxPropertyT VectorDisplacementColor; //! Vector displacement factor property. FbxPropertyT VectorDisplacementFactor; //@} ////////////////////////////////////////////////////////////////////////// // Static values ////////////////////////////////////////////////////////////////////////// /** * \name Default property values */ //@{ static const FbxDouble3 sEmissiveDefault; static const FbxDouble sEmissiveFactorDefault; static const FbxDouble3 sAmbientDefault; static const FbxDouble sAmbientFactorDefault; static const FbxDouble3 sDiffuseDefault; static const FbxDouble sDiffuseFactorDefault; static const FbxDouble3 sBumpDefault; static const FbxDouble3 sNormalMapDefault; static const FbxDouble sBumpFactorDefault; static const FbxDouble3 sTransparentDefault; static const FbxDouble sTransparencyFactorDefault; static const FbxDouble3 sDisplacementDefault; static const FbxDouble sDisplacementFactorDefault; static const FbxDouble3 sVectorDisplacementDefault; static const FbxDouble sVectorDisplacementFactorDefault; //@} /***************************************************************************************************************************** ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! ** *****************************************************************************************************************************/ #ifndef DOXYGEN_SHOULD_SKIP_THIS protected: void ConstructProperties(bool pForceSet) override; // Local void Init(); #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/ }; #include #endif /* _FBXSDK_SCENE_SHADING_SURFACE_LAMBERT_H_ */