espace Posted July 14, 2017 Report Share Posted July 14, 2017 hi, if i use the arc and i would update the endAngle how do you do ? i try with a loop but it lag a lot. it seems that it redraw a new arc each time.. thanks. function create() { var graphics = game.add.graphics(game.world.centerX, game.world.centerY); graphics.lineStyle(0); graphics.beginFill(0xFF3300); //posx,posy,radius,startAngle,endAngle,clockwise graphics.arc(-100, -100, 135, game.math.degToRad(0), game.math.degToRad(90), true); graphics.endFill(); } Quote Link to comment Share on other sites More sharing options...
hotfeet Posted July 14, 2017 Report Share Posted July 14, 2017 not sure if this is 100 percent what you're looking for but m1erickson has a really nice jsfiddle on it at http://jsfiddle.net/m1erickson/mYKp5/ that i have used before. it is quite clean imo. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.