UNPKG

rl-loadout-lib

Version:

Load Rocket League assets into three.js

51 lines 2.19 kB
import { Body } from '../model/body'; /** * An array of primary colors for the blue team. The array index corresponds to the colors in-game ID. * Taken from https://www.reddit.com/r/RLFashionAdvice/comments/9l1swx/rocket_league_color_palette_with_hex_and_rgb/ */ export declare const BLUE_PRIMARY_COLORS: string[]; /** * An array of primary colors for the orange team. The array index corresponds to the colors in-game ID. * Taken from https://www.reddit.com/r/RLFashionAdvice/comments/9l1swx/rocket_league_color_palette_with_hex_and_rgb/ */ export declare const ORANGE_PRIMARY_COLORS: string[]; /** * An array of accent colors. The array index corresponds to the colors in-game ID. * Taken from https://www.reddit.com/r/RLFashionAdvice/comments/9l1swx/rocket_league_color_palette_with_hex_and_rgb/ */ export declare const ACCENT_COLORS: string[]; /** * The default blue primary color, that's set when creating a new loadout. */ export declare const DEFAULT_BLUE_TEAM: string; /** * The default orange primary color, that's set when creating a new loadout. */ export declare const DEFAULT_ORANGE_TEAM: string; /** * The default accent color, that's set when creating a new loadout. */ export declare const DEFAULT_ACCENT: string; export declare const PAINT_NONE = 0; export declare const PAINT_CRIMSON = 1; export declare const PAINT_LIME = 2; export declare const PAINT_BLACK = 3; export declare const PAINT_SKY_BLUE = 4; export declare const PAINT_COBALT = 5; export declare const PAINT_BURNT_SIENNA = 6; export declare const PAINT_FOREST_GREEN = 7; export declare const PAINT_PURPLE = 8; export declare const PAINT_PINK = 9; export declare const PAINT_ORANGE = 10; export declare const PAINT_GREY = 11; export declare const PAINT_TITANIUM_WHITE = 12; export declare const PAINT_SAFFRON = 13; export declare const PAINT_COLORS: string[]; export declare const COLOR_MAPLE_BLUE = "#0000F3"; export declare const COLOR_MAPLE_ORANGE = "#800000"; export declare const COLOR_BERRY_ORANGE = "#B3915F"; export declare const COLOR_BERRY_BLUE = "#656336"; export declare function getColorsForBody(body: Body): { [team: string]: string[]; }; //# sourceMappingURL=color.d.ts.map