* For debugging only. Determines if the billboards are rendered with an opaque color.
* Default: false
*/
publicbooleandebugBillboards;
/**
* For debugging only. Determines if the clouds will be rendered as opaque ellipsoids.
* Default: false
*/
publicbooleandebugEllipsoids;
@JsConstructor
publicCloudCollectionOptions(){}
/**
* Creates and adds a cloud with the specified initial properties to the collection. The added cloud is returned so it can be modified or removed from the collection later.
* Performance:
* Calling add is expected constant time. However, the collection's vertex buffer is rewritten - an O(n) operation that also incurs CPU to GPU overhead. For best performance, add as many clouds as possible before calling update.
*
* @return The cloud that was added to the collection.
*/
@JsMethod
publicnativeCumulusCloudadd();
/**
* Creates and adds a cloud with the specified initial properties to the collection. The added cloud is returned so it can be modified or removed from the collection later.
* Performance:
* Calling add is expected constant time. However, the collection's vertex buffer is rewritten - an O(n) operation that also incurs CPU to GPU overhead. For best performance, add as many clouds as possible before calling update.
*
* @param options A template describing the cloud's properties {@link CumulusCloudAddOptions}
* @return The cloud that was added to the collection.