您好我正在使用主分支进行aframe,新文本“component”似乎低于它所驻留的实体的分配高度,并带有一些不可见的东西。 Codepen http://codepen.io/anon/pen/PWQXRP并尝试移动到实体下方。这里的代码是从360-image-gallery-boilerplate repo
修改的$(document).ready(function(){
var len = $("#MTPL_4").attr("onchange").length;
alert($("#MTPL_4").attr("onchange").substring(3, len-1));
})
新到aframe,所以不知道我做错了什么
答案 0 :(得分:0)
https://aframe.io/docs/master/components/text.html#scaling-geometry-to-fit-text
缩放几何以适合文本
要使几何图形与文本一起自动缩放,请将几何图形组件的width和height属性设置为auto,并根据需要设置文本组件的宽度。在此示例中,平面的宽度将设置为4个单位,其高度将设置为与文本的实际高度相匹配:
<a-entity
geometry="primitive: plane; height: auto; width: auto"
material="color: blue"
text="width: 4; value: This text will be 4 units wide."></a-entity>
请注意,如果几何图形和文本都没有指定宽度,则文本宽度属性将默认为1个单位(米),几何宽度属性也将变为1个单位。
<a-entity
geometry="primitive: plane"
material="color: blue"
text="value: 1-wide\ndefault."></a-entity>