mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-15 10:17:39 +07:00
Bugfixes
This commit is contained in:
@ -24,6 +24,7 @@ public enum LogicOp{
|
||||
min("min", Math::min),
|
||||
atan2("atan2", (x, y) -> Mathf.atan2((float)x, (float)y) * Mathf.radDeg),
|
||||
dst("dst", (x, y) -> Mathf.dst((float)x, (float)y)),
|
||||
noise("noise", LExecutor.noise::rawNoise2D),
|
||||
|
||||
not("not", a -> ~(int)(a)),
|
||||
abs("abs", a -> Math.abs(a)),
|
||||
|
Reference in New Issue
Block a user