Java Code Examples for net.minecraftforge.common.property.Properties#StaticProperty
The following examples show how to use
net.minecraftforge.common.property.Properties#StaticProperty .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TidalGenerator.java From EmergingTechnology with MIT License | 4 votes |
@Override public ExtendedBlockState createBlockState() { return new ExtendedBlockState(this, new IProperty[] { FACING, Properties.StaticProperty }, new IUnlistedProperty[] { Properties.AnimationProperty }); }
Example 2
Source File: Scrubber.java From EmergingTechnology with MIT License | 4 votes |
@Override public ExtendedBlockState createBlockState() { return new ExtendedBlockState(this, new IProperty[] { FACING, Properties.StaticProperty }, new IUnlistedProperty[]{ Properties.AnimationProperty }); }
Example 3
Source File: Harvester.java From EmergingTechnology with MIT License | 4 votes |
@Override public ExtendedBlockState createBlockState() { return new ExtendedBlockState(this, new IProperty[] { FACING, Properties.StaticProperty }, new IUnlistedProperty[] { Properties.AnimationProperty }); }
Example 4
Source File: Wind.java From EmergingTechnology with MIT License | 4 votes |
@Override public ExtendedBlockState createBlockState() { return new ExtendedBlockState(this, new IProperty[] { FACING, Properties.StaticProperty }, new IUnlistedProperty[]{ Properties.AnimationProperty }); }
Example 5
Source File: BlockGenerator.java From YouTubeModdingTutorial with MIT License | 4 votes |
@Override protected BlockStateContainer createBlockState() { return new ExtendedBlockState(this, new IProperty[] {Properties.StaticProperty, FACING_HORIZ }, new IUnlistedProperty[] {Properties.AnimationProperty}); }