@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.
19 lines • 516 B
JavaScript
import { Color3 } from "../../Maths/math.color.js";
/**
* Default settings for GreasedLine materials
*/
export class GreasedLineMaterialDefaults {
}
/**
* Default line color for newly created lines
*/
GreasedLineMaterialDefaults.DEFAULT_COLOR = Color3.White();
/**
* Default line width when sizeAttenuation is true
*/
GreasedLineMaterialDefaults.DEFAULT_WIDTH_ATTENUATED = 1;
/**
* Defaule line width
*/
GreasedLineMaterialDefaults.DEFAULT_WIDTH = 0.1;
//# sourceMappingURL=greasedLineMaterialDefaults.js.map