Using Ephemeral Property Mapper operators to adjust values (PB only)
By default, Particle Playground replaces the value of a particle's property with the value represented by the layer map pixel at the particle's current location. You can also amplify, attenuate, or limit the resulting values by specifying a mathematical operator in the Ephemeral Property Mapper, and then using both the value of a particle's property and its corresponding layer map pixel value. Operators are available only in the Ephemeral Property Mapper. The following operators are available: Set Replaces the value of a particle property by the value of the corresponding layer map pixel. This is the default operator. Add Uses the sum of the value of a particle property and the value of the corresponding layer map pixel. Difference Uses the absolute value of the difference of the value of a particle property and the brightness value of the corresponding pixel on the layer map. Because it takes the absolute value of the difference, the resulting value is always positive. This operator is useful when you want to limit values to only positive values. If you're trying to model realistic behavior, the difference operator may not be ideal. Subtract Starts with the value of a particle property and subtracts the value of the brightness value of the corresponding pixel on the layer map. Multiply Multiplies the value of a particle property by the value of the brightness value of the corresponding pixel on the layer map and uses the result. Min Compares the brightness value of the layer map to the value of the particle property and uses the lower value. Max Compares the brightness value of the layer map to the value of the particle property and uses the higher value. If you are not familiar with mathematical operators, the following guidelines can help you decide whether you should use an operator: |