Pathfinder 1e for Foundry VTT
    Preparing search index...

    An application that renders a form to configure the resting behavior of an Actor

    The Actor instance for which to configure resting

    Hierarchy

    • HandlebarsApplication<this> & DocumentSheetV2<
          any,
          RenderContext<any>,
          Configuration<any>,
          RenderOptions,
          this,
      >
      • ActorRestDialog
    Index

    Constructors

    Properties

    Accessors

    Methods

    Constructors

    • Parameters

      • Optionaloptions: {}

      Returns ActorRestDialog

    Properties

    DEFAULT_OPTIONS: {
        classes: string[];
        form: {
            closeOnSubmit: boolean;
            handler: (
                ...this: any,
                event: SubmitEvent,
                form: HTMLFormElement,
                formData: FormDataExtended,
            ) => Promise<void>;
            submitOnChange: boolean;
        };
        position: { width: number };
        sheetConfig: boolean;
        tag: string;
        window: { icon: string; minimizable: boolean; resizable: boolean };
    } = ...
    PARTS: { footer: { template: string }; form: { template: string } } = ...

    Accessors

    • get title(): string

      Configure the title of the actor rest window to include the Actor name

      Returns string

    Methods

    • Protected

      Returns Promise<{ buttons: { icon: string; label: string; type: string }[] }>

    • Internal

      Trigger the actor rest with the provided form input as options.

      Parameters

      • ...this: any
      • event: SubmitEvent

        The originating form submission event

      • form: HTMLFormElement

        The form element that was submitted

      • formData: FormDataExtended

        Processed data for the submitted form

        • object

          The resting configuration

      Returns Promise<void>