Source code for simvx.core.port_helpers

"""Helpers commonly used when porting games into SimVX.

Modules in here are numpy-only and back-end agnostic: they produce data
(textures, audio buffers, mesh arrays) that other engine layers consume.
"""

from .procedural_textures import (
    checkerboard,
    glyph,
    packed_grid,
    solid,
    sprite_atlas,
    text_strip,
)

__all__ = [
    "checkerboard",
    "glyph",
    "packed_grid",
    "solid",
    "sprite_atlas",
    "text_strip",
]