Difference between revisions of "User:NeeNee Zepp"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with '== Particles: An Art Form == I like to make particle art! This is a really exciting part of Second Life for me. I love them. I'm going to put some of my art forms here on this p...')
 
Line 1: Line 1:
== Particles: An Art Form  ==
== Particles: An Art Form  ==
I like to make particle art! This is a really exciting part of Second Life for me. I love them. I'm going to put some of my art forms here on this page!, just as soon as I make it back here!
I like to make particle art! This is a really exciting part of Second Life for me. I love them. I'm going to put some of my art forms here on this page!, just as soon as I make it back here!
===Particle 01-Two Lady Bugs Mating!===
<lsl>
//Pair of Mating Lady Bugs by NeeNee Zepp
// put them in  your garden! Use in a very transparent small box
default
{
    state_entry()
    {
      llParticleSystem([
PSYS_PART_FLAGS, 0,
PSYS_SRC_PATTERN, 2,
PSYS_PART_START_ALPHA, 1.000000,
PSYS_PART_END_ALPHA, 1.000000,
PSYS_PART_START_COLOR, <1.000000, 1.000000, 1.000000>,
PSYS_PART_END_COLOR, <1.000000, 1.000000, 1.000000>,
PSYS_PART_START_SCALE, <0.250000, 0.250000, 0.00000>,
PSYS_PART_END_SCALE, <0.250000, 0.250000, 0.000000>,
PSYS_PART_MAX_AGE, 0.500000,
PSYS_SRC_MAX_AGE, 0.000000,
PSYS_SRC_ACCEL, <1.500000, 0.000000, 0.000000>,
PSYS_SRC_ANGLE_BEGIN, 0.000000,
PSYS_SRC_ANGLE_END, 0.000000,
PSYS_SRC_BURST_PART_COUNT, 1,
PSYS_SRC_BURST_RATE, 0.200000,
PSYS_SRC_BURST_RADIUS, 0.000000,
PSYS_SRC_BURST_SPEED_MIN, 0.000000,
PSYS_SRC_BURST_SPEED_MAX, 0.500000,
PSYS_SRC_OMEGA, <2.500000, 2.500000, 0.000000>,
PSYS_SRC_TARGET_KEY,(key)"",
PSYS_SRC_TEXTURE, "1b610969-3b44-c92b-1fff-c8fc3207a361"]);
    }
}
</lsl>

Revision as of 22:10, 28 May 2010

Particles: An Art Form

I like to make particle art! This is a really exciting part of Second Life for me. I love them. I'm going to put some of my art forms here on this page!, just as soon as I make it back here!

Particle 01-Two Lady Bugs Mating!

<lsl> //Pair of Mating Lady Bugs by NeeNee Zepp // put them in your garden! Use in a very transparent small box default {

   state_entry()
   {
      llParticleSystem([

PSYS_PART_FLAGS, 0, PSYS_SRC_PATTERN, 2, PSYS_PART_START_ALPHA, 1.000000, PSYS_PART_END_ALPHA, 1.000000, PSYS_PART_START_COLOR, <1.000000, 1.000000, 1.000000>, PSYS_PART_END_COLOR, <1.000000, 1.000000, 1.000000>, PSYS_PART_START_SCALE, <0.250000, 0.250000, 0.00000>, PSYS_PART_END_SCALE, <0.250000, 0.250000, 0.000000>, PSYS_PART_MAX_AGE, 0.500000, PSYS_SRC_MAX_AGE, 0.000000, PSYS_SRC_ACCEL, <1.500000, 0.000000, 0.000000>, PSYS_SRC_ANGLE_BEGIN, 0.000000, PSYS_SRC_ANGLE_END, 0.000000, PSYS_SRC_BURST_PART_COUNT, 1, PSYS_SRC_BURST_RATE, 0.200000, PSYS_SRC_BURST_RADIUS, 0.000000, PSYS_SRC_BURST_SPEED_MIN, 0.000000, PSYS_SRC_BURST_SPEED_MAX, 0.500000, PSYS_SRC_OMEGA, <2.500000, 2.500000, 0.000000>, PSYS_SRC_TARGET_KEY,(key)"", PSYS_SRC_TEXTURE, "1b610969-3b44-c92b-1fff-c8fc3207a361"]);

   }

} </lsl>