原始图像在平面显示一个图像。它是一个实体规定几何元素geometry 的几何平面plane
。
例子
<a-scene>
<a-assets>
<img id="my-image" src="image.png">
</a-assets>
<!-- Using the asset management system. -->
<a-image src="#my-image"></a-image>
<!-- Defining the URL inline. Not recommended but more comfortable for web developers. -->
<a-image src="another-image.png"></a-image>
</a-scene>
属性
注意图像原始继承了常见的网格属性mesh attributes。
属性 | 组件映射 | 默认值 |
---|---|---|
height | geometry.height | 1.75 |
width | geometry.width | 1.75 |
Fine-Tuning
确保图像不扭曲拉伸要求我们话设置宽度width
和高度height
。
<a-image src="#logo" width="200" height="100"></a-image>