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:
landgreen
2023-11-05 09:49:31 -08:00
parent 1129b9d0d5
commit 3844d00ef6
6 changed files with 528 additions and 56 deletions

View File

@@ -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;