EffectPropertySpread
Type
operator
Summary
The spread of an effect.
Syntax
the spread of <mEffect>
Description
The spread of mEffect as a number between 0 and 1. Spread applies to inner shadow, outer shadow, inner glow, and outer glow effect types
Parameters
Name | Type | Description |
---|---|---|
mEffect | An expression which evaluates to an effect. |
Examples
// Create an effect with spread 0
variable tProps as Array
put the empty array into tProps
put 0 into tProps["spread"]
variable tEffect as Effect
put outer shadow effect with properties tProps into tEffect
// Set the effect spread
set the spread of tEffect to 0.1