Pixel-Composer/scripts/safe_operation/safe_operation.gml

3 lines
72 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
function safe_mod(numb, modd) {
return modd == 0? numb : numb % modd;
}