MetaAwareBlocks
No reviews yet
Adds meta-aware versions of several Block rendering functions
Provides a framework or library for other mods to use.
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
Resources
External Links
About
Description
MetaAwareBlocks
As of now this only transforms Minecraft's code, and currently that is all that is planned due to other mods being a compatibility nightmare without any great way to go about things automatically. I'd have to write mixins for every single mod, and it's just not practical. If someone wants to create pull requests adding support for a mod, that's great, but for now it only supports Minecraft's native code.
This is a library used to add meta-aware functionality for several (primarily rendering) functions inside of net.minecraft.block.Block.
Usage:
Creating a new block:
class NewBlock implements IMetaAware {
...
@Override
public boolean renderAsNormalBlock(IBlockAccess world, int x, int y, int z) {
return world.getBlockMetadata(world, x, y, z) != 0;
}
...
}
Mixin into a preexisting block:
@Mixin(NewBlock.class)
public abstract class MixinNewBlock implements IMetaAware {
@Override
public boolean renderAsNormalBlock(IBlockAccess world, int x, int y, int z) {
return world.getBlockMetadata(world, x, y, z) != 0;
}
}
Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers
Statistics
Resources