9 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.client.animation;
 | |
| 
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| import org.joml.Vector3f;
 | |
| 
 | |
| @Environment(EnvType.CLIENT)
 | |
| public record Keyframe(float timestamp, Vector3f target, AnimationChannel.Interpolation interpolation) {
 | |
| }
 |