fix tsunami velocity

This commit is contained in:
An Orbit 2024-02-13 14:56:28 -05:00 committed by GitHub
parent aee4b2444c
commit 4e32e3774b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 7 deletions

View File

@ -2136,9 +2136,9 @@ try {
}; };
}; };
function capitalizeFirstLetter(string,locale=null) { function capitalizeFirstLetter(string,locale=null) {
return string[0][locale ? "toLocaleUpperCase" : "toUpperCase"](locale) + string.slice(1) return string[0][locale ? "toLocaleUpperCase" : "toUpperCase"](locale) + string.slice(1)
}; };
//COLOR MANIPULATION TOOLS ## //COLOR MANIPULATION TOOLS ##
@ -36321,7 +36321,7 @@ Make sure to save your command in a file if you want to add this preset again.`
newPixel.vx ??= 0; newPixel.vx ??= 0;
newPixel.vy ??= 0; newPixel.vy ??= 0;
newPixel.vx += (pixel.direction * 5) newPixel.vx += (pixel.direction * 5)
newPixel.vy += 3; newPixel.vy -= 3;
}; };
}; };
pixel.fromX += pixel.direction pixel.fromX += pixel.direction
@ -36406,7 +36406,7 @@ Make sure to save your command in a file if you want to add this preset again.`
newPixel.vx ??= 0; newPixel.vx ??= 0;
newPixel.vy ??= 0; newPixel.vy ??= 0;
newPixel.vx += (pixel.direction * 13) newPixel.vx += (pixel.direction * 13)
newPixel.vy += 6; newPixel.vy -= 6;
}; };
}; };
pixel.fromX += pixel.direction pixel.fromX += pixel.direction
@ -36503,7 +36503,7 @@ Make sure to save your command in a file if you want to add this preset again.`
newPixel.vx ??= 0; newPixel.vx ??= 0;
newPixel.vy ??= 0; newPixel.vy ??= 0;
newPixel.vx += (pixel.direction * 6) newPixel.vx += (pixel.direction * 6)
newPixel.vy += 3; newPixel.vy -= 3;
}; };
}; };
pixel.fromX += pixel.direction pixel.fromX += pixel.direction
@ -36598,7 +36598,7 @@ Make sure to save your command in a file if you want to add this preset again.`
newPixel.vx ??= 0; newPixel.vx ??= 0;
newPixel.vy ??= 0; newPixel.vy ??= 0;
newPixel.vx += (pixel.direction * 8) newPixel.vx += (pixel.direction * 8)
newPixel.vy += 5; newPixel.vy -= 5;
}; };
}; };
pixel.fromX += pixel.direction pixel.fromX += pixel.direction