mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-22 15:47:57 -05:00
Remove reundant modifiers
This commit is contained in:
parent
0275a7756e
commit
9ff0718ada
1 changed files with 1 additions and 1 deletions
|
@ -25,5 +25,5 @@ import net.fabricmc.indigo.Indigo;
|
|||
interface AoVertexClampFunction {
|
||||
float clamp(float x);
|
||||
|
||||
static final AoVertexClampFunction CLAMP_FUNC = Indigo.FIX_EXTERIOR_VERTEX_LIGHTING ? x -> x < 0f ? 0f : (x > 1f ? 1f : x) : x -> x;
|
||||
AoVertexClampFunction CLAMP_FUNC = Indigo.FIX_EXTERIOR_VERTEX_LIGHTING ? x -> x < 0f ? 0f : (x > 1f ? 1f : x) : x -> x;
|
||||
}
|
Loading…
Reference in a new issue