UNPKG
arcanumcube
Version:
latest (0.2.3)
0.2.3
0.2.2
0.2.1
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Arcanum Cube
github.com/mawxiwtz/arcanumcube
mawxiwtz/arcanumcube
arcanumcube
/
dist
/
types
/
materials.d.ts
11 lines
(8 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
*
as
THREE
from
'three'
;
declare
class
OutlineShaderMaterial
extends
THREE.ShaderMaterial
{
constructor
(
offset
:
number
,
// outline thickness
color
: THREE.
Vector4
,
// outline color
visible
?:
boolean
,
// visible
depthWrite
?:
boolean
); }
export
{
OutlineShaderMaterial
};