12-12
This commit is contained in:
@ -84,7 +84,7 @@ class CurvelineObject extends Base {
|
||||
this.options.noseToTail = options.noseToTail || false
|
||||
this.options.extend = options.extend || false
|
||||
this.options.rotate = (options.rotate || options.rotate === false) ? options.rotate : true
|
||||
this.options.space = options.space || 1
|
||||
this.options.space = (options.space || options.space === 0) ? options.space : 1
|
||||
this.options.speed = options.speed || 10
|
||||
// this.options.dashSize = options.dashSize || 0.03
|
||||
this.options.wordsName = options.wordsName || 0
|
||||
|
||||
@ -585,7 +585,7 @@ class Flame extends Base {
|
||||
this.lng = this.originalOptions.lng
|
||||
this.lat = this.originalOptions.lat
|
||||
this.alt = this.originalOptions.alt
|
||||
syncPrimitives(this.entity)
|
||||
// syncPrimitives(this.entity)
|
||||
}
|
||||
|
||||
async remove() {
|
||||
|
||||
@ -83,7 +83,7 @@ class PolylineObject extends Base {
|
||||
this.options.smooth = options.smooth || false
|
||||
this.options.extend = options.extend || false
|
||||
this.options.rotate = (options.rotate || options.rotate === false) ? options.rotate : true
|
||||
this.options.space = options.space || 1
|
||||
this.options.space = (options.space || options.space === 0) ? options.space : 1
|
||||
this.options.speed = options.speed || 10
|
||||
// this.options.dashSize = options.dashSize || 0.03
|
||||
this.options.wordsName = options.wordsName || 0
|
||||
|
||||
Reference in New Issue
Block a user