Advertisement
Guest User

Untitled

a guest
Feb 10th, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.87 KB | None | 0 0
  1. package lumien.randomthings.client;
  2.  
  3. import java.util.HashMap;
  4. import java.util.Iterator;
  5. import java.util.Map;
  6.  
  7. import net.minecraft.block.Block;
  8. import net.minecraft.block.state.IBlockState;
  9. import net.minecraft.client.renderer.block.statemap.IStateMapper;
  10. import net.minecraft.client.resources.model.ModelResourceLocation;
  11.  
  12. public class FocusStateMapper implements IStateMapper
  13. {
  14.     HashMap<IBlockState, ModelResourceLocation> models;
  15.  
  16.     public FocusStateMapper(Block b, ModelResourceLocation model)
  17.     {
  18.         models = new HashMap<IBlockState, ModelResourceLocation>();
  19.         Iterator iterator = b.getBlockState().getValidStates().iterator();
  20.         while (iterator.hasNext())
  21.         {
  22.             IBlockState iblockstate = (IBlockState) iterator.next();
  23.             models.put(iblockstate, model);
  24.         }
  25.     }
  26.  
  27.     @Override
  28.     public Map putStateModelLocations(Block block)
  29.     {
  30.         return models;
  31.     }
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement