Sun

new SuperMap3D.Sun()

太阳,仅在3D场景中显示。
Example:
scene.sun = new SuperMap3D.Sun();
See:

Members

glowFactor : Number

获取或这设置太阳耀斑的亮度。 0为没有耀斑。
Default Value: 1.0

show : Boolean

是否显示太阳。
Default Value: true

Methods

destroy()undefined

Destroys the WebGL resources held by this object. Destroying an object allows for deterministic release of WebGL resources, instead of relying on the garbage collector to destroy this object.

Once an object is destroyed, it should not be used; calling any function other than isDestroyed will result in a DeveloperError exception. Therefore, assign the return value (undefined) to the object as done in the example.
Returns:
Throws:
  • DeveloperError : This object was destroyed, i.e., destroy() was called.
Example:
sun = sun && sun.destroy();

 
See:

isDestroyed()Boolean

Returns true if this object was destroyed; otherwise, false.

If this object was destroyed, it should not be used; calling any function other than isDestroyed will result in a DeveloperError exception.
Returns:
true if this object was destroyed; otherwise, false.
See: