phaser place on ellipse
Phaser Place on Ellipse
If you are trying to place your Phaser game object on an elliptical path, then you may want to consider using the following formula:
x = centerX + Math.cos(angle) * a;
y = centerY + Math.sin(angle) * b;
Explanation:
* centerX and centerY represent the center of your ellipse.