15 lines
		
	
	
	
		
			489 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			489 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.client.renderer.entity.state;
 | |
| 
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| import net.minecraft.core.Direction;
 | |
| import net.minecraft.world.entity.decoration.PaintingVariant;
 | |
| import org.jetbrains.annotations.Nullable;
 | |
| 
 | |
| @Environment(EnvType.CLIENT)
 | |
| public class PaintingRenderState extends EntityRenderState {
 | |
| 	public Direction direction = Direction.NORTH;
 | |
| 	@Nullable
 | |
| 	public PaintingVariant variant;
 | |
| 	public int[] lightCoords = new int[0];
 | |
| }
 |