Images on plane Object
Display Images on a plane Surface
It is also possible to place an image on a plane object, with no depth:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<a-image id="box_square" position="-1 0.5 -3" rotation="0 45 0" color="#FFF" src="images/bulbasaur.gif" ></a-image> <a-image id="box_rect" position="0 1.25 -5" height="1" width="5" depth="1" rotation="0 45 0" color="#FF0" src="images/bulbasaur.gif" repeat="5 1" ></a-image> |
It works the same as described in the previous topic, except the image is displayed only on the plane(s) and not on all sides.
Previous TopicNext Topic