Browse Source

应急处置的进入

dev
刘向辉 3 years ago
parent
commit
abc6c258ac
  1. 2
      src/app/babylon/controller/serve-manager.ts
  2. 14
      src/app/babylon/model/info/mark/mark-plan-info.ts
  3. 21
      src/app/babylon/view/building-window/building-window.ts
  4. 10
      src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts
  5. 5
      src/app/babylon/view/mark-window/mark-window.ts
  6. 4
      src/app/pages/plan/plan.component.ts
  7. BIN
      src/assets/particlesystem/fire/fire_8x8_1.png
  8. BIN
      src/assets/particlesystem/fire/fire_8x8_2.png
  9. BIN
      src/assets/particlesystem/fire/fire_8x8_3.png
  10. 221
      src/assets/particlesystem/fire/fire_h_1.json
  11. 237
      src/assets/particlesystem/fire/fire_h_2.json
  12. 237
      src/assets/particlesystem/fire/fire_h_3.json
  13. 220
      src/assets/particlesystem/fire/fire_snh_1.json
  14. 220
      src/assets/particlesystem/fire/fire_snh_2.json
  15. 220
      src/assets/particlesystem/fire/fire_snh_3.json
  16. 220
      src/assets/particlesystem/fire/fire_tph_1.json
  17. 220
      src/assets/particlesystem/fire/fire_tph_2.json
  18. 220
      src/assets/particlesystem/fire/fire_tph_3.json
  19. 169
      src/assets/particlesystem/rain/rain.json
  20. BIN
      src/assets/particlesystem/rain/rain_Rain.png
  21. BIN
      src/assets/particlesystem/smoke/smoke_8x8.png
  22. 211
      src/assets/particlesystem/smoke/smoke_a.json
  23. 214
      src/assets/particlesystem/smoke/smoke_b.json
  24. 214
      src/assets/particlesystem/smoke/smoke_c.json
  25. 215
      src/assets/particlesystem/smoke/smoke_snh.json
  26. 169
      src/assets/particlesystem/snow/snow.json
  27. BIN
      src/assets/particlesystem/snow/snow.png
  28. BIN
      src/assets/particlesystem/water/textures_flare.png
  29. 138
      src/assets/particlesystem/water/water.json

2
src/app/babylon/controller/serve-manager.ts

