Difference between revisions of "LlMakeExplosion"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 9: Line 9:
|p5_type=float|p5_name=arc
|p5_type=float|p5_name=arc
|p6_type=string|p6_name=texture
|p6_type=string|p6_name=texture
|p7_type=vector|p7_name=offset|p7_desc= that is completely ignored.
|p7_type=vector|p7_name=offset|p7_desc=  and is completely ignored.
|func_desc=Make a round explosion of particles
|func_desc=Make a round explosion of particles
|func_footnote
|func_footnote
|spec
|spec
|caveats
|caveats=
*The offset parameter no longer does anything. It is completely ignored.
|constants
|constants
|examples
|examples

Revision as of 10:59, 18 June 2012

Emblem-important.png Deprecated
(This function has been deprecated, please use llParticleSystem instead.)

Summary

Function: llMakeExplosion( integer particles, float scale, float vel, float lifetime, float arc, string texture, vector offset );

Make a round explosion of particles

• integer particles
• float scale
• float vel
• float lifetime
• float arc
• string texture
• vector offset offset relative to the prim's position and expressed in local coordinates and is completely ignored.

Caveats

  • This function causes the script to sleep for 0.1 seconds.
  • This function has been deprecated, please use llParticleSystem instead.
  • The offset parameter no longer does anything. It is completely ignored.
All Issues ~ Search JIRA for related Bugs

Examples

Notes

Beginning in 1.14, the simulator will be using llParticleSystem to emulate legacy llMakeExplosion particles. <lsl> llMakeExplosion(integer particle_count,

               float particle_scale,
               float particle_speed,
               float particle_lifetime,
               float source_cone,
               string source_texture_id,
               vector local_offset);

</lsl> <lsl> fakeMakeExplosion(integer particle_count, float particle_scale, float particle_speed,

                float particle_lifetime, float source_cone, string source_texture_id, 
                vector local_offset) 

{

   //local_offset is ignored
   llParticleSystem([
       PSYS_PART_FLAGS,            PSYS_PART_INTERP_COLOR_MASK

Deep Notes

Search JIRA for related Issues

Signature

function void llMakeExplosion( integer particles, float scale, float vel, float lifetime, float arc, string texture, vector offset );