mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 21:43:03 +02:00
change default particle properties
This commit is contained in:
parent
40908fb1a3
commit
0d21d7108e
1 changed files with 46 additions and 16 deletions
|
@ -482,22 +482,52 @@ var toolBar = (function () {
|
|||
createNewEntity({
|
||||
type: "ParticleEffect",
|
||||
isEmitting: true,
|
||||
emitterShouldTrail: true,
|
||||
color: {
|
||||
red: 200,
|
||||
green: 200,
|
||||
blue: 200
|
||||
},
|
||||
colorSpread: {
|
||||
red: 0,
|
||||
green: 0,
|
||||
blue: 0
|
||||
},
|
||||
colorStart: {
|
||||
red: 200,
|
||||
green: 200,
|
||||
blue: 200
|
||||
},
|
||||
colorFinish: {
|
||||
red: 0,
|
||||
green: 0,
|
||||
blue: 0
|
||||
},
|
||||
emitAcceleration: {
|
||||
x: 0,
|
||||
y: -1,
|
||||
z: 0
|
||||
x: 0.5,
|
||||
y: 1.5,
|
||||
z: 0.5
|
||||
},
|
||||
accelerationSpread: {
|
||||
x: 5,
|
||||
y: 0,
|
||||
z: 5
|
||||
x: 1.0,
|
||||
y: 0.0,
|
||||
z: 1.0
|
||||
},
|
||||
emitSpeed: 1,
|
||||
emitRate: 10,
|
||||
emitSpeed: 2,
|
||||
speedSpread: 0,
|
||||
lifespan: 1,
|
||||
particleRadius: 0.025,
|
||||
maxParticles: 100,
|
||||
particleRadius: 0.25,
|
||||
radiusStart: 0.05,
|
||||
radiusFinish: 0.25,
|
||||
radiusSpread: 0.5,
|
||||
alpha: 0,
|
||||
alphaStart: 0.5,
|
||||
alphaFinish: 0,
|
||||
emitRate: 100,
|
||||
textures: "https://hifi-public.s3.amazonaws.com/alan/Particles/Particle-Sprite-Smoke-1.png"
|
||||
polarStart: 0,
|
||||
polarFinish: 0,
|
||||
textures: "https://raw.githubusercontent.com/Triplelexx/hifi/40908fb1a31bd884f87e21c4e524275f8334471b/interface/resources/images/Smoke.png"
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue