How to use the X3DLoader function from three

Find comprehensive JavaScript three.X3DLoader code examples handpicked from public code repositorys.

18
19
20
21
22
23
24
25
26
27
httpRequest.onreadystatechange = () => {
    if (httpRequest.readyState === XMLHttpRequest.DONE) {
        if (httpRequest.status === 200) {
            var xmlText = httpRequest.responseText;

            var loader = new THREE.X3DLoader();
            const scene = loader.parse(xmlText);
            var light = new THREE.AmbientLight( 0x404040 ); // soft white light
            scene.add( light );
            renderer.render(scene, camera);
fork icon10
star icon13
watch icon5

Other functions in three

Sorted by popularity

function icon

three.Vector3 is the most popular function in three (22341 examples)