@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
25 lines (24 loc) • 558 B
TypeScript
/** @internal */
export declare enum SerializedFieldType {
VALUE = 0,
TEXTURE = 1,
COLOR3 = 2,
FRESNEL_PARAMETERS = 3,
VECTOR2 = 4,
VECTOR3 = 5,
MESH = 6,
COLOR_CURVES = 7,
COLOR4 = 8,
IMAGE_PROCESSING = 9,
QUATERNION = 10,
CAMERA = 11,
MATRIX = 12,
VECTOR4 = 13
}
/** @internal */
export interface SerializedPropertyMetadata {
type: SerializedFieldType;
sourceName: string | undefined;
}
/** @internal */
export type SerializedPropertyMetadataMap = Record<string, SerializedPropertyMetadata>;