EffectPropertyAngle
Type
operator
Summary
The angle of an effect.
Syntax
the angle of <mEffect>
Description
The angle of mEffect as a number of degrees. Angle applies to inner shadow, and outer shadow effect types
Parameters
Name | Type | Description |
---|---|---|
mEffect | An expression which evaluates to an effect. |
Examples
// Create an effect with angle 60
variable tProps as Array
put the empty array into tProps
put 60 into tProps["angle"]
variable tEffect as Effect
put outer shadow effect with properties tProps into tEffect
// Set the effect angle
set the angle of tEffect to 30