diff --git a/src/app/babylon/controller/serve-manager.ts b/src/app/babylon/controller/serve-manager.ts index 0ac613a..90cd9ea 100644 --- a/src/app/babylon/controller/serve-manager.ts +++ b/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 ,表示新建 } diff --git a/src/app/babylon/model/info/mark/mark-plan-info.ts b/src/app/babylon/model/info/mark/mark-plan-info.ts index 16e0a6d..eabde20 100644 --- a/src/app/babylon/model/info/mark/mark-plan-info.ts +++ b/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; + } + /** * 清空标绘物(表现层和逻辑层) */ diff --git a/src/app/babylon/view/building-window/building-window.ts b/src/app/babylon/view/building-window/building-window.ts index 41f09df..8df21a8 100644 --- a/src/app/babylon/view/building-window/building-window.ts +++ b/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); diff --git a/src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts b/src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts index 4e715ea..49ff7d9 100644 --- a/src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts +++ b/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); diff --git a/src/app/babylon/view/mark-window/mark-window.ts b/src/app/babylon/view/mark-window/mark-window.ts index 5fc0bcb..1d4b484 100644 --- a/src/app/babylon/view/mark-window/mark-window.ts +++ b/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); + } } } diff --git a/src/app/pages/plan/plan.component.ts b/src/app/pages/plan/plan.component.ts index be42d05..f7e05ab 100644 --- a/src/app/pages/plan/plan.component.ts +++ b/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) } } diff --git a/src/assets/particlesystem/fire/fire_8x8_1.png b/src/assets/particlesystem/fire/fire_8x8_1.png new file mode 100644 index 0000000..584caa3 Binary files /dev/null and b/src/assets/particlesystem/fire/fire_8x8_1.png differ diff --git a/src/assets/particlesystem/fire/fire_8x8_2.png b/src/assets/particlesystem/fire/fire_8x8_2.png new file mode 100644 index 0000000..a927a68 Binary files /dev/null and b/src/assets/particlesystem/fire/fire_8x8_2.png differ diff --git a/src/assets/particlesystem/fire/fire_8x8_3.png b/src/assets/particlesystem/fire/fire_8x8_3.png new file mode 100644 index 0000000..7589aaf Binary files /dev/null and b/src/assets/particlesystem/fire/fire_8x8_3.png differ diff --git a/src/assets/particlesystem/fire/fire_h_1.json b/src/assets/particlesystem/fire/fire_h_1.json new file mode 100644 index 0000000..2e6ad17 --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/fire/fire_h_2.json b/src/assets/particlesystem/fire/fire_h_2.json new file mode 100644 index 0000000..d9a08a6 --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/fire/fire_h_3.json b/src/assets/particlesystem/fire/fire_h_3.json new file mode 100644 index 0000000..52ea02a --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/fire/fire_snh_1.json b/src/assets/particlesystem/fire/fire_snh_1.json new file mode 100644 index 0000000..f4bd785 --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/fire/fire_snh_2.json b/src/assets/particlesystem/fire/fire_snh_2.json new file mode 100644 index 0000000..48e7e9f --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/fire/fire_snh_3.json b/src/assets/particlesystem/fire/fire_snh_3.json new file mode 100644 index 0000000..89347e9 --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/fire/fire_tph_1.json b/src/assets/particlesystem/fire/fire_tph_1.json new file mode 100644 index 0000000..02ebfe4 --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/fire/fire_tph_2.json b/src/assets/particlesystem/fire/fire_tph_2.json new file mode 100644 index 0000000..3d507d7 --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/fire/fire_tph_3.json b/src/assets/particlesystem/fire/fire_tph_3.json new file mode 100644 index 0000000..44e7f40 --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/rain/rain.json b/src/assets/particlesystem/rain/rain.json new file mode 100644 index 0000000..8f4168e --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/rain/rain_Rain.png b/src/assets/particlesystem/rain/rain_Rain.png new file mode 100644 index 0000000..89b4a34 Binary files /dev/null and b/src/assets/particlesystem/rain/rain_Rain.png differ diff --git a/src/assets/particlesystem/smoke/smoke_8x8.png b/src/assets/particlesystem/smoke/smoke_8x8.png new file mode 100644 index 0000000..01dbcfa Binary files /dev/null and b/src/assets/particlesystem/smoke/smoke_8x8.png differ diff --git a/src/assets/particlesystem/smoke/smoke_a.json b/src/assets/particlesystem/smoke/smoke_a.json new file mode 100644 index 0000000..275321c --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/smoke/smoke_b.json b/src/assets/particlesystem/smoke/smoke_b.json new file mode 100644 index 0000000..5c5d906 --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/smoke/smoke_c.json b/src/assets/particlesystem/smoke/smoke_c.json new file mode 100644 index 0000000..513fc2b --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/smoke/smoke_snh.json b/src/assets/particlesystem/smoke/smoke_snh.json new file mode 100644 index 0000000..beb805a --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/snow/snow.json b/src/assets/particlesystem/snow/snow.json new file mode 100644 index 0000000..3aee4cd --- /dev/null +++ b/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 +} \ No newline at end of file diff --git a/src/assets/particlesystem/snow/snow.png b/src/assets/particlesystem/snow/snow.png new file mode 100644 index 0000000..89b4a34 Binary files /dev/null and b/src/assets/particlesystem/snow/snow.png differ diff --git a/src/assets/particlesystem/water/textures_flare.png b/src/assets/particlesystem/water/textures_flare.png new file mode 100644 index 0000000..a4842d4 Binary files /dev/null and b/src/assets/particlesystem/water/textures_flare.png differ diff --git a/src/assets/particlesystem/water/water.json b/src/assets/particlesystem/water/water.json new file mode 100644 index 0000000..7d072c7 --- /dev/null +++ b/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 +} \ No newline at end of file