<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="https://aframe.io/releases/1.1.0/aframe.min.js"></script> </head> <body> <a-scene> <a-entity> <a-entity position="2 2 -10" geometry="primitive: sphere" material="color: red"></a-entity> <a-animation attribute="rotation" dur="10000" fill="forwards" to="0 360 0" repeat="indefinite"></a-animation> </a-entity> </a-scene> </body> </html>
<a-animation> has been deprecated in favor of the animation component:
<a-animation>
<a-box position="-1 1.6 -5" animation="property: position; to: 1 8 -10; dur: 2000; easing: linear; loop: true" color="tomato"></a-box>
1.4m articles
1.4m replys
5 comments
57.0k users