enum

CryTUI::Widgets::LinearStyle

Inherits Enum < Comparable < Value < Object

The glyph pair a LinearSpinner draws lit and unlit slots with.

Constants

Classic = 0
Square = 1
Diamond = 2
Bar = 3
Braille = 4
Arrow = 5

Instance methods

arrow?

Returns true if this enum value equals Arrow

Source
bar?

Returns true if this enum value equals Bar

Source
braille?

Returns true if this enum value equals Braille

Source
classic?

Returns true if this enum value equals Classic

Source
columns_per_slot

Every style occupies exactly one terminal column: all the glyphs above are East-Asian-Width Narrow or Ambiguous, both of which Western terminals render single-width.

Source
diamond?

Returns true if this enum value equals Diamond

Source
square?

Returns true if this enum value equals Square

Source
symbols(direction : Direction) : Tuple(String, String)

{lit, unlit}. Only Arrow cares about the axis -- it points along it.

Source