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

primitives missing from scene graph #328

Closed ngokevin closed 8 years ago

ngokevin commented 8 years ago

Open inspector on https://samsunginternet.github.io/a-frame-demos/racer/

Under each track, there should be <a-curve-point> primitives.

 <a-curve id="track1" curve="CatmullRom">
        <a-curve-point position="0 -4 0">
            <a-curve-point position="-30 8 10">
                <a-curve-point position="-30 -6 30">
                    <a-curve-point position="0 8 40">
                        <a-curve-point position="0 -2 40">
                            <a-curve-point position="0 25 50">

                            </a-curve-point>
                        </a-curve-point>
                    </a-curve-point>
                </a-curve-point>
            </a-curve-point>
        </a-curve-point>
    </a-curve>