Hundreds of features to explore
Games made in Construct
Your questions answered
Popular & trusted by schools and Universities world-wide
Construct 3 runs in the browser & works offline
Students do not need accounts with us
Our educational partners
Free education resources to use in the classroom
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
Hello,
So I have a circle and a point rotating on that circle ( prntscr . com/6e7foz ) and when a player press a button to increase that speed . How do I make it rotate exactly on that circle with the speed given ? I have tryed multiple ways on this forum but all of those ecuations had the speed used to determine the location of the point ( when I increased the speed the point would teleport further) (ex. of what I have used prntscr . com/6e7ggn). How can I do it?
Develop games in your browser. Powerful, performant & highly capable.
variable 'rot' = 0
variable 'speed' = X
every tick: Add to 'rot' -> 'speed'
Point.X = sin(rot) * radius
Point.Y = cos(rot) * radius