Currently the text component supports only a single texture page. For chinese characters, even the most common ~1000 characters require 40 texture pages using an msdf bmfont generator.
Related: https://github.com/aframevr/aframe/blob/master/src/components/text.js#L209-L211
Here is a zip with what should be the most common 1000 characters, in the Microsoft YaHei font:
npm install -g msdf-bmfont-xml
# simple test
msdf-bmfont -f json yahei/yahei.ttf -i yahei/charset-test.txt --pot --square
# 1000 characters
msdf-bmfont -f json yahei/yahei.ttf -i yahei/charset-1000.txt --pot --square
As long as I keep the charset small, this method does work:

Should also point out that those 1000 characters are 2.4 MB in this format, so users may still need to generate these fonts specially for each scene unfortunately.
why not use the system fonts with canvas filltext?
the chinese Font should be installed on the System
(https://www.html5canvastutorials.com/tutorials/html5-canvas-text-font-size/)
That sounds like a good option. Anyone have thoughts on whether:
text componentSDF is the default now because it is performant and looks nice, but it is unfortunately harder to use with some languages.
@donmccurdy You got a lot further than I did!
Apparently, game devs generate fonts with the exact characters needed for a given script. I'm not sure if supporting every character is feasible.
Apparently, game devs generate fonts with the exact characters needed for a given script. I'm not sure if supporting every character is feasible.
Hm yeah that sounds realistic. It would be nice to have a web-based tool where you can autogenerate that JSON for some common free fonts automatically, with your own charset. Unfortunately getting msdf-bmfont-xml running on the cloud seems to be a bit inconvenient. :/
I've put together a little web tool for generating these MSDF fonts. It will support special characters correctly, and you can provide your own fonts if you wish.
http://msdf-bmfont.donmccurdy.com/
^note, this requires the negate: false setting on A-Frame's text component, which is only available on the master branch and will be released with 0.8.0.
Will have http://msdf-bmfont.donmccurdy.com/ be the soluton?
https://codesandbox.io/s/3v9z2z34p6
testing different variants
canvas-text
a-text (msdf font)
aframe-text-geometry-component
Most helpful comment
I've put together a little web tool for generating these MSDF fonts. It will support special characters correctly, and you can provide your own fonts if you wish.
http://msdf-bmfont.donmccurdy.com/
^note, this requires the
negate: falsesetting on A-Frame'stextcomponent, which is only available on the master branch and will be released with 0.8.0.