interface RegionData {
    _id: null | string;
    behaviors?: RegionBehaviorData[];
    color?: string;
    elevation?: number;
    flags: DocumentFlags;
    locked?: boolean;
    name: string;
    shapes?: BaseShapeData[];
    visibility?: number;
}

Properties

_id: null | string

The Region _id which uniquely identifies it within its parent Scene

behaviors?: RegionBehaviorData[]

A collection of embedded RegionBehavior objects

color?: string

The color used to highlight the Region

elevation?: number

The elevation

An object of optional key/value flags

locked?: boolean

Whether this region is locked or not

name: string

The name used to describe the Region

shapes?: BaseShapeData[]

The shapes that make up the Region

visibility?: number

The region visibility