@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) • 668 B
TypeScript
import type { RawTexture } from "../Textures/rawTexture.js";
import type { Nullable } from "../../types.js";
import { Color3 } from "../../Maths/math.color.js";
/**
* Default settings for GreasedLine materials
*/
export declare class GreasedLineMaterialDefaults {
/**
* Default line color for newly created lines
*/
static DEFAULT_COLOR: Color3;
/**
* Default line width when sizeAttenuation is true
*/
static DEFAULT_WIDTH_ATTENUATED: number;
/**
* Defaule line width
*/
static DEFAULT_WIDTH: number;
/**
* Empty colors texture for WebGPU
*/
static EmptyColorsTexture: Nullable<RawTexture>;
}