misha.physics
Well-known member
- Joined
- Dec 22, 2021
- Messages
- 1,480
- Reaction score
- 2,219
- Points
- 128
- Location
- Lviv
- Preferred Pronouns
- he/him
I need some explanation help with understanding these piece:
What's the difference between vi:add_exhaust(thhovr,8,1,{x=0,y=-1.5,z=1},{x=0,y=-1,z=0}) and vi:add_exhauststream(thhovr,{x=0,y=-3,z=1},contrail_hovr)?
Why do the y-coordinates diiffer (namely y=-1.5 and y=-3?
What's the difference between contrail and exhaust?
How can I get just a purple plasma trail without a stream of white particles?
Code:
-- engine exhaust definitions
vi:add_exhaust(thhovr,8,1,{x=0,y=-1.5,z=1},{x=0,y=-1,z=0})
vi:add_exhaust(thhovr,8,1,{x=0,y=-1.5,z=-1},{x=0,y=-1,z=0})
contrail_hovr = {
srcsize = 5.0,
srcrate = 8,
v0 = 200,
srcspread = 0.15,
lifetime = 1.0,
growthrate = 5,
atmslowdown = 3.0,
ltype = PARTICLE.DIFFUSE,
levelmap = PARTICLE.LVL_PSQRT,
lmin = 0,
lmax = 2,
atmsmap = PARTICLE.ATM_PLOG,
amin = 1e-4,
amax = 1
}
exhaust_hovr = {
srcsize = 2.0,
srcrate = 10,
v0 = 200,
srcspread = 0.05,
lifetime = 0.05,
growthrate = 8,
atmslowdown = 1.0,
ltype = PARTICLE.EMISSIVE,
levelmap = PARTICLE.LVL_SQRT,
atmsmap = PARTICLE.ATM_PLOG,
amin = 1e-5,
amax = 0.1
}
vi:add_exhauststream(thhovr,{x=0,y=-3,z=1},contrail_hovr)
vi:add_exhauststream(thhovr,{x=0,y=-3,z=-1},contrail_hovr)
vi:add_exhauststream(thhovr,{x=0,y=-2,z=1},exhaust_hovr)
vi:add_exhauststream(thhovr,{x=0,y=-2,z=-1},exhaust_hovr)
Why do the y-coordinates diiffer (namely y=-1.5 and y=-3?
What's the difference between contrail and exhaust?
How can I get just a purple plasma trail without a stream of white particles?






