Hello DeepBlueApps this project is made for me, what i have done is interpolate the object to different positions , but what i want is a clear move like a sphere moving around the barrel, i don´t know if this is possible.
Ah! I see, you want something to move in a circle, I was just confused by all the different terms ('angular', 'invisible sphere', 'clear move' etc), but you just want something to move in a circle ?
If so then try this:
Constrain X position to AAA*cos(self.time*BBB)+CCC Constrain Y position to AAA*sin(self.time*BBB)+CCC
AAA = radius of circle. BBB = speed. CCC = the centre point.
Comments
Should be simple enough for you to do?
Darren.
For example, what is a 'clear move' ?
What does an 'invisible sphere' move like ?
I'll take a guess that what @agueis actually wants is an orbit around the barrel... yes?
New to GameSalad? (FAQs) | Tutorials | Templates | Greenleaf Games | Educator & Certified GameSalad User
If so then try this:
Constrain X position to AAA*cos(self.time*BBB)+CCC
Constrain Y position to AAA*sin(self.time*BBB)+CCC
AAA = radius of circle.
BBB = speed.
CCC = the centre point.