Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a newbie for this technology, webGL or CopperLicht. But trying to learn bit by bit.

I took this example,

http://apachepersonal.miun.se/~rogols/teaching/dt069g/Copperlicht-exempel.html

and trying to add mouse listeners so that I can drag and turn myself the cube. I did the following, and never happening for me.

This is my code:

[quote]

function CopperlichtStart() {

            var engine = new CL3D.CopperLicht('glcanvas');
            if (!engine.initRenderer())
                return; // this browser doesn't support WebGL


            scene = new CL3D.Scene();
            engine.addScene(scene);


            scene.setBackgroundColor(CL3D.createColor(1, 0, 0, 0));

            scene.setRedrawMode(CL3D.Scene.REDRAW_EVERY_FRAME);


            var boxnode = new CL3D.CubeSceneNode();
            scene.getRootSceneNode().addChild(boxnode);



            boxnode.getMaterial(0).Tex1 = engine.getTextureManager().getTexture("resources/girl.jpg", true);




            boxnode.addAnimator(new CL3D.AnimatorRotation(new CL3D.Vect3d(0.0,-0.15,0.15)));


            var cam = new CL3D.CameraSceneNode();

            cam.Pos.X = 0;
            cam.Pos.Y = 0;
            cam.Pos.Z = 20;

            var canvas = document.getElementById("glcanvas");
            var AR = canvas.width / canvas.height;
            cam.setAspectRatio(AR);

            cam.setFov(45);
            scene.getRootSceneNode().addChild(cam);
            scene.setActiveCamera(cam);

            var vshaderScript = document.getElementById("vshader");
            var fshaderScript = document.getElementById("fshader");
            var newMaterialType = engine.getRenderer().createMaterialType(vshaderScript.text, fshaderScript.text);
            if (newMaterialType != -1)
                boxnode.getMaterial(0).Type = newMaterialType;
            else
                alert('Cannot create Shaders'); 
        }

[/quote]

Can someone please explain (if you can, please in terms of code), how can i do this? I blew my mind for this since 2 days. When I'm doing in general JS style, my mouse events are not firing. I even tried to register the listeners with 3D engine like:

[quote] var dragging = false;

        document. = function(event)
        {
            if (dragging)
         {

                boxnode.Pos.X+=event.clientX;
                boxnode.Pos.y+=event.clientY;

         }
        engine.handleMouseMove(event);
        };

        document. = function(event)
        {
            dragging = false;
        engine.handleMouseUp(event);
        };

        document. = function(event)
        {
            dragging = true;
            boxnode.Pos.X+=event.clientX;
            boxnode.Pos.y+=event.clientY;
            engine.handleMouseDown(event);
        };

[/quote]

yet no hopes..:(. I'm really thankful, if someone explains me how I can do this.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.