LaunchSite
new community map - LaunchSite by Des Boot added a short color animation after grabbing basic power ups reduced overall damage done to player by ~6% commodities exchange spawns 5-10 -> 6-12 power ups on cancel residual dipolar coupling spawns 5 -> 6 coupling power ups bots maintain relative position to player after the no camera tracking teleport for portals and falling off level the once every 7 seconds stuck check now also check to see if you stay stuck for 3 seconds before resetting you.
This commit is contained in:
10
js/player.js
10
js/player.js
@@ -921,13 +921,13 @@ const m = {
|
||||
|
||||
//hip joint
|
||||
ctx.beginPath();
|
||||
ctx.arc(m.hip.x, m.hip.y, 10, 0, 2 * Math.PI);
|
||||
ctx.arc(m.hip.x, m.hip.y, 9, 0, 2 * Math.PI);
|
||||
//knee joint
|
||||
ctx.moveTo(m.knee.x + 6, m.knee.y);
|
||||
ctx.arc(m.knee.x, m.knee.y, 6, 0, 2 * Math.PI);
|
||||
ctx.moveTo(m.knee.x + 5, m.knee.y);
|
||||
ctx.arc(m.knee.x, m.knee.y, 5, 0, 2 * Math.PI);
|
||||
//foot joint
|
||||
ctx.moveTo(m.foot.x + 5, m.foot.y + 1);
|
||||
ctx.arc(m.foot.x, m.foot.y + 1, 5, 0, 2 * Math.PI);
|
||||
ctx.moveTo(m.foot.x + 4, m.foot.y + 1);
|
||||
ctx.arc(m.foot.x, m.foot.y + 1, 4, 0, 2 * Math.PI);
|
||||
ctx.fillStyle = m.fillColor;
|
||||
ctx.fill();
|
||||
ctx.lineWidth = 2;
|
||||
|
||||
Reference in New Issue
Block a user