@ -102,7 +102,7 @@ export class ServeManager {
}, (error) => {
if (error instanceof HttpErrorResponse) {
if (error.status === 404) {
ModeManager.log("没有标绘数据,新建:" + error.error);
console.log("没有标绘数据,新建:" + error.error);
if (ModeManager.currentMode == ModeType.Edit) {
onSuccess(institutionID, null); //data 为null ,表示新建
}

14
src/app/babylon/model/info/mark/mark-plan-info.ts

@ -99,6 +99,20 @@ export class MarkNodeInfo {
return this.currentMarkDataIndex;
}
/**
*
*/
getShowTime() {
let textNum = 0;
if (this.nodeData.describe != null) {
textNum = this.nodeData.describe.length;
}
let timeScale = 1;
return textNum * timeScale;
}
/**
*
*/

21
src/app/babylon/view/building-window/building-window.ts

@ -23,6 +23,7 @@ import { FacilityInfoByType } from "../../model/info/model/model-info-facility";
import { BabylonTool } from "../../tool/babylon-tool";
import { TsTool } from "../../tool/ts-tool";
import { FacilityInfoInSceneWindow } from "../facilityinfoinscene-window/facilityinfoinscene-window";
import { MarkWindow } from "../mark-window/mark-window";
import { UIBase } from "../window-base/ui-base";
import { BuildingUIItem } from "./building-ui-item";
@ -219,7 +220,7 @@ export class BuildingWindow extends UIBase {
* @param type
* @param show true表示显示
*/
showJYZInfoModel(type: JYZInfoMoudleType, show: boolean) {
changeJYZInfoModel(type: JYZInfoMoudleType, show: boolean) {
if (this.currentJYZInfoMoudleType == type) {
if (show) {
return; //与上次显示的模块相同
@ -231,6 +232,7 @@ export class BuildingWindow extends UIBase {
else {
if (this.currentJYZInfoMoudleType != null) {
this.showJYZModules(this.currentJYZInfoMoudleType, false); //先恢复之前隐藏的内容
}
this.showJYZModules(type, show);//展示本次要展示的内容
}
@ -238,6 +240,7 @@ export class BuildingWindow extends UIBase {
if (show) {
if (type == JYZInfoMoudleType.YJCZ) {
//进入应急处置
}
else {//恢复查看状态
this.recoverMoudleShow(type);
@ -246,7 +249,9 @@ export class BuildingWindow extends UIBase {
else {
if (type == JYZInfoMoudleType.YJCZ) {
//退出应急处置
}
this.recoverMoudleShow(null);
}
@ -717,6 +722,20 @@ export class BuildingWindow extends UIBase {
if (this.currentBuidngItem == null) {
return;
}
if (type == JYZInfoMoudleType.YJCZ) {
if (show) {
console.log("进入应急处置");
MarkWindow.openWindow();
}
else {
console.log("退出应急处置");
MarkWindow.closeWindow();
}
}
this.initFacilityTypeByMoudleType(type, this.currentBuidngItem.buildingInfo);
FacilityInfoInSceneWindow.instance.selectJYJFrom3D(null);

10
src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts

@ -492,11 +492,11 @@ export class FacilityInfoInSceneWindow extends UIBase {
}
let allJYJInfo: ModelInfo_facility[] = [];
let currentMoudle = BuildingWindow.instance.currentJYZInfoMoudleType;
try {
let facilityInfosByType = BuildingWindow.instance.currentBuidngItem.buildingInfo.ModelInfo.facilityInfos;
let currentMoudle = BuildingWindow.instance.currentJYZInfoMoudleType;
for (let i = 0; i < facilityInfosByType.length; i++) {
if ((currentMoudle == null || currentMoudle == JYZInfoMoudleType.JYJ) && facilityInfosByType[i].type == FacilityType.JY_JYJ ||
@ -520,6 +520,7 @@ export class FacilityInfoInSceneWindow extends UIBase {
if (pickInfo.pickedMesh == childMesh[j]) {
result = allJYJInfo[i];
console.log("通过点击,找到加油机了");
break;
}
}
@ -529,6 +530,11 @@ export class FacilityInfoInSceneWindow extends UIBase {
if (result != null) {
//this.playJYJSelectEffect(true, result);
if ((result.modelData as ModelData_facility).facilityType == FacilityType.JY_JYJ && currentMoudle == null) {
PlanComponent.instance.toggleHeaderFence(1);//在空状态下,点击加油机,跳转到加油机页签
}
let facilityItem: FacilityInfoUIItem = FacilityInfoInSceneWindow.instance.getFacilityItem(result);
console.log("场景中选中设备", facilityItem); //通知前端
this.selectFacilityItem(facilityItem);

5
src/app/babylon/view/mark-window/mark-window.ts

@ -658,7 +658,7 @@ export class MarkWindow extends UIBase {
}
/**
*
*
*/
skipToNode(nodeID: string) {
@ -712,7 +712,8 @@ export class MarkWindow extends UIBase {
if (this.currentShowTime <= 0) {
let l_currentMarkNodeData: MarkNodeData = this.currentMarkNodeInfo.nodeData;
//播放下一个节点
this.getNextNode(l_currentMarkNodeData.id);
let l_nextNode = this.getNextNode(l_currentMarkNodeData.id);
}
}
}

4
src/app/pages/plan/plan.component.ts

@ -110,11 +110,11 @@ export class PlanComponent implements OnInit {
this.isShowChildComponent && this.leftDomain ? this.leftDomain.initComponent(type) : null; //手动初始化子组件
this.selectFence = type
this.isShowChildComponent = true
buildingWindow.showJYZInfoModel(fenceType, true)
buildingWindow.changeJYZInfoModel(fenceType, true)
} else { //取消选中
this.selectFence = -1
this.isShowChildComponent = false
buildingWindow.showJYZInfoModel(fenceType, false)
buildingWindow.changeJYZInfoModel(fenceType, false)
}
}

BIN
src/assets/particlesystem/fire/fire_8x8_1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 KiB

BIN
src/assets/particlesystem/fire/fire_8x8_2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

BIN
src/assets/particlesystem/fire/fire_8x8_3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 314 KiB

221
src/assets/particlesystem/fire/fire_h_1.json

@ -0,0 +1,221 @@
{
"name": "fireSystem",
"id": "fireSystem",
"capacity": 5,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
0,
0
],
"particleEmitterType": {
"type": "CylinderParticleEmitter",
"radius": 1.01,
"height": 1,
"radiusRange": 1,
"directionRandomizer": 0
},
"texture": {
"tags": null,
"url": "assets/particlesystem/fire/fire_8x8_1.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/fire/fire_8x8_1.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": false,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 6,
"maxSize": 8,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 1,
"minEmitPower": 0,
"maxEmitPower": 0,
"minLifeTime": 2,
"maxLifeTime": 5,
"emitRate": 10,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 4,
"preWarmCycles": 100,
"preWarmStepOffset": 10,
"minInitialRotation": -0.1,
"maxInitialRotation": 0.1,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 1,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
},
{
"gradient": 0.1,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 0.9,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
}
],
"rampGradients": [
{
"gradient": 0,
"color": [
1,
1,
1
]
},
{
"gradient": 1,
"color": [
0.7968,
0.3685,
0.1105
]
}
],
"useRampGradients": true,
"colorRemapGradients": [
{
"gradient": 0,
"factor1": 0.2,
"factor2": 1
},
{
"gradient": 1,
"factor1": 0.2,
"factor2": 1
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

237
src/assets/particlesystem/fire/fire_h_2.json

@ -0,0 +1,237 @@
{
"name": "fireSystem2",
"id": "fireSystem2",
"capacity": 3,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
0,
0
],
"particleEmitterType": {
"type": "BoxParticleEmitter",
"direction1": [
0,
1,
0
],
"direction2": [
0,
1,
0
],
"minEmitBox": [
-0.5,
0,
-0.5
],
"maxEmitBox": [
0.5,
0,
0.5
]
},
"texture": {
"tags": null,
"url": "assets/particlesystem/fire/fire_8x8_2.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/fire/fire_8x8_2.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": false,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 5,
"maxSize": 6,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 1,
"minEmitPower": 0,
"maxEmitPower": 0,
"minLifeTime": 2,
"maxLifeTime": 5,
"emitRate": 2,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 4,
"preWarmCycles": 100,
"preWarmStepOffset": 10,
"minInitialRotation": -0.1,
"maxInitialRotation": 0.1,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 0.9,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
},
{
"gradient": 0.1,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 0.9,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
}
],
"rampGradients": [
{
"gradient": 0,
"color": [
1,
1,
1
]
},
{
"gradient": 1,
"color": [
0.7968,
0.3685,
0.1105
]
}
],
"useRampGradients": true,
"colorRemapGradients": [
{
"gradient": 0,
"factor1": 0.2,
"factor2": 1
},
{
"gradient": 1,
"factor1": 0.2,
"factor2": 1
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

237
src/assets/particlesystem/fire/fire_h_3.json

@ -0,0 +1,237 @@
{
"name": "fireSystem3",
"id": "fireSystem3",
"capacity": 3,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
0,
0
],
"particleEmitterType": {
"type": "BoxParticleEmitter",
"direction1": [
0,
1,
0
],
"direction2": [
0,
1,
0
],
"minEmitBox": [
-0.5,
0,
-0.5
],
"maxEmitBox": [
0.5,
0,
0.5
]
},
"texture": {
"tags": null,
"url": "assets/particlesystem/fire/fire_8x8_3.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/fire/fire_8x8_3.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": false,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 5,
"maxSize": 6,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 1,
"minEmitPower": 0,
"maxEmitPower": 0,
"minLifeTime": 2,
"maxLifeTime": 5,
"emitRate": 2,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 4,
"preWarmCycles": 100,
"preWarmStepOffset": 10,
"minInitialRotation": -0.1,
"maxInitialRotation": 0.1,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 0.9,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
},
{
"gradient": 0.1,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 0.9,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
}
],
"rampGradients": [
{
"gradient": 0,
"color": [
1,
1,
1
]
},
{
"gradient": 1,
"color": [
0.7968,
0.3685,
0.1105
]
}
],
"useRampGradients": true,
"colorRemapGradients": [
{
"gradient": 0,
"factor1": 0.2,
"factor2": 1
},
{
"gradient": 1,
"factor1": 0.2,
"factor2": 1
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

220
src/assets/particlesystem/fire/fire_snh_1.json

@ -0,0 +1,220 @@
{
"name": "fireSystem",
"id": "fireSystem",
"capacity": 5,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
3.25,
0
],
"particleEmitterType": {
"type": "HemisphericParticleEmitter",
"radius": 0.5,
"radiusRange": 1,
"directionRandomizer": 0
},
"texture": {
"tags": null,
"url": "assets/particlesystem/fire/fire_8x8_1.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/fire/fire_8x8_1.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": false,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 6,
"maxSize": 8,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 0.2,
"maxScaleY": 0.5,
"minEmitPower": 0,
"maxEmitPower": 0,
"minLifeTime": 2,
"maxLifeTime": 3,
"emitRate": 10,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 4,
"preWarmCycles": 100,
"preWarmStepOffset": 10,
"minInitialRotation": -0.1,
"maxInitialRotation": 0.1,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 1,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
},
{
"gradient": 0.1,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 0.9,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
}
],
"rampGradients": [
{
"gradient": 0,
"color": [
1,
1,
1
]
},
{
"gradient": 1,
"color": [
0.7968,
0.3685,
0.1105
]
}
],
"useRampGradients": true,
"colorRemapGradients": [
{
"gradient": 0,
"factor1": 0.2,
"factor2": 1
},
{
"gradient": 1,
"factor1": 0.2,
"factor2": 1
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

220
src/assets/particlesystem/fire/fire_snh_2.json

@ -0,0 +1,220 @@
{
"name": "fireSystem2",
"id": "fireSystem2",
"capacity": 3,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
2.25,
0
],
"particleEmitterType": {
"type": "HemisphericParticleEmitter",
"radius": 0.5,
"radiusRange": 1,
"directionRandomizer": 0
},
"texture": {
"tags": null,
"url": "assets/particlesystem/fire/fire_8x8_2.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/fire/fire_8x8_2.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": false,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 5,
"maxSize": 6,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 0.2,
"maxScaleY": 0.5,
"minEmitPower": 0,
"maxEmitPower": 0,
"minLifeTime": 2,
"maxLifeTime": 3,
"emitRate": 10,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 4,
"preWarmCycles": 100,
"preWarmStepOffset": 10,
"minInitialRotation": -0.1,
"maxInitialRotation": 0.1,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 0.9,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
},
{
"gradient": 0.1,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 0.9,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
}
],
"rampGradients": [
{
"gradient": 0,
"color": [
1,
1,
1
]
},
{
"gradient": 1,
"color": [
0.7968,
0.3685,
0.1105
]
}
],
"useRampGradients": true,
"colorRemapGradients": [
{
"gradient": 0,
"factor1": 0.2,
"factor2": 1
},
{
"gradient": 1,
"factor1": 0.2,
"factor2": 1
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

220
src/assets/particlesystem/fire/fire_snh_3.json

@ -0,0 +1,220 @@
{
"name": "fireSystem3",
"id": "fireSystem3",
"capacity": 3,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
2.25,
0
],
"particleEmitterType": {
"type": "HemisphericParticleEmitter",
"radius": 0.5,
"radiusRange": 1,
"directionRandomizer": 0
},
"texture": {
"tags": null,
"url": "assets/particlesystem/fire/fire_8x8_3.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/fire/fire_8x8_3.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": false,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 5,
"maxSize": 6,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 0.2,
"maxScaleY": 0.5,
"minEmitPower": 0,
"maxEmitPower": 0,
"minLifeTime": 3,
"maxLifeTime": 10,
"emitRate": 10,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 4,
"preWarmCycles": 100,
"preWarmStepOffset": 10,
"minInitialRotation": -0.1,
"maxInitialRotation": 0.1,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 0.9,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
},
{
"gradient": 0.1,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 0.9,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
}
],
"rampGradients": [
{
"gradient": 0,
"color": [
1,
1,
1
]
},
{
"gradient": 1,
"color": [
0.7968,
0.3685,
0.1105
]
}
],
"useRampGradients": true,
"colorRemapGradients": [
{
"gradient": 0.1,
"factor1": 0.2,
"factor2": 1
},
{
"gradient": 1,
"factor1": 0.2,
"factor2": 1
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

220
src/assets/particlesystem/fire/fire_tph_1.json

@ -0,0 +1,220 @@
{
"name": "fireSystem",
"id": "fireSystem",
"capacity": 5,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
3.25,
0
],
"particleEmitterType": {
"type": "HemisphericParticleEmitter",
"radius": 2,
"radiusRange": 1,
"directionRandomizer": 0
},
"texture": {
"tags": null,
"url": "assets/particlesystem/fire/fire_8x8_1.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/fire/fire_8x8_1.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": false,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 6,
"maxSize": 8,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 5,
"minEmitPower": 0,
"maxEmitPower": 0,
"minLifeTime": 2,
"maxLifeTime": 3,
"emitRate": 10,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 4,
"preWarmCycles": 100,
"preWarmStepOffset": 10,
"minInitialRotation": -0.1,
"maxInitialRotation": 0.1,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 1,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
},
{
"gradient": 0.1,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 0.9,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
}
],
"rampGradients": [
{
"gradient": 0,
"color": [
1,
1,
1
]
},
{
"gradient": 1,
"color": [
0.7968,
0.3685,
0.1105
]
}
],
"useRampGradients": true,
"colorRemapGradients": [
{
"gradient": 0,
"factor1": 0.2,
"factor2": 1
},
{
"gradient": 1,
"factor1": 0.2,
"factor2": 1
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

220
src/assets/particlesystem/fire/fire_tph_2.json

@ -0,0 +1,220 @@
{
"name": "fireSystem2",
"id": "fireSystem2",
"capacity": 3,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
2.25,
0
],
"particleEmitterType": {
"type": "HemisphericParticleEmitter",
"radius": 2,
"radiusRange": 1,
"directionRandomizer": 0
},
"texture": {
"tags": null,
"url": "assets/particlesystem/fire/fire_8x8_2.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/fire/fire_8x8_2.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": false,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 5,
"maxSize": 6,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 5,
"minEmitPower": 0,
"maxEmitPower": 0,
"minLifeTime": 2,
"maxLifeTime": 3,
"emitRate": 10,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 4,
"preWarmCycles": 100,
"preWarmStepOffset": 10,
"minInitialRotation": -0.1,
"maxInitialRotation": 0.1,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 0.9,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
},
{
"gradient": 0.1,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 0.9,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
}
],
"rampGradients": [
{
"gradient": 0,
"color": [
1,
1,
1
]
},
{
"gradient": 1,
"color": [
0.7968,
0.3685,
0.1105
]
}
],
"useRampGradients": true,
"colorRemapGradients": [
{
"gradient": 0,
"factor1": 0.2,
"factor2": 1
},
{
"gradient": 1,
"factor1": 0.2,
"factor2": 1
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

220
src/assets/particlesystem/fire/fire_tph_3.json

@ -0,0 +1,220 @@
{
"name": "fireSystem3",
"id": "fireSystem3",
"capacity": 3,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
2.25,
0
],
"particleEmitterType": {
"type": "HemisphericParticleEmitter",
"radius": 2,
"radiusRange": 1,
"directionRandomizer": 0
},
"texture": {
"tags": null,
"url": "assets/particlesystem/fire/fire_8x8_3.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/fire/fire_8x8_3.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": false,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 5,
"maxSize": 6,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 5,
"minEmitPower": 0,
"maxEmitPower": 0,
"minLifeTime": 3,
"maxLifeTime": 10,
"emitRate": 10,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 4,
"preWarmCycles": 100,
"preWarmStepOffset": 10,
"minInitialRotation": -0.1,
"maxInitialRotation": 0.1,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 0.9,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
},
{
"gradient": 0.1,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 0.9,
"color1": [
1,
1,
1,
0.6
],
"color2": [
1,
1,
1,
0.6
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0
],
"color2": [
1,
1,
1,
0
]
}
],
"rampGradients": [
{
"gradient": 0,
"color": [
1,
1,
1
]
},
{
"gradient": 1,
"color": [
0.7968,
0.3685,
0.1105
]
}
],
"useRampGradients": true,
"colorRemapGradients": [
{
"gradient": 0.1,
"factor1": 0.2,
"factor2": 1
},
{
"gradient": 1,
"factor1": 0.2,
"factor2": 1
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

169
src/assets/particlesystem/rain/rain.json

@ -0,0 +1,169 @@
{
"name": "rainDense",
"id": "rainDense",
"capacity": 3000,
"emitterId": "WeatherRoot",
"particleEmitterType": {
"type": "BoxParticleEmitter",
"direction1": [
0,
-1,
0
],
"direction2": [
0,
-1,
0
],
"minEmitBox": [
-30,
0,
-30
],
"maxEmitBox": [
30,
0,
30
]
},
"texture": {
"tags": null,
"url": "assets/particlesystem/rain/rain_Rain.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/rain/rain_Rain.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": true,
"samplingMode": 3
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 1,
"maxSize": 1,
"minScaleX": 0.25,
"maxScaleX": 0.25,
"minScaleY": 0.5,
"maxScaleY": 0.9,
"minEmitPower": 5,
"maxEmitPower": 10,
"minLifeTime": 3,
"maxLifeTime": 3,
"emitRate": 600,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.03333333333333333,
"targetStopDuration": 0,
"blendMode": 1,
"preWarmCycles": 50,
"preWarmStepOffset": 1,
"minInitialRotation": 0,
"maxInitialRotation": 0,
"startSpriteCellID": 0,
"endSpriteCellID": 3,
"spriteCellChangeSpeed": 0,
"spriteCellWidth": 128,
"spriteCellHeight": 512,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
0.39215686274509803
],
"color2": [
1,
1,
1,
0.39215686274509803
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
0.3
],
"color2": [
1,
1,
1,
0.3
]
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

BIN
src/assets/particlesystem/rain/rain_Rain.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
src/assets/particlesystem/smoke/smoke_8x8.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 835 KiB

211
src/assets/particlesystem/smoke/smoke_a.json

@ -0,0 +1,211 @@
{
"name": "default system",
"id": "default system",
"capacity": 500,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
0,
0
],
"particleEmitterType": {
"type": "HemisphericParticleEmitter",
"radius": 1,
"radiusRange": 1,
"directionRandomizer": 0
},
"texture": {
"tags": null,
"url": "assets/particlesystem/smoke/smoke_8x8.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/smoke/smoke_8x8.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": true,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 7,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 3,
"maxSize": 5,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 1,
"minEmitPower": 1.2,
"maxEmitPower": 1.4,
"minLifeTime": 5,
"maxLifeTime": 3,
"emitRate": 3,
"gravity": [
0,
0,
0
],
"noiseStrength": [
0.2,
0,
0.15
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 1,
"preWarmCycles": 0,
"preWarmStepOffset": 1,
"minInitialRotation": -0.7,
"maxInitialRotation": 0.7,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 2.5,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
0.5,
0.5,
0.5,
0
],
"color2": [
0.5,
0.5,
0.5,
0
]
},
{
"gradient": 0.3,
"color1": [
0.3,
0.3,
0.3,
0.5
],
"color2": [
0.3,
0.3,
0.3,
0.5
]
},
{
"gradient": 0.7,
"color1": [
0.2,
0.2,
0.2,
0.3
],
"color2": [
0.2,
0.2,
0.2,
0.3
]
},
{
"gradient": 1,
"color1": [
0.1,
0.1,
0.1,
0
],
"color2": [
0.1,
0.1,
0.1,
0
]
}
],
"sizeGradients": [
{
"gradient": 0,
"factor1": 1,
"factor2": 1
},
{
"gradient": 0.09,
"factor1": 6,
"factor2": 6
}
],
"noiseTexture": {
"customType": "BABYLON.NoiseProceduralTexture",
"brightness": 0.5,
"octaves": 4,
"persistence": 0.2,
"animationSpeedFactor": 5,
"size": 256,
"generateMipMaps": true,
"time": 2729.4365999997644
},
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

214
src/assets/particlesystem/smoke/smoke_b.json

@ -0,0 +1,214 @@
{
"name": "default system",
"id": "default system",
"capacity": 500,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
0,
0
],
"particleEmitterType": {
"type": "ConeParticleEmitter",
"radius": 0.1,
"angle": 0.6,
"directionRandomizer": 0,
"radiusRange": 1,
"heightRange": 1,
"emitFromSpawnPointOnly": false
},
"texture": {
"tags": null,
"url": "assets/particlesystem/smoke/smoke_8x8.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/smoke/smoke_8x8.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": true,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 7,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 3,
"maxSize": 5,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 1,
"minEmitPower": 1.2,
"maxEmitPower": 1.4,
"minLifeTime": 10,
"maxLifeTime": 11,
"emitRate": 5,
"gravity": [
0.1,
0,
0.05
],
"noiseStrength": [
0.2,
0,
0.15
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 1,
"preWarmCycles": 0,
"preWarmStepOffset": 1,
"minInitialRotation": -0.7,
"maxInitialRotation": 0.7,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 2.5,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
0.5,
0.5,
0.5,
0
],
"color2": [
0.5,
0.5,
0.5,
0
]
},
{
"gradient": 0.3,
"color1": [
0.3,
0.3,
0.3,
0.5
],
"color2": [
0.3,
0.3,
0.3,
0.5
]
},
{
"gradient": 0.7,
"color1": [
0.2,
0.2,
0.2,
0.3
],
"color2": [
0.2,
0.2,
0.2,
0.3
]
},
{
"gradient": 1,
"color1": [
0.1,
0.1,
0.1,
0
],
"color2": [
0.1,
0.1,
0.1,
0
]
}
],
"sizeGradients": [
{
"gradient": 0,
"factor1": 1,
"factor2": 1
},
{
"gradient": 1,
"factor1": 6,
"factor2": 6
}
],
"noiseTexture": {
"customType": "BABYLON.NoiseProceduralTexture",
"brightness": 0.5,
"octaves": 4,
"persistence": 0.2,
"animationSpeedFactor": 5,
"size": 256,
"generateMipMaps": true,
"time": 191.22629999998276
},
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

214
src/assets/particlesystem/smoke/smoke_c.json

@ -0,0 +1,214 @@
{
"name": "default system",
"id": "default system",
"capacity": 500,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
0,
0
],
"particleEmitterType": {
"type": "ConeParticleEmitter",
"radius": 0.1,
"angle": 0.6,
"directionRandomizer": 0,
"radiusRange": 1,
"heightRange": 1,
"emitFromSpawnPointOnly": false
},
"texture": {
"tags": null,
"url": "assets/particlesystem/smoke/smoke_8x8.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/smoke/smoke_8x8.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": true,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 7,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 3,
"maxSize": 5,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 1,
"minEmitPower": 1.2,
"maxEmitPower": 1.4,
"minLifeTime": 5,
"maxLifeTime": 3,
"emitRate": 3,
"gravity": [
0,
-1,
0
],
"noiseStrength": [
0.2,
0,
0.15
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 1,
"preWarmCycles": 0,
"preWarmStepOffset": 1,
"minInitialRotation": -0.7,
"maxInitialRotation": 0.7,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 2.5,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
0.5,
0.5,
0.5,
0
],
"color2": [
0.5,
0.5,
0.5,
0
]
},
{
"gradient": 0.3,
"color1": [
0.3,
0.3,
0.3,
0.5
],
"color2": [
0.3,
0.3,
0.3,
0.5
]
},
{
"gradient": 0.7,
"color1": [
0.2,
0.2,
0.2,
0.3
],
"color2": [
0.2,
0.2,
0.2,
0.3
]
},
{
"gradient": 1,
"color1": [
0.1,
0.1,
0.1,
0
],
"color2": [
0.1,
0.1,
0.1,
0
]
}
],
"sizeGradients": [
{
"gradient": 0,
"factor1": 1,
"factor2": 1
},
{
"gradient": 0.24,
"factor1": 6,
"factor2": 6
}
],
"noiseTexture": {
"customType": "BABYLON.NoiseProceduralTexture",
"brightness": 0.5,
"octaves": 4,
"persistence": 0.2,
"animationSpeedFactor": 5,
"size": 256,
"generateMipMaps": true,
"time": 1530.3456000000376
},
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

215
src/assets/particlesystem/smoke/smoke_snh.json

@ -0,0 +1,215 @@
{
"name": "default system",
"id": "default system",
"capacity": 500,
"emitter": [
0,
0,
0
],
"particleEmitterType": {
"type": "PointParticleEmitter",
"direction1": [
0,
2,
0
],
"direction2": [
0,
2,
0
]
},
"texture": {
"tags": null,
"url": "assets/particlesystem/smoke/smoke_8x8.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/smoke/smoke_8x8.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": true,
"samplingMode": 3
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 7,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 3,
"maxSize": 5,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 0.5,
"maxScaleY": 0.5,
"minEmitPower": 1,
"maxEmitPower": 0.5,
"minLifeTime": 5,
"maxLifeTime": 3,
"emitRate": 2,
"gravity": [
0,
-1,
0
],
"noiseStrength": [
0.2,
0,
0.15
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.016666666666666666,
"targetStopDuration": 0,
"blendMode": 1,
"preWarmCycles": 0,
"preWarmStepOffset": 1,
"minInitialRotation": -0.7,
"maxInitialRotation": 0.7,
"startSpriteCellID": 0,
"endSpriteCellID": 63,
"spriteCellChangeSpeed": 2.5,
"spriteCellWidth": 128,
"spriteCellHeight": 128,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
0.5,
0.5,
0.5,
0
],
"color2": [
0.5,
0.5,
0.5,
0
]
},
{
"gradient": 0.3,
"color1": [
0.3,
0.3,
0.3,
0.5
],
"color2": [
0.3,
0.3,
0.3,
0.5
]
},
{
"gradient": 0.7,
"color1": [
0.2,
0.2,
0.2,
0.3
],
"color2": [
0.2,
0.2,
0.2,
0.3
]
},
{
"gradient": 1,
"color1": [
0.1,
0.1,
0.1,
0
],
"color2": [
0.1,
0.1,
0.1,
0
]
}
],
"sizeGradients": [
{
"gradient": 0,
"factor1": 1,
"factor2": 1
},
{
"gradient": 0.24,
"factor1": 6,
"factor2": 6
}
],
"noiseTexture": {
"customType": "BABYLON.NoiseProceduralTexture",
"brightness": 0.5,
"octaves": 4,
"persistence": 0.2,
"animationSpeedFactor": 5,
"size": 256,
"generateMipMaps": true,
"time": 5209.7477999989915
},
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

169
src/assets/particlesystem/snow/snow.json

@ -0,0 +1,169 @@
{
"name": "snow",
"id": "snow",
"capacity": 3000,
"emitterId": "WeatherRoot",
"particleEmitterType": {
"type": "BoxParticleEmitter",
"direction1": [
0,
-1,
0
],
"direction2": [
0,
-1,
0
],
"minEmitBox": [
-30,
0,
-30
],
"maxEmitBox": [
30,
0,
30
]
},
"texture": {
"tags": null,
"url": "assets/particlesystem/snow/snow.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/snow/snow.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": true,
"samplingMode": 3
},
"isLocal": true,
"animations": [],
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 2,
"minAngularSpeed": 0,
"maxAngularSpeed": 0,
"minSize": 1,
"maxSize": 1,
"minScaleX": 0.5,
"maxScaleX": 0.5,
"minScaleY": 0.2,
"maxScaleY": 0.2,
"minEmitPower": 6,
"maxEmitPower": 8,
"minLifeTime": 3,
"maxLifeTime": 3,
"emitRate": 600,
"gravity": [
0,
0,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
],
"colorDead": [
1,
1,
1,
0
],
"updateSpeed": 0.03333333333333333,
"targetStopDuration": 0,
"blendMode": 2,
"preWarmCycles": 50,
"preWarmStepOffset": 1,
"minInitialRotation": 0,
"maxInitialRotation": 0,
"startSpriteCellID": 0,
"endSpriteCellID": 3,
"spriteCellChangeSpeed": 0,
"spriteCellWidth": 128,
"spriteCellHeight": 512,
"spriteRandomStartCell": true,
"isAnimationSheetEnabled": true,
"colorGradients": [
{
"gradient": 0,
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
]
},
{
"gradient": 1,
"color1": [
1,
1,
1,
1
],
"color2": [
1,
1,
1,
1
]
}
],
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": true
}

BIN
src/assets/particlesystem/snow/snow.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
src/assets/particlesystem/water/textures_flare.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

138
src/assets/particlesystem/water/water.json

@ -0,0 +1,138 @@
{
"name": "particles",
"id": "particles",
"capacity": 2000,
"disposeOnStop": false,
"manualEmitCount": -1,
"emitter": [
0,
0,
0
],
"particleEmitterType": {
"type": "PointParticleEmitter",
"direction1": [
-0.05,
-0.05,
1
],
"direction2": [
0.05,
0.05,
1
]
},
"texture": {
"tags": null,
"url": "assets/particlesystem/water/textures_flare.png",
"uOffset": 0,
"vOffset": 0,
"uScale": 1,
"vScale": 1,
"uAng": 0,
"vAng": 0,
"wAng": 0,
"uRotationCenter": 0.5,
"vRotationCenter": 0.5,
"wRotationCenter": 0.5,
"homogeneousRotationInUVTransform": false,
"isBlocking": true,
"name": "assets/particlesystem/water/textures_flare.png",
"hasAlpha": false,
"getAlphaFromRGB": false,
"level": 1,
"coordinatesIndex": 0,
"coordinatesMode": 0,
"wrapU": 1,
"wrapV": 1,
"wrapR": 1,
"anisotropicFilteringLevel": 4,
"isCube": false,
"is3D": false,
"is2DArray": false,
"gammaSpace": true,
"invertZ": false,
"lodLevelInAlpha": false,
"lodGenerationOffset": 0,
"lodGenerationScale": 0,
"linearSpecularLOD": false,
"isRenderTarget": false,
"animations": [],
"invertY": true,
"samplingMode": 3,
"_useSRGBBuffer": false
},
"isLocal": true,
"animations": [],
"beginAnimationOnStart": false,
"beginAnimationFrom": 0,
"beginAnimationTo": 60,
"beginAnimationLoop": false,
"startDelay": 0,
"renderingGroupId": 0,
"isBillboardBased": true,
"billboardMode": 7,
"minAngularSpeed": 0,
"maxAngularSpeed": 3.141592653589793,
"minSize": 0.1,
"maxSize": 0.3,
"minScaleX": 1,
"maxScaleX": 1,
"minScaleY": 1,
"maxScaleY": 1,
"minEmitPower": 20,
"maxEmitPower": 20,
"minLifeTime": 0.3,
"maxLifeTime": 1.5,
"emitRate": 2000,
"gravity": [
0,
-9.81,
0
],
"noiseStrength": [
10,
10,
10
],
"color1": [
0.7,
0.8,
1,
1
],
"color2": [
0.2,
0.5,
1,
1
],
"colorDead": [
0,
0,
0.2,
0
],
"updateSpeed": 0.01,
"targetStopDuration": 0,
"blendMode": 2,
"preWarmCycles": 0,
"preWarmStepOffset": 1,
"minInitialRotation": 0,
"maxInitialRotation": 0,
"startSpriteCellID": 0,
"endSpriteCellID": 0,
"spriteCellChangeSpeed": 1,
"spriteCellWidth": 0,
"spriteCellHeight": 0,
"spriteRandomStartCell": false,
"isAnimationSheetEnabled": false,
"textureMask": [
1,
1,
1,
1
],
"customShader": null,
"preventAutoStart": false
}
Loading…
Cancel
Save