var circle = new Phaser.Geom.Circle(250, 300, 150);
graphics.strokeCircleShape(circle);
// https://github.com/photonstorm/phaser/blob/v3.51.0/src/geom/circle/GetPoints.js
var points = circle.getPoints(6);
for (var i = 0; i < points.length; i++) {
pointValue = points[i];
graphics.fillCircle(pointValue.x, pointValue.y, 6);
// ...
}
When i generate inside create function This is My First point “newArray[0]”
I use getPoints Not getPoint:
points = circle.getPoints(6);
Like samme suggest Inside in custom function i wrote this, where 0 equals 0 degrees, 0.5 equals 180 degrees and 1 equals 360 around the circle, and newArray[0] is the first point at position 2pi, but the point not move, Why?
Sorry samme, can you help me one more time or someone else here on the forum? I was not successful in your suggestion, I cleaned all the code that I had and put it down here in order to facilitate your help.Thanks in advanced.
var config = {
width: 400,
height: 400,
backgroundColor: '0x000000',
type: Phaser.AUTO,
scale: {
mode: Phaser.Scale.FIT,
autoCenter: Phaser.Scale.CENTER_BOTH,
},
parent: 'phaser-example',
scene: {
create: create,
update: update
}
};
var game = new Phaser.Game(config);
var circlegraphics;
var pointsgraphics;
// Arrays
var points = [];
var newArray = [];
function create ()
{
circlegraphics = this.add.graphics({ fillStyle: { color: 0xAAFF00 }, lineStyle: { width: 2, color: 0xfff000} });
pointsgraphics = this.add.graphics({ fillStyle: { color: 0xff00ff }, lineStyle: { width: 2, color: 0xff00ff} });
// #### START create circle
var circle = new Phaser.Geom.Circle(100, 100, 70);
circlegraphics.strokeCircleShape(circle);
// #### START create getPoints
points = circle.getPoints(2);
// #### START loop
for (var i = 0; i < points.length; i++) {
pointValue = points[i];
pointsgraphics.fillCircle(pointValue.x, pointValue.y, 5);
// samme suggestion
newArray.push(circle.getPoint(0.5));
}
console.log("\npointValue.x = " +pointValue.x + " AND pointValue.y = " +pointValue.y);
console.log("\npointValue length is " +pointValue);
console.log("\nnewArray length is " +newArray);
}
function update ()
{
}