aframevr / aframe-inspector

:mag: Visual inspector tool for A-Frame. Hit *<ctrl> + <alt> + i* on any A-Frame scene.
https://aframe.io/aframe-inspector/examples/
MIT License
654 stars 201 forks source link

Inconsistent core entity attribute ordering #411

Closed jsantell closed 7 years ago

jsantell commented 7 years ago

Possibly related to #303, but the ordering for core entity properties (position, rotation, scale, etc.) are inconsistenly ordered, I think by left-to-right assignment in the element. When manually editing values between several entities, I frequently edit the wrong field (expecting the ordering to be position, rotation, scale)

ordering

fernandojsg commented 7 years ago

Do you mean that depending on the entity that you select the order is different?

jsantell commented 7 years ago

Yes, sorry; the gif above is toggling between two different entities

fernandojsg commented 7 years ago

@jsantell I fixed it, I forgot to sort the common components as we do with the rest of the components :angel: good catch!

jsantell commented 7 years ago

@fernandojsg thanks!