Constructor
new Label(optionsopt)
Name | Type | Attributes | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | Object | <optional> | Label options: Properties
|
- Source
Extends
Methods
assignFontAtlas(fontAtlas)
Assigns font atlas and update.
Name | Type | Description |
---|---|---|
fontAtlas | FontAtlas | Font atlas. |
- Source
getAlign() → {string}
Gets label text current alignment.
- Source
- Type:
- string
getAlignedAxis() → {Vec3}
Returns aligned vector.
- Overrides
- Source
- Type:
- Vec3
getColor() → {Vec4}
Returns RGBA color.
- Overrides
- Source
- Type:
- Vec4
getFace() → {string}
Gets current font face.
- Source
- Type:
- string
getLetterSpacing(spacing)
Returns label text letter spacing.
Name | Type | Description |
---|---|---|
spacing | number | Letter spacing. |
- Source
getOffset() → {Vec3}
Returns billboard screen space offset size.
- Overrides
- Source
- Type:
- Vec3
getOutline() → {number}
Gets text current outline size.
- Source
- Type:
- number
getOutlineColor() → {Vec4}
Gets outline color vector.
- Source
- Type:
- Vec4
getOutlineOpacity() → {number}
Gets outline opacity value.
- Source
- Type:
- number
getPosition() → {Vec3}
Returns billboard position.
- Overrides
- Source
- Type:
- Vec3
getRotation() → {number}
Gets screen space rotation.
- Overrides
- Source
- Type:
- number
getSize() → {number}
Gets label size in pixels.
- Source
- Type:
- number
getText() → {string}
Gets current text string.
- Source
- Type:
- string
getVisibility() → {boolean}
Returns billboard visibility.
- Overrides
- Source
- Type:
- boolean
remove()
Removes billboard from handler.
- Overrides
- Source
setAlign(align)
Sets label text align. Could be center, left or right. Left is default.
Name | Type | Description |
---|---|---|
align | string | Text align. |
- Source
setAlignedAxis(x, y, z)
Sets billboard cartesian aligned vector.
Name | Type | Description |
---|---|---|
x | number | Aligned vector X coordinate. |
y | number | Aligned vector Y coordinate. |
z | number | Aligned vector Z coordinate. |
- Overrides
- Source
setAlignedAxis3v(alignedAxis)
Sets billboard aligned vector.
Name | Type | Description |
---|---|---|
alignedAxis | Vec3 | Align direction. |
- Overrides
- Source
setColor(r, g, b, a)
Sets RGBA color. Each channel from 0.0 to 1.0.
Name | Type | Description |
---|---|---|
r | number | Red. |
g | number | Green. |
b | number | Blue. |
a | number | Alpha. |
- Overrides
- Source
setColor4v(color)
Sets RGBA color. Each channel from 0.0 to 1.0.
Name | Type | Description |
---|---|---|
color | Vec4 | RGBA vector. |
- Overrides
- Source
setColorHTML(color)
Sets billboard color.
Name | Type | Description |
---|---|---|
color | string | HTML style color. |
- Overrides
- Source
setFace(face)
Sets font face family.
Name | Type | Description |
---|---|---|
face | string | Font face family. |
- Source
setLetterSpacing(spacing)
Set text letter spacing.
Name | Type | Description |
---|---|---|
spacing | number | Letter spacing. |
- Source
setOffset(x, y, zopt)
Sets screen space offset.
Name | Type | Attributes | Description |
---|---|---|---|
x | number | X offset. | |
y | number | Y offset. | |
z | number | <optional> | Z offset. |
- Overrides
- Source
setOffset3v(offset)
Sets screen space offset.
Name | Type | Description |
---|---|---|
offset | Vec2 | Offset size. |
- Overrides
- Source
setOpacity(a)
Sets label opacity.
Name | Type | Description |
---|---|---|
a | number | Label opacity. |
- Overrides
- Source
setOutline(outline)
Sets text outline border size. Where 0 - is no outline, and 1 - is the maximum outline size.
Name | Type | Description |
---|---|---|
outline | number | Text outline size. |
- Source
setOutlineColor(r, g, b, a)
Sets text outline color.
Name | Type | Description |
---|---|---|
r | number | Red. |
g | number | Green. |
b | number | Blue. |
a | number | Alpha. |
- Source
setOutlineColor4v(rgba)
Sets text outline color.
Name | Type | Description |
---|---|---|
rgba | Vec4 | Color vector. |
- Source
setOutlineColorHTML(color)
Sets text outline color HTML string.
Name | Type | Description |
---|---|---|
color | string | HTML string color. |
- Source
setOutlineOpacity(opacity)
Sets outline opacity. Actually outline color alpha value.
Name | Type | Description |
---|---|---|
opacity | number | Outline opacity. |
- Source
setPickingColor3v(color)
Sets billboard picking color.
Name | Type | Description |
---|---|---|
color | Vec3 | Picking color. |
- Overrides
- Source
setPosition(x, y, z)
Sets billboard position.
Name | Type | Description |
---|---|---|
x | number | X coordinate. |
y | number | Y coordinate. |
z | number | Z coordinate. |
- Overrides
- Source
setPosition3v(position)
Sets billboard position.
Name | Type | Description |
---|---|---|
position | Vec3 | Cartesian coordinates. |
- Overrides
- Source
setRotation(rotation)
Sets billboard screen space rotation in radians.
Name | Type | Description |
---|---|---|
rotation | number | Screen space rotation in radians. |
- Overrides
- Source
setRtl(isRTL)
Change text direction.
Name | Type | Description |
---|---|---|
isRTL | boolean | Text string. |
- Source
setSize(size)
Sets label font size in pixels.
Name | Type | Description |
---|---|---|
size | number | Label size in pixels. |
- Source
setText(text)
Set label text.
Name | Type | Description |
---|---|---|
text | string | Text string. It can't be bigger than maximum labelHandler _maxLetters value. |
- Source
setVisibility(visibility)
Sets billboard visibility.
Name | Type | Description |
---|---|---|
visibility | boolean | Visibility flag. |
- Overrides
- Source
(async) update()
Updates label parameters.
- Source