LlLinkParticleSystem
De DigiWiki.
(Différences entre les versions)
Ligne 4 : | Ligne 4 : | ||
This example produces an effusion of glowing red spheres: | This example produces an effusion of glowing red spheres: | ||
<lsl> | <lsl> | ||
- | llLinkParticleSystem(LINK_THIS,[ | + | llLinkParticleSystem (LINK_THIS,[ |
- | + | PSYS_PART_FLAGS, | |
- | + | PSYS_PART_WIND_MASK | | |
- | + | PSYS_PART_EMISSIVE_MASK, | |
+ | PSYS_SRC_PATTERN, | ||
+ | PSYS_SRC_PATTERN_EXPLODE, | ||
+ | PSYS_PART_START_COLOR, <1.0, 0.0, 0.0> | ||
]); | ]); | ||
</lsl> | </lsl> |
Version du 9 octobre 2012 à 19:01
This example produces an effusion of glowing red spheres:
llLinkParticleSystem (LINK_THIS,[ PSYS_PART_FLAGS, PSYS_PART_WIND_MASK | PSYS_PART_EMISSIVE_MASK, PSYS_SRC_PATTERN, PSYS_SRC_PATTERN_EXPLODE, PSYS_PART_START_COLOR, <1.0, 0.0, 0.0> ]);