Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

121
Views
object adds velocity instead of maintaining in opposite direct

I have a group of objects i want to rotate , there is a button which should onclick change from left to right and a stop button which should stop the current group position at its current location , however every time i click rotate , it changes direction but increases in speed even though it is bound to a slider, ive tried calling the animation frame last and cancelling it on each call but nothing works

            var speedslider = document.getElementById("speedinput");
            var direction = true;
            var stopped = true;
            
            speedslider.addEventListener("change",DirectionBTN.onclick);
            zoomOutButton.addEventListener("change", zoomOutFunction);
            speedslider.addEventListener("change",StopStartBTN.onclick);
            
            //rotation of group
            const rotateGroup = function() 
            {
                if(stopped == true){
                    group.rotation.y =!group.rotation.y
                }
                if(direction == true){
                    group.rotation.y += speedslider.value/1000;
                    requestAnimationFrame(rotateGroup)
                    
                }
                if(direction == false){
                    group.rotation.y -= speedslider.value/1000;
                    requestAnimationFrame(rotateGroup)
                }
            };
        //start rotation left
            StopStartBTN.onclick = function() {
                stopped = !stopped
                rotateGroup()
            };
            DirectionBTN.onclick = function() {
                direction = !direction;
                rotateGroup();
            };

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!