Moon

new Cesium.Moon(options)

Draws the Moon in 3D.
参数名称 类型 描述信息
options object 可选 Object with the following properties:
参数名称 类型 默认值 描述信息
show boolean true 可选 Determines whether the moon will be rendered.
textureUrl string buildModuleUrl('Assets/Textures/moonSmall.jpg') 可选 The moon texture.
ellipsoid Ellipsoid Ellipsoid.MOON 可选 The moon ellipsoid.
onlySunLighting boolean true 可选 Use the sun as the only light source.
使用示例:
scene.moon = new Cesium.Moon();
参考:

成员(属性)

Get the ellipsoid that defines the shape of the moon.
默认值: Ellipsoid.MOON

onlySunLighting : boolean

Use the sun as the only light source.
默认值: true
Determines if the moon will be shown.
默认值: true

textureUrl : string

The moon texture.
默认值: buildModuleUrl('Assets/Textures/moonSmall.jpg')

方法

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.
Throws:
  • DeveloperError : This object was destroyed, i.e., destroy() was called.
使用示例:
moon = moon && moon.destroy();
参考:

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.
返回值:
true if this object was destroyed; otherwise, false.
参考: