@openhps/core
Version:
Open Hybrid Positioning System - Core component
15 lines (11 loc) • 460 B
TypeScript
import { ShaderMaterial, ShaderMaterialParameters } from "./ShaderMaterial.js";
export class RawShaderMaterial extends ShaderMaterial {
constructor(parameters?: ShaderMaterialParameters);
/**
* Read-only flag to check if a given object is of type {@link RawShaderMaterial}.
* @remarks This is a _constant_ value
* @defaultValue `true`
*/
readonly isRawShaderMaterial: true;
override readonly type: "RawShaderMaterial";
}