interface getItemOptions {
    actor: ActorPF;
    empty: boolean;
    filterFunc: function;
    items: Item[];
    subType: string;
    type: string;
}

Hierarchy

  • ItemSelectorOptions
    • getItemOptions

Properties

actor: ActorPF

Actor from which to get items from.

empty: boolean

Allow empty selection (none, as is were).

true

filterFunc: function

Filtering callback function.

items: Item[]

Item list to get item from. Used only if actor is undefined.

subType: string

Basic filter for item subtype, unused if filterFunc is provided.

type: string

Basic filter for item type, unused if filterFunc is provided.