Interface SceneTextureSetParams

interface SceneTextureSetParams {
    colorTextureId?: string;
    emissiveTextureId?: string;
    id: string;
    metallicRoughnessTextureId?: string;
    normalsTextureId?: string;
    occlusionTextureId?: string;
}

Properties

colorTextureId?: string

ID of a color texture created previously with SceneModel.createTexture.

A color texture has color in RGB and alpha in A.

emissiveTextureId?: string

ID of an emissive color texture created previously with SceneModel.createTexture.

An emissive texture has RGBA components, with emissive factors in RGB.

id: string

ID for the texture set.

metallicRoughnessTextureId?: string

ID of a metallic-roughness texture created previously with SceneModel.createTexture.

A metallic-roughness texture has RGBA components, with the metallic factor in R, and the roughness factor in G.

normalsTextureId?: string

ID of a normal map texture created previously with SceneModel.createTexture.

A normal map texture has RGBA components, with the normal map vectors in RGB.

occlusionTextureId?: string

ID of an ambient occlusion texture created previously with SceneModel.createTexture.

An occlusion texture has RGBA components, with occlusion factor in R,