1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-25 02:44:03 +02:00

fix scale

This commit is contained in:
syuilo
2026-04-21 13:33:43 +09:00
parent 493a2eb50c
commit e96e88b1ce
5 changed files with 15 additions and 15 deletions

View File

@@ -362,8 +362,8 @@ export class RoomEngine extends EventEmitter<RoomEngineEvents> {
this.putParticleSystem.createCylinderEmitter(cm(5), cm(1), cm(5));
this.putParticleSystem.minEmitBox = new BABYLON.Vector3(cm(-3), 0, cm(-3));
this.putParticleSystem.maxEmitBox = new BABYLON.Vector3(cm(3), 0, cm(3));
this.putParticleSystem.minEmitPower = 700;
this.putParticleSystem.maxEmitPower = 1000;
this.putParticleSystem.minEmitPower = cm(700);
this.putParticleSystem.maxEmitPower = cm(1000);
this.putParticleSystem.addVelocityGradient(0, 1);
this.putParticleSystem.addVelocityGradient(1, 0);
this.putParticleSystem.minLifeTime = 0.2;