flipV

Usage

-- Lingo syntax
spriteObjRef.flipV

// JavaScript syntax
spriteObjRef.flipV;

Description

Sprite property; indicates whether a sprite's image has been flipped vertically on the Stage (TRUE) or not (FALSE). Read-only.

The image itself is flipped around its registration point.

This means any rotation or skew remains constant; only the image data itself is flipped.

Example

This statement displays the flipV of sprite 5:

-- Lingo syntax
put(sprite(5).flipV)

// JavaScript syntax
put(sprite(5).flipV);

See also

flipH, rotation, skew, Sprite