arx-level-generator
Version:
A tool for creating Arx Fatalis maps
10 lines (9 loc) • 448 B
TypeScript
import { ArxColor, ArxVertex } from 'arx-convert/types';
import { Expand } from 'arx-convert/utils';
import { Material } from './Material.js';
import { Texture } from './Texture.js';
export type ArxVertexWithColor = Expand<ArxVertex & {
color?: ArxColor;
}>;
export type OriginalLevel = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23;
export type TextureOrMaterial = Texture | Material;