EffectPropertyAngle

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
the angle of <mEffect>
Associationscom.livecode.canvas
Summary

The angle of an effect.

Parameters
NameTypeDescription
mEffect

An expression which evaluates to an effect.

Example
// 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
Description

The angle of mEffect as a number of degrees. Angle applies to inner shadow, and outer shadow effect types

Tagscanvas