@kq_npm/client3d_webgl_vue 4.5.31 → 4.5.33-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adddata/index.js +226 -495
- package/aspectanalysis/index.js +71 -182
- package/baseterraingallery/index.js +40 -102
- package/boxclip/index.js +197 -423
- package/clientPrint/index.js +6953 -17145
- package/comparemap/index.js +165 -216
- package/compass/index.js +20 -47
- package/excavatefillanalysis/index.js +101 -206
- package/fixedzoomin/index.js +20 -43
- package/fixedzoomout/index.js +18 -42
- package/flight/index.js +206 -353
- package/floodanalysis/index.js +145 -328
- package/geologicalbodyanalysis/index.js +114 -241
- package/gpuspatialquery/index.js +146 -340
- package/hawkeye/index.js +78 -80
- package/headertemp/index.js +8 -19
- package/heatmap3d/index.js +304 -645
- package/index.js +6525 -16962
- package/isolineanalysis/index.js +451 -1183
- package/light/index.js +308 -486
- package/limitheightanalysis/index.js +107 -204
- package/measure/index.js +145 -331
- package/modelFlat/index.js +114 -183
- package/modelexcavate/index.js +78 -172
- package/modelfilter/index.js +127 -252
- package/modelprofileanalysis/index.js +154 -297
- package/modelselect/index.js +90 -128
- package/package.json +1 -1
- package/particleeffect/index.js +170 -381
- package/planeclip/index.js +146 -281
- package/resetview/index.js +12 -31
- package/roller/index.js +252 -353
- package/scaneffect/index.js +178 -518
- package/sceneadvancedtoimage/index.js +152 -337
- package/sceneapp/index.js +6953 -17145
- package/sceneset/index.js +299 -838
- package/scenetohdimage/index.js +105 -276
- package/sceneview/index.js +6953 -17145
- package/screenshot/index.js +204 -281
- package/shadowanalysis/index.js +175 -386
- package/sightlineanalysis/index.js +135 -245
- package/skylineanalysis/index.js +108 -289
- package/slopeanalysis/index.js +174 -378
- package/slopeaspectanalysis/index.js +206 -466
- package/statusbar/index.js +37 -39
- package/terrainoperation/index.js +124 -218
- package/terrainprofileanalysis/index.js +66 -118
- package/typhoontrac/index.js +165 -321
- package/underground/index.js +16 -40
- package/videofusion/index.js +214 -470
- package/videoproject/index.js +220 -472
- package/viewshedanalysis/index.js +93 -230
- package/weathereffect/index.js +111 -295
- package/windyslicing/index.js +262 -695
- package/wireframesketch/index.js +49 -106
package/weathereffect/index.js
CHANGED
|
@@ -78,7 +78,6 @@ function _defineProperty(obj, key, value) {
|
|
|
78
78
|
} else {
|
|
79
79
|
obj[key] = value;
|
|
80
80
|
}
|
|
81
|
-
|
|
82
81
|
return obj;
|
|
83
82
|
}
|
|
84
83
|
|
|
@@ -176,7 +175,6 @@ var defineProperty = __webpack_require__(8270);
|
|
|
176
175
|
var const_image_ = __webpack_require__(6277);
|
|
177
176
|
;// CONCATENATED MODULE: ./src/webgl/weathereffect/WeatherEffectViewModel.js
|
|
178
177
|
|
|
179
|
-
|
|
180
178
|
/*
|
|
181
179
|
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
182
180
|
* All rights reserved.
|
|
@@ -184,33 +182,25 @@ var const_image_ = __webpack_require__(6277);
|
|
|
184
182
|
|
|
185
183
|
let _gravityScratch = null;
|
|
186
184
|
let _gravityStart = 0.0;
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
185
|
+
let _gravityEnd = -1.0;
|
|
186
|
+
//天气特效逻辑类
|
|
191
187
|
class WeatherEffectViewModel {
|
|
192
|
-
//三维球场景视图对象
|
|
193
|
-
//粒子系统三维对象
|
|
194
|
-
//绘制管理对象
|
|
195
|
-
//绘制完成监听事件
|
|
196
|
-
//天气特效存储参数对象
|
|
197
|
-
//雨图片url地址
|
|
198
188
|
//雪图片url地址
|
|
189
|
+
|
|
199
190
|
constructor(scenceView) {
|
|
200
191
|
(0,defineProperty/* default */.Z)(this, "_scene", null);
|
|
201
|
-
|
|
192
|
+
//三维球场景视图对象
|
|
202
193
|
(0,defineProperty/* default */.Z)(this, "_particleSystem", null);
|
|
203
|
-
|
|
194
|
+
//粒子系统三维对象
|
|
204
195
|
(0,defineProperty/* default */.Z)(this, "_drawManager", null);
|
|
205
|
-
|
|
196
|
+
//绘制管理对象
|
|
206
197
|
(0,defineProperty/* default */.Z)(this, "_removeEventListener", null);
|
|
207
|
-
|
|
198
|
+
//绘制完成监听事件
|
|
208
199
|
(0,defineProperty/* default */.Z)(this, "_options", null);
|
|
209
|
-
|
|
200
|
+
//天气特效存储参数对象
|
|
210
201
|
(0,defineProperty/* default */.Z)(this, "_rainImage", const_image_.RAIN_URL);
|
|
211
|
-
|
|
202
|
+
//雨图片url地址
|
|
212
203
|
(0,defineProperty/* default */.Z)(this, "_snowImage", const_image_.SNOW_URL);
|
|
213
|
-
|
|
214
204
|
scenceView._viewer.clock.shouldAnimate = true;
|
|
215
205
|
scenceView._viewer.clock.multiplier = 0.6;
|
|
216
206
|
scenceView._viewer.scene.globe.depthTestAgainstTerrain = true;
|
|
@@ -221,12 +211,9 @@ class WeatherEffectViewModel {
|
|
|
221
211
|
that._removeEventListener = that._drawManager.drawFinishedEvent.addEventListener(shape => {
|
|
222
212
|
if (shape && shape.type === "marker") {
|
|
223
213
|
that._drawManager.clear();
|
|
224
|
-
|
|
225
214
|
let position = shape.position;
|
|
226
|
-
|
|
227
215
|
if (position) {
|
|
228
216
|
let matrix = new Cesium.Matrix4.fromTranslation(position);
|
|
229
|
-
|
|
230
217
|
if (!that._particleSystem) {
|
|
231
218
|
that._particleSystem = new Cesium.ParticleSystem({
|
|
232
219
|
modelMatrix: matrix,
|
|
@@ -243,7 +230,6 @@ class WeatherEffectViewModel {
|
|
|
243
230
|
show: true,
|
|
244
231
|
updateCallback: that.applyGravity
|
|
245
232
|
});
|
|
246
|
-
|
|
247
233
|
that._scene.primitives.add(that._particleSystem);
|
|
248
234
|
} else {
|
|
249
235
|
that._particleSystem.modelMatrix = matrix;
|
|
@@ -252,92 +238,80 @@ class WeatherEffectViewModel {
|
|
|
252
238
|
}
|
|
253
239
|
});
|
|
254
240
|
}
|
|
255
|
-
|
|
256
241
|
applyGravity(particle, dt) {
|
|
257
242
|
_gravityScratch = Cesium.Cartesian3.normalize(particle.position, _gravityScratch);
|
|
258
243
|
Cesium.Cartesian3.multiplyByScalar(_gravityScratch, Cesium.Math.randomBetween(_gravityStart, _gravityEnd), _gravityScratch);
|
|
259
244
|
particle.velocity = Cesium.Cartesian3.add(particle.velocity, _gravityScratch, particle.velocity);
|
|
260
|
-
}
|
|
261
|
-
|
|
245
|
+
}
|
|
262
246
|
|
|
247
|
+
//添加天气特效
|
|
263
248
|
addWeatherEffect(options) {
|
|
264
249
|
let mode = options.mode;
|
|
265
|
-
|
|
266
250
|
if (mode !== "rain" && mode !== "snow") {
|
|
267
251
|
console.log("This mode is not supported.");
|
|
268
252
|
return;
|
|
269
253
|
}
|
|
270
|
-
|
|
271
254
|
if (options.gravity) this.setGravity(options.gravity);
|
|
272
255
|
this._options = options;
|
|
273
|
-
|
|
274
256
|
this._drawManager.startDraw("marker", {
|
|
275
257
|
image: null
|
|
276
258
|
});
|
|
277
|
-
}
|
|
278
|
-
|
|
259
|
+
}
|
|
279
260
|
|
|
261
|
+
//清除天气特效
|
|
280
262
|
clear() {
|
|
281
263
|
this._drawManager.stopDraw();
|
|
282
|
-
|
|
283
264
|
this._drawManager.clear();
|
|
284
|
-
|
|
285
265
|
this._particleSystem && this._scene.primitives.remove(this._particleSystem);
|
|
286
266
|
this._particleSystem = null;
|
|
287
|
-
}
|
|
288
|
-
|
|
267
|
+
}
|
|
289
268
|
|
|
269
|
+
//销毁
|
|
290
270
|
destroy() {
|
|
291
|
-
this.clear();
|
|
292
|
-
|
|
271
|
+
this.clear();
|
|
272
|
+
//移除监听事件
|
|
293
273
|
this._removeEventListener && this._removeEventListener();
|
|
294
274
|
this._removeEventListener = null;
|
|
295
|
-
}
|
|
296
|
-
|
|
275
|
+
}
|
|
297
276
|
|
|
277
|
+
//设置范围半径
|
|
298
278
|
setRangeRadius(radius) {
|
|
299
279
|
if (this._particleSystem) {
|
|
300
280
|
this._particleSystem.emitter = new Cesium.BoxEmitter(new Cesium.Cartesian3(radius, radius, radius));
|
|
301
281
|
}
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
|
|
282
|
+
}
|
|
283
|
+
//设置粒子数量
|
|
305
284
|
setParticleNumber(number) {
|
|
306
285
|
if (this._particleSystem) {
|
|
307
286
|
this._particleSystem.emissionRate = number;
|
|
308
287
|
}
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
|
|
288
|
+
}
|
|
289
|
+
//设置粒子大小
|
|
312
290
|
setParticleSize(size) {
|
|
313
291
|
if (this._particleSystem) {
|
|
314
292
|
this._particleSystem.minimumImageSize = new Cesium.Cartesian2(size, size);
|
|
315
293
|
this._particleSystem.maximumImageSize = new Cesium.Cartesian2(size, size);
|
|
316
294
|
}
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
|
|
295
|
+
}
|
|
296
|
+
//设置生命周期
|
|
320
297
|
setLifeCycle(lifeCycle) {
|
|
321
298
|
if (this._particleSystem) {
|
|
322
299
|
this._particleSystem.lifetime = lifeCycle;
|
|
323
300
|
}
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
|
|
301
|
+
}
|
|
302
|
+
//设置初始比例
|
|
327
303
|
setStartScale(startScale) {
|
|
328
304
|
if (this._particleSystem) {
|
|
329
305
|
this._particleSystem.startScale = startScale;
|
|
330
306
|
}
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
|
|
307
|
+
}
|
|
308
|
+
//设置结束比例
|
|
334
309
|
setEndScale(endScale) {
|
|
335
310
|
if (this._particleSystem) {
|
|
336
311
|
this._particleSystem.endScale = endScale;
|
|
337
312
|
}
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
|
|
313
|
+
}
|
|
314
|
+
//设置重力
|
|
341
315
|
setGravity(gravity) {
|
|
342
316
|
if (gravity <= 1) {
|
|
343
317
|
_gravityStart = 0.0;
|
|
@@ -347,7 +321,6 @@ class WeatherEffectViewModel {
|
|
|
347
321
|
_gravityEnd = 0 - gravity;
|
|
348
322
|
}
|
|
349
323
|
}
|
|
350
|
-
|
|
351
324
|
}
|
|
352
325
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
353
326
|
var util_ = __webpack_require__(3458);
|
|
@@ -381,7 +354,6 @@ const __default__ = {
|
|
|
381
354
|
type: Boolean,
|
|
382
355
|
default: true
|
|
383
356
|
},
|
|
384
|
-
|
|
385
357
|
/**
|
|
386
358
|
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
387
359
|
*/
|
|
@@ -411,7 +383,6 @@ const __default__ = {
|
|
|
411
383
|
default: true
|
|
412
384
|
}
|
|
413
385
|
},
|
|
414
|
-
|
|
415
386
|
setup(__props, {
|
|
416
387
|
expose: __expose
|
|
417
388
|
}) {
|
|
@@ -420,7 +391,9 @@ const __default__ = {
|
|
|
420
391
|
proxy
|
|
421
392
|
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
422
393
|
let currentLang = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
423
|
-
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
394
|
+
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
395
|
+
|
|
396
|
+
// 获取组件传参
|
|
424
397
|
|
|
425
398
|
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
426
399
|
collapseValue: props.settingParams && props.settingParams.collapseValue || ((props.settingParams && props.settingParams.collapseValue) == '' ? "" : "setting"),
|
|
@@ -434,13 +407,16 @@ const __default__ = {
|
|
|
434
407
|
endScale: props.settingParams && props.settingParams.endScale || 1.3,
|
|
435
408
|
gravity: props.settingParams && props.settingParams.gravity || 1
|
|
436
409
|
});
|
|
437
|
-
let viewModel = null;
|
|
410
|
+
let viewModel = null;
|
|
438
411
|
|
|
439
|
-
|
|
412
|
+
// 组件容器Ref
|
|
413
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
440
414
|
|
|
415
|
+
// 生成组件默认header
|
|
441
416
|
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
442
|
-
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
417
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
443
418
|
|
|
419
|
+
// 国际化
|
|
444
420
|
let {
|
|
445
421
|
locale,
|
|
446
422
|
messages
|
|
@@ -463,30 +439,28 @@ const __default__ = {
|
|
|
463
439
|
});
|
|
464
440
|
});
|
|
465
441
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
466
|
-
|
|
467
442
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
468
443
|
if (scenceView) {
|
|
469
444
|
viewModel = new WeatherEffectViewModel(scenceView);
|
|
470
445
|
}
|
|
471
446
|
});
|
|
472
447
|
});
|
|
448
|
+
|
|
473
449
|
/**
|
|
474
450
|
* @description 监听header生成
|
|
475
451
|
*/
|
|
476
|
-
|
|
477
452
|
const watchCreateHeaderTemp = () => {
|
|
478
453
|
if (props.showHeaderTemp) {
|
|
479
454
|
// 生成headerTemp
|
|
480
455
|
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef, headerTempTitle);
|
|
481
456
|
}
|
|
482
|
-
};
|
|
483
|
-
|
|
457
|
+
};
|
|
484
458
|
|
|
459
|
+
//切换雨雪天气特效
|
|
485
460
|
function changeMode(mode) {
|
|
486
461
|
if (formItem.mode !== mode) {
|
|
487
462
|
viewModel && viewModel.clear();
|
|
488
463
|
formItem.mode = mode;
|
|
489
|
-
|
|
490
464
|
if (mode === "rain") {
|
|
491
465
|
formItem.particleSize = 2.0;
|
|
492
466
|
formItem.startScale = 1.1;
|
|
@@ -498,81 +472,60 @@ const __default__ = {
|
|
|
498
472
|
}
|
|
499
473
|
}
|
|
500
474
|
}
|
|
501
|
-
|
|
502
475
|
function paramsChanged(key) {
|
|
503
476
|
switch (key) {
|
|
504
477
|
case "rangeRadius":
|
|
505
478
|
viewModel.setRangeRadius(formItem.rangeRadius);
|
|
506
479
|
break;
|
|
507
|
-
|
|
508
480
|
case "particleNum":
|
|
509
481
|
viewModel.setParticleNumber(formItem.particleNum);
|
|
510
482
|
break;
|
|
511
|
-
|
|
512
483
|
case "particleSize":
|
|
513
484
|
viewModel.setParticleSize(formItem.particleSize);
|
|
514
485
|
break;
|
|
515
|
-
|
|
516
486
|
case "lifeCycle":
|
|
517
487
|
viewModel.setLifeCycle(formItem.lifeCycle);
|
|
518
488
|
break;
|
|
519
|
-
|
|
520
489
|
case "startScale":
|
|
521
490
|
viewModel.setStartScale(formItem.startScale);
|
|
522
491
|
break;
|
|
523
|
-
|
|
524
492
|
case "endScale":
|
|
525
493
|
viewModel.setEndScale(formItem.endScale);
|
|
526
494
|
break;
|
|
527
|
-
|
|
528
495
|
case "gravity":
|
|
529
496
|
viewModel.setGravity(formItem.gravity);
|
|
530
497
|
break;
|
|
531
|
-
|
|
532
498
|
default:
|
|
533
499
|
break;
|
|
534
500
|
}
|
|
535
501
|
}
|
|
536
|
-
|
|
537
502
|
function add() {
|
|
538
503
|
viewModel && viewModel.addWeatherEffect(formItem);
|
|
539
504
|
}
|
|
540
|
-
|
|
541
505
|
function clear() {
|
|
542
506
|
viewModel && viewModel.clear();
|
|
543
|
-
}
|
|
544
|
-
|
|
507
|
+
}
|
|
545
508
|
|
|
509
|
+
// 销毁
|
|
546
510
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
547
511
|
viewModel && viewModel.destroy();
|
|
548
512
|
});
|
|
549
|
-
|
|
550
513
|
__expose({
|
|
551
514
|
changeMode,
|
|
552
515
|
paramsChanged,
|
|
553
516
|
add,
|
|
554
517
|
clear
|
|
555
518
|
});
|
|
556
|
-
|
|
557
519
|
return (_ctx, _cache) => {
|
|
558
520
|
const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-button");
|
|
559
|
-
|
|
560
521
|
const _component_kq_row = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-row");
|
|
561
|
-
|
|
562
522
|
const _component_kq_slider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-slider");
|
|
563
|
-
|
|
564
523
|
const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-col");
|
|
565
|
-
|
|
566
524
|
const _component_kq_input_number = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input-number");
|
|
567
|
-
|
|
568
525
|
const _component_kq_form_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form-item");
|
|
569
|
-
|
|
570
526
|
const _component_kq_form = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form");
|
|
571
|
-
|
|
572
527
|
const _component_kq_collapse_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse-item");
|
|
573
|
-
|
|
574
528
|
const _component_kq_collapse = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse");
|
|
575
|
-
|
|
576
529
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
577
530
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-weather-effect", {
|
|
578
531
|
'kq-box-shadow': __props.showShadow
|
|
@@ -583,9 +536,7 @@ const __default__ = {
|
|
|
583
536
|
key: 0,
|
|
584
537
|
ref_key: "headerTempRef",
|
|
585
538
|
ref: headerTempRef
|
|
586
|
-
}, null, 512
|
|
587
|
-
/* NEED_PATCH */
|
|
588
|
-
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
539
|
+
}, null, 512 /* NEED_PATCH */)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
589
540
|
gutter: 20,
|
|
590
541
|
class: "rowclass"
|
|
591
542
|
}, {
|
|
@@ -594,28 +545,18 @@ const __default__ = {
|
|
|
594
545
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(['kq3d-weather-effect-btn', (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).mode === 'rain' ? 'kq3d-weather-effect-btn_active' : '']),
|
|
595
546
|
onClick: _cache[0] || (_cache[0] = $event => changeMode('rain')),
|
|
596
547
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).rain
|
|
597
|
-
}, null, 8
|
|
598
|
-
/* PROPS */
|
|
599
|
-
, ["icon", "class", "title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
548
|
+
}, null, 8 /* PROPS */, ["icon", "class", "title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
600
549
|
icon: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconSnow),
|
|
601
550
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(['kq3d-weather-effect-btn', (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).mode === 'snow' ? 'kq3d-weather-effect-btn_active' : '']),
|
|
602
551
|
onClick: _cache[1] || (_cache[1] = $event => changeMode('snow')),
|
|
603
552
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).snow
|
|
604
|
-
}, null, 8
|
|
605
|
-
/*
|
|
606
|
-
, ["icon", "class", "title"])]),
|
|
607
|
-
_: 1
|
|
608
|
-
/* STABLE */
|
|
609
|
-
|
|
553
|
+
}, null, 8 /* PROPS */, ["icon", "class", "title"])]),
|
|
554
|
+
_: 1 /* STABLE */
|
|
610
555
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
611
556
|
class: "kq3d-weather-effect-tip"
|
|
612
557
|
}, {
|
|
613
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).particleTips), 1
|
|
614
|
-
/*
|
|
615
|
-
)]),
|
|
616
|
-
_: 1
|
|
617
|
-
/* STABLE */
|
|
618
|
-
|
|
558
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).particleTips), 1 /* TEXT */)]),
|
|
559
|
+
_: 1 /* STABLE */
|
|
619
560
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
620
561
|
"model-value": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).collapseValue,
|
|
621
562
|
class: "kq3d-weather-effect-collapse"
|
|
@@ -649,12 +590,8 @@ const __default__ = {
|
|
|
649
590
|
min: 10,
|
|
650
591
|
max: 1000,
|
|
651
592
|
onChange: _cache[3] || (_cache[3] = $event => paramsChanged('rangeRadius'))
|
|
652
|
-
}, null, 8
|
|
653
|
-
/*
|
|
654
|
-
, ["modelValue"])]),
|
|
655
|
-
_: 1
|
|
656
|
-
/* STABLE */
|
|
657
|
-
|
|
593
|
+
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
594
|
+
_: 1 /* STABLE */
|
|
658
595
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
659
596
|
span: 8
|
|
660
597
|
}, {
|
|
@@ -666,26 +603,14 @@ const __default__ = {
|
|
|
666
603
|
max: 1000,
|
|
667
604
|
"controls-position": "right",
|
|
668
605
|
onChange: _cache[5] || (_cache[5] = $event => paramsChanged('rangeRadius'))
|
|
669
|
-
}, null, 8
|
|
670
|
-
/*
|
|
671
|
-
, ["modelValue"])]),
|
|
672
|
-
_: 1
|
|
673
|
-
/* STABLE */
|
|
674
|
-
|
|
606
|
+
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
607
|
+
_: 1 /* STABLE */
|
|
675
608
|
})]),
|
|
676
|
-
_: 1
|
|
677
|
-
/* STABLE */
|
|
678
|
-
|
|
609
|
+
_: 1 /* STABLE */
|
|
679
610
|
})]),
|
|
680
|
-
_: 1
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
}, 8
|
|
684
|
-
/* PROPS */
|
|
685
|
-
, ["label"])]),
|
|
686
|
-
_: 1
|
|
687
|
-
/* STABLE */
|
|
688
|
-
|
|
611
|
+
_: 1 /* STABLE */
|
|
612
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
613
|
+
_: 1 /* STABLE */
|
|
689
614
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
690
615
|
class: "rowclass"
|
|
691
616
|
}, {
|
|
@@ -707,12 +632,8 @@ const __default__ = {
|
|
|
707
632
|
min: 100,
|
|
708
633
|
max: 10000,
|
|
709
634
|
onChange: _cache[7] || (_cache[7] = $event => paramsChanged('particleNum'))
|
|
710
|
-
}, null, 8
|
|
711
|
-
/*
|
|
712
|
-
, ["modelValue"])]),
|
|
713
|
-
_: 1
|
|
714
|
-
/* STABLE */
|
|
715
|
-
|
|
635
|
+
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
636
|
+
_: 1 /* STABLE */
|
|
716
637
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
717
638
|
span: 8
|
|
718
639
|
}, {
|
|
@@ -724,26 +645,14 @@ const __default__ = {
|
|
|
724
645
|
max: 10000,
|
|
725
646
|
"controls-position": "right",
|
|
726
647
|
onChange: _cache[9] || (_cache[9] = $event => paramsChanged('particleNum'))
|
|
727
|
-
}, null, 8
|
|
728
|
-
/*
|
|
729
|
-
, ["modelValue"])]),
|
|
730
|
-
_: 1
|
|
731
|
-
/* STABLE */
|
|
732
|
-
|
|
648
|
+
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
649
|
+
_: 1 /* STABLE */
|
|
733
650
|
})]),
|
|
734
|
-
_: 1
|
|
735
|
-
/* STABLE */
|
|
736
|
-
|
|
651
|
+
_: 1 /* STABLE */
|
|
737
652
|
})]),
|
|
738
|
-
_: 1
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
}, 8
|
|
742
|
-
/* PROPS */
|
|
743
|
-
, ["label"])]),
|
|
744
|
-
_: 1
|
|
745
|
-
/* STABLE */
|
|
746
|
-
|
|
653
|
+
_: 1 /* STABLE */
|
|
654
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
655
|
+
_: 1 /* STABLE */
|
|
747
656
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
748
657
|
class: "rowclass"
|
|
749
658
|
}, {
|
|
@@ -765,12 +674,8 @@ const __default__ = {
|
|
|
765
674
|
min: 0.1,
|
|
766
675
|
max: 5,
|
|
767
676
|
onChange: _cache[11] || (_cache[11] = $event => paramsChanged('particleSize'))
|
|
768
|
-
}, null, 8
|
|
769
|
-
/*
|
|
770
|
-
, ["modelValue", "step", "min"])]),
|
|
771
|
-
_: 1
|
|
772
|
-
/* STABLE */
|
|
773
|
-
|
|
677
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min"])]),
|
|
678
|
+
_: 1 /* STABLE */
|
|
774
679
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
775
680
|
span: 8
|
|
776
681
|
}, {
|
|
@@ -782,26 +687,14 @@ const __default__ = {
|
|
|
782
687
|
max: 5,
|
|
783
688
|
"controls-position": "right",
|
|
784
689
|
onChange: _cache[13] || (_cache[13] = $event => paramsChanged('particleSize'))
|
|
785
|
-
}, null, 8
|
|
786
|
-
/*
|
|
787
|
-
, ["modelValue", "step", "min"])]),
|
|
788
|
-
_: 1
|
|
789
|
-
/* STABLE */
|
|
790
|
-
|
|
690
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min"])]),
|
|
691
|
+
_: 1 /* STABLE */
|
|
791
692
|
})]),
|
|
792
|
-
_: 1
|
|
793
|
-
/* STABLE */
|
|
794
|
-
|
|
693
|
+
_: 1 /* STABLE */
|
|
795
694
|
})]),
|
|
796
|
-
_: 1
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
}, 8
|
|
800
|
-
/* PROPS */
|
|
801
|
-
, ["label"])]),
|
|
802
|
-
_: 1
|
|
803
|
-
/* STABLE */
|
|
804
|
-
|
|
695
|
+
_: 1 /* STABLE */
|
|
696
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
697
|
+
_: 1 /* STABLE */
|
|
805
698
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-row>\r\n <kq-form-item :label=\"language.lifeCycle\">\r\n <kq-row style=\"display: flex\">\r\n <kq-col :span=\"16\">\r\n <kq-slider v-model=\"formItem.lifeCycle\" :step=\"1\" :min=\"1\" :max=\"50\" @change=\"paramsChanged('lifeCycle')\"></kq-slider>\r\n </kq-col>\r\n <kq-col :span=\"8\">\r\n <kq-input-number\r\n v-model=\"formItem.lifeCycle\"\r\n :step=\"1\"\r\n :min=\"1\"\r\n :max=\"50\"\r\n controls-position=\"right\"\r\n @change=\"paramsChanged('lifeCycle')\">\r\n </kq-input-number>\r\n </kq-col>\r\n </kq-row>\r\n </kq-form-item>\r\n </kq-row> "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
806
699
|
class: "rowclass"
|
|
807
700
|
}, {
|
|
@@ -823,12 +716,8 @@ const __default__ = {
|
|
|
823
716
|
max: 5.0,
|
|
824
717
|
step: 0.1,
|
|
825
718
|
onChange: _cache[15] || (_cache[15] = $event => paramsChanged('startScale'))
|
|
826
|
-
}, null, 8
|
|
827
|
-
/*
|
|
828
|
-
, ["modelValue", "min", "max", "step"])]),
|
|
829
|
-
_: 1
|
|
830
|
-
/* STABLE */
|
|
831
|
-
|
|
719
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
|
|
720
|
+
_: 1 /* STABLE */
|
|
832
721
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
833
722
|
span: 8
|
|
834
723
|
}, {
|
|
@@ -840,26 +729,14 @@ const __default__ = {
|
|
|
840
729
|
step: 0.1,
|
|
841
730
|
"controls-position": "right",
|
|
842
731
|
onChange: _cache[17] || (_cache[17] = $event => paramsChanged('startScale'))
|
|
843
|
-
}, null, 8
|
|
844
|
-
/*
|
|
845
|
-
, ["modelValue", "min", "max", "step"])]),
|
|
846
|
-
_: 1
|
|
847
|
-
/* STABLE */
|
|
848
|
-
|
|
732
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
|
|
733
|
+
_: 1 /* STABLE */
|
|
849
734
|
})]),
|
|
850
|
-
_: 1
|
|
851
|
-
/* STABLE */
|
|
852
|
-
|
|
735
|
+
_: 1 /* STABLE */
|
|
853
736
|
})]),
|
|
854
|
-
_: 1
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
}, 8
|
|
858
|
-
/* PROPS */
|
|
859
|
-
, ["label"])]),
|
|
860
|
-
_: 1
|
|
861
|
-
/* STABLE */
|
|
862
|
-
|
|
737
|
+
_: 1 /* STABLE */
|
|
738
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
739
|
+
_: 1 /* STABLE */
|
|
863
740
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
864
741
|
class: "rowclass"
|
|
865
742
|
}, {
|
|
@@ -881,12 +758,8 @@ const __default__ = {
|
|
|
881
758
|
max: 5.0,
|
|
882
759
|
step: 0.1,
|
|
883
760
|
onChange: _cache[19] || (_cache[19] = $event => paramsChanged('endScale'))
|
|
884
|
-
}, null, 8
|
|
885
|
-
/*
|
|
886
|
-
, ["modelValue", "min", "max", "step"])]),
|
|
887
|
-
_: 1
|
|
888
|
-
/* STABLE */
|
|
889
|
-
|
|
761
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
|
|
762
|
+
_: 1 /* STABLE */
|
|
890
763
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
891
764
|
span: 8
|
|
892
765
|
}, {
|
|
@@ -898,26 +771,14 @@ const __default__ = {
|
|
|
898
771
|
step: 0.1,
|
|
899
772
|
"controls-position": "right",
|
|
900
773
|
onChange: _cache[21] || (_cache[21] = $event => paramsChanged('endScale'))
|
|
901
|
-
}, null, 8
|
|
902
|
-
/*
|
|
903
|
-
, ["modelValue", "min", "max", "step"])]),
|
|
904
|
-
_: 1
|
|
905
|
-
/* STABLE */
|
|
906
|
-
|
|
774
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
|
|
775
|
+
_: 1 /* STABLE */
|
|
907
776
|
})]),
|
|
908
|
-
_: 1
|
|
909
|
-
/* STABLE */
|
|
910
|
-
|
|
777
|
+
_: 1 /* STABLE */
|
|
911
778
|
})]),
|
|
912
|
-
_: 1
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
}, 8
|
|
916
|
-
/* PROPS */
|
|
917
|
-
, ["label"])]),
|
|
918
|
-
_: 1
|
|
919
|
-
/* STABLE */
|
|
920
|
-
|
|
779
|
+
_: 1 /* STABLE */
|
|
780
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
781
|
+
_: 1 /* STABLE */
|
|
921
782
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
922
783
|
class: "rowclass"
|
|
923
784
|
}, {
|
|
@@ -939,12 +800,8 @@ const __default__ = {
|
|
|
939
800
|
min: 0.1,
|
|
940
801
|
max: 5,
|
|
941
802
|
onChange: _cache[23] || (_cache[23] = $event => paramsChanged('gravity'))
|
|
942
|
-
}, null, 8
|
|
943
|
-
/*
|
|
944
|
-
, ["modelValue", "step", "min"])]),
|
|
945
|
-
_: 1
|
|
946
|
-
/* STABLE */
|
|
947
|
-
|
|
803
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min"])]),
|
|
804
|
+
_: 1 /* STABLE */
|
|
948
805
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
949
806
|
span: 8
|
|
950
807
|
}, {
|
|
@@ -956,75 +813,36 @@ const __default__ = {
|
|
|
956
813
|
step: 0.1,
|
|
957
814
|
"controls-position": "right",
|
|
958
815
|
onChange: _cache[25] || (_cache[25] = $event => paramsChanged('gravity'))
|
|
959
|
-
}, null, 8
|
|
960
|
-
/*
|
|
961
|
-
, ["modelValue", "min", "step"])]),
|
|
962
|
-
_: 1
|
|
963
|
-
/* STABLE */
|
|
964
|
-
|
|
816
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "step"])]),
|
|
817
|
+
_: 1 /* STABLE */
|
|
965
818
|
})]),
|
|
966
|
-
_: 1
|
|
967
|
-
/* STABLE */
|
|
968
|
-
|
|
819
|
+
_: 1 /* STABLE */
|
|
969
820
|
})]),
|
|
970
|
-
_: 1
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
}, 8
|
|
974
|
-
/* PROPS */
|
|
975
|
-
, ["label"])]),
|
|
976
|
-
_: 1
|
|
977
|
-
/* STABLE */
|
|
978
|
-
|
|
821
|
+
_: 1 /* STABLE */
|
|
822
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
823
|
+
_: 1 /* STABLE */
|
|
979
824
|
})]),
|
|
980
|
-
_: 1
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
_: 1
|
|
987
|
-
/* STABLE */
|
|
988
|
-
|
|
989
|
-
}, 8
|
|
990
|
-
/* PROPS */
|
|
991
|
-
, ["title"])]),
|
|
992
|
-
_: 1
|
|
993
|
-
/* STABLE */
|
|
994
|
-
|
|
995
|
-
}, 8
|
|
996
|
-
/* PROPS */
|
|
997
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
825
|
+
_: 1 /* STABLE */
|
|
826
|
+
}, 8 /* PROPS */, ["label-width"])]),
|
|
827
|
+
_: 1 /* STABLE */
|
|
828
|
+
}, 8 /* PROPS */, ["title"])]),
|
|
829
|
+
_: 1 /* STABLE */
|
|
830
|
+
}, 8 /* PROPS */, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
998
831
|
onClick: _cache[26] || (_cache[26] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => add(), ["stop"])),
|
|
999
832
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).add,
|
|
1000
833
|
type: "primary"
|
|
1001
834
|
}, {
|
|
1002
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).add), 1
|
|
1003
|
-
/*
|
|
1004
|
-
|
|
1005
|
-
_: 1
|
|
1006
|
-
/* STABLE */
|
|
1007
|
-
|
|
1008
|
-
}, 8
|
|
1009
|
-
/* PROPS */
|
|
1010
|
-
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
835
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).add), 1 /* TEXT */)]),
|
|
836
|
+
_: 1 /* STABLE */
|
|
837
|
+
}, 8 /* PROPS */, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
1011
838
|
onClick: _cache[27] || (_cache[27] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clear(), ["stop"])),
|
|
1012
839
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clear
|
|
1013
840
|
}, {
|
|
1014
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clear), 1
|
|
1015
|
-
/*
|
|
1016
|
-
|
|
1017
|
-
_: 1
|
|
1018
|
-
/* STABLE */
|
|
1019
|
-
|
|
1020
|
-
}, 8
|
|
1021
|
-
/* PROPS */
|
|
1022
|
-
, ["title"])])])], 2
|
|
1023
|
-
/* CLASS */
|
|
1024
|
-
);
|
|
841
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clear), 1 /* TEXT */)]),
|
|
842
|
+
_: 1 /* STABLE */
|
|
843
|
+
}, 8 /* PROPS */, ["title"])])])], 2 /* CLASS */);
|
|
1025
844
|
};
|
|
1026
845
|
}
|
|
1027
|
-
|
|
1028
846
|
}));
|
|
1029
847
|
;// CONCATENATED MODULE: ./src/webgl/weathereffect/WeatherEffect.vue?vue&type=script&setup=true&lang=js
|
|
1030
848
|
|
|
@@ -1046,13 +864,11 @@ var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
|
1046
864
|
|
|
1047
865
|
|
|
1048
866
|
|
|
1049
|
-
|
|
1050
867
|
WeatherEffect.install = (Vue, opts) => {
|
|
1051
868
|
init_js_default()(Vue, opts);
|
|
1052
869
|
Vue.component(WeatherEffect.name, WeatherEffect);
|
|
1053
870
|
};
|
|
1054
871
|
|
|
1055
|
-
|
|
1056
872
|
}();
|
|
1057
873
|
/******/ return __webpack_exports__;
|
|
1058
874
|
/******/ })()
|