Gets or sets the diffuse intensity from the sun.
Read-write property
[Visual Basic .NET] |
---|
Public Property DiffuseIntensity() As Single |
[C#] |
---|
public float DiffuseIntensity {get; set;} |
[Managed C++] |
---|
public: __property float get_DiffuseIntensity(); |
[Unmanaged C++] |
---|
public: HRESULT get_DiffuseIntensity( float * pRetVal ); public: HRESULT put_DiffuseIntensity( float DiffuseIntensity ); |
[Java] |
---|
public float getDiffuseIntensity(); public void setDiffuseIntensity( float ); |
To illuminate both sides of the central body equally, set Ambient Intensity to
1
and DiffuseIntensity
to 0
. To make the dark side of the central body completely black, set Ambient Intensity to 0
and DiffuseIntensity
to 1
.