10 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.client.renderer.block.model;
 | |
| 
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| import net.minecraft.core.Direction;
 | |
| import org.joml.Vector3f;
 | |
| 
 | |
| @Environment(EnvType.CLIENT)
 | |
| public record BlockElementRotation(Vector3f origin, Direction.Axis axis, float angle, boolean rescale) {
 | |
| }
 |