Interface StandardWindowBackgroundDescription

interface StandardWindowBackgroundDescription {
    bitmap?: string;
    color?: number;
    frame?: {
        bitmap?: string;
        scale?: number;
    };
    standard?: boolean;
    standart?: boolean;
}

Properties

bitmap?: string

Background bitmap texture name. If the bitmap size doesn't match the screen size, bitmap will be stretched to fit.

color?: number

Background color integer value, produced by android.graphics.Color class.

0xfff // white
frame?: {
    bitmap?: string;
    scale?: number;
}

Specifies window's frame parameters.

Type declaration

  • Optionalbitmap?: string

    Frame bitmap gui texture name. Defaults to "frame" style binding or, if not specified, to "default_frame_8" gui texture

  • Optionalscale?: number

    Frame bitmap scale.

    3
    
standard?: boolean

If true, default window is created.

standart?: boolean

If true, default window is created.

Use standard instead.

Copyright © 2024 Nernar. Copyright © 2020 #mineprogramming. Built with ❤ and TypeDoc.