TextFont

from panda3d.core import TextFont
class TextFont

Bases:

Bases: TypedReferenceCount, Namable

An encapsulation of a font; i.e. a set of glyphs that may be assembled together by a TextNode to represent a string of text.

This is just an abstract interface; see StaticTextFont or DynamicTextFont for an actual implementation.

Inheritance diagram

Inheritance diagram of TextFont

enum RenderMode
enumerator RM_texture = 0

Each glyph is a single textured rectangle

enumerator RM_wireframe = 1

Each glyph is a lot of line segments

enumerator RM_polygon = 2

Each glyph is a lot of triangles

enumerator RM_extruded = 3

a 3-D outline, like a cookie cutter

enumerator RM_solid = 4

combination of RM_extruded and RM_polygon

enumerator RM_distance_field = 5
enumerator RM_invalid = 6

Returned by string_render_mode() for an invalid match.

static getClassType() TypeHandle
getGlyph(character: int) TextGlyph

Gets the glyph associated with the given character code, as well as an optional scaling parameter that should be applied to the glyph’s geometry and advance parameters. Returns the glyph on success. On failure, it may still return a printable glyph, or it may return NULL.

getKerning(first: int, second: int) float

Returns the amount by which to offset the second glyph when it directly follows the first glyph. This is an additional offset that is added on top of the advance.

getLineHeight() float

Returns the number of units high each line of text is.

getSpaceAdvance() float

Returns the number of units wide a space is.

isValid() bool

Returns true if the font is valid and ready to use, false otherwise.

property line_height float

Returns/Changes the number of units high each line of text is.

makeCopy() TextFont
setLineHeight(line_height: float)

Changes the number of units high each line of text is.

setSpaceAdvance(space_advance: float)

Changes the number of units wide a space is.

property space_advance float

Returns/Changes the number of units wide a space is.

property valid bool

Returns true if the font is valid and ready to use, false otherwise.

write(out: ostream, indent_level: int)