simvx.core.nodes_2d.text¶
Text2D – screen-pinned text drawn through the one 2D text builder (P3a).
Module Contents¶
Classes¶
Screen-pinned text for HUD / UI. Works in both 2D and 3D modes. |
API¶
- class simvx.core.nodes_2d.text.Text2D(**kwargs)[source]¶
Bases:
simvx.core.nodes_2d.node2d.Node2DScreen-pinned text for HUD / UI. Works in both 2D and 3D modes.
Text2D draws through the ONE 2D text builder (
renderer.draw_text): the item path emits a native kerned MSDFGLYPHitem, and theDraw2D_draw_recursivewalk (editor play-mode / web) appends a matchingTEXTop – both from the same layout, so they render identically.The text is screen-pinned: it draws in screen space (
screen_space=True) at itsposition(the inherited :class:Node2DVec2), so it stays fixed while a Camera2D pans the world – the usual HUD behaviour.font_scaleis a multiplier on the 16px logical em (scale=1-> 16 logical px).Common port patterns are first-class node Properties:
outline/outline_colour– a readable halo on any background.rect– position + align inside a box instead of at a point.fit_to_width– shrinkfont_scaleso the text fitsrectwidth.
Initialization
- text¶
‘Property(…)’
- font_scale¶
‘Property(…)’
- colour¶
‘Colour(…)’
- align¶
‘Property(…)’
- outline¶
‘Property(…)’
- outline_colour¶
‘Colour(…)’
- rect¶
‘Property(…)’
- fit_to_width¶
‘Property(…)’
- position¶
‘_SpatialVecProperty(…)’
- rotation¶
‘Property(…)’
- scale¶
‘_SpatialVecProperty(…)’
- z_index¶
‘Property(…)’
- z_as_relative¶
‘Property(…)’
- render_layer¶
‘Property(…)’
- set_render_layer(index: int, enabled: bool = True) None¶
- is_on_render_layer(index: int) bool¶
- property absolute_z_index: int¶
- property rotation_degrees: float¶
- property world_position: simvx.core.math.types.Vec2¶
- property world_rotation: float¶
- property world_scale: simvx.core.math.types.Vec2¶
- property world_transform: tuple[simvx.core.math.types.Vec2, simvx.core.math.types.Vec2, float]¶
- property forward: simvx.core.math.types.Vec2¶
- property right: simvx.core.math.types.Vec2¶
- translate(offset: tuple[float, float] | numpy.ndarray)¶
- rotate(radians: float)¶
- rotate_deg(degrees: float)¶
- look_at(target: tuple[float, float] | numpy.ndarray)¶
- transform_points(points: list[simvx.core.math.types.Vec2]) list[simvx.core.math.types.Vec2]¶
- draw_polygon(renderer, points: list[simvx.core.math.types.Vec2], closed=True, colour=None)¶
- wrap_screen(margin: float = 20)¶
- hdr¶
‘Property(…)’
- property transform_render_dirty: bool¶
- strict_errors: ClassVar[bool]¶
True
- script_error_raised¶
‘Signal(…)’
- dynamic: bool¶
False
- classmethod __init_subclass__(**kwargs)¶
- property name: str¶
- property update_mode: simvx.core.descriptors.UpdateMode¶
- property visible: bool¶
- reset_error() None¶
- add_child(node: simvx.core.node.Node) simvx.core.node.Node¶
- remove_child(node: simvx.core.node.Node)¶
- reparent(new_parent: simvx.core.node.Node)¶
- get_node(path: str) simvx.core.node.Node¶
- get_node_or_none(path: str) simvx.core.node.Node | None¶
- find(target, *, direct: bool = False)¶
- find_all(target, *, direct: bool = False)¶
- walk(*, include_self: bool = True) collections.abc.Iterator[simvx.core.node.Node]¶
- property path: str¶
- add_to_group(group: str)¶
- remove_from_group(group: str)¶
- is_in_group(group: str) bool¶
- on_ready() None¶
- on_enter_tree() None¶
- on_exit_tree() None¶
- on_update(dt: float) None¶
- on_fixed_update(dt: float) None¶
- on_picked(event: simvx.core.events.InputEvent) None¶
- on_unhandled_input(event: simvx.core.events.TreeInputEvent) None¶
- start_coroutine(gen: simvx.core.descriptors.Coroutine) simvx.core.descriptors.CoroutineHandle¶
- stop_coroutine(gen_or_handle)¶
- queue_redraw() None¶
- property render_dirty: bool¶
- clear_children()¶
- destroy()¶
- call_deferred(method: collections.abc.Callable[..., Any], *args: Any) None¶
- property app¶
- property tree: simvx.core.scene_tree.SceneTree¶
- property physics¶
- property physics_2d¶
- __getitem__(key: str)¶
- classmethod get_properties() dict[str, simvx.core.descriptors.Property]¶
- __repr__()¶