Flywheel/src/main/java/com/jozufozu/flywheel/util/RenderMath.java
Jozufozu 0c611dbcb3 4d chest
- Refactor InstancedRenderRegistry to allow for 3rd party TEs to have instances
 - Add ChestInstance, incomplete but there
 - Add basic api for building vanilla formatted models
 - Better instance factory registration
2021-07-09 13:24:26 -07:00

8 lines
130 B
Java

package com.jozufozu.flywheel.util;
public class RenderMath {
public static byte nb(float f) {
return (byte) (f * 127);
}
}