Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 864 Bytes

text.mdx

File metadata and controls

28 lines (22 loc) · 864 Bytes
title sourcecode
Text
src/core/Text.tsx

  • Hi-quality text rendering w/ signed distance fields (SDF) and antialiasing, using troika-3d-text. All of troikas props are valid! Text is suspense-based!

    <Text color="black" anchorX="center" anchorY="middle">
      hello world!
    </Text>

    Text will suspend while loading the font data, but in order to completely avoid FOUC you can pass the characters it needs to render.

    <Text font={fontUrl} characters="abcdefghijklmnopqrstuvwxyz0123456789!">
      hello world!
    </Text>