如何调整 A-Frame <a-link> 中标题属性的字体大小

How can I resize the font of the title attribute in a A-Frame <a-link>

我创建了一个元素 document.createElement('a-link') 然后我将 title 属性设置为: setAttribute('title','TITLE') 我可以看到标题但是字体太小了。 有没有办法设置字体大小?

您可以进入 a-link 实体并且 change the text size:

linkEl.querySelector('[text]').setAttribute('scale', '2 2 2');

Checkout the code on glitch