I am trying to put a text next to an object then rotate it by 90 degrees. Below is the portion of the code I used.
<a-sphere
color="green"
look-at="[gps-camera]"
scale="0.49205916205718183 0.49205916205718183 0.49205916205718183"
gps-entity-place="latitude: 3.xxxxx; longitude: 101.xxxxx;">
<a-text
look-at="[gps-camera]"
value="Point 1"
color="yellow"
rotation="0 90 0"
scale="7, 7"
position="-2.5 4 0"
z-offset="3"
faceUser: true;>
</a-text></a-sphere>
<a-sphere
The result is this:
What I want to achieve is this (please ignore the background):
I tried to change all the values in this expression but nothing happens:
rotation="0 90 0"

