ModsJava
GeoTetraItem
The author built this one for Minecraft 1.20.1 on Forge. On other versions it may install and then do nothing.
This mod itself does not register any items.
You need to manually create the JSON files and place them in the config/GeoTetraItem/ folder to register items.
Example:
config/GeoTetraItem/example.json
{
"id": "namespace:example",
"slots": [
{
"type": "major",
"required": true,
"name": "example/slot1",
"x": 15,
"y": 15
},
{
"name": "example/slot2",
"x": 15,
"y": 5
},
{
"name": "example/slot3",
"x": 15,
"y": -10
},
{
"type": "minor",
"name": "example/slot4",
"x": -25,
"y": 15
}
],
"canHone": true,
"honeBase": 200,
"honeMultiplier": 450
}
Modular Items registered via GeoTetraItem will only render models whose type starts with "gecko".
{
"availableTextures": [ "base" ],
"models": [
{
"type": "gecko",
"location": "namespace:item/vanilla/"
}
]
}
If you are a mod developer, you only need to have your item class implement the IGeoRenderTetraItem interface.
public class ExampleItem extends ItemModularHandheld implements IGeoRenderTetraItem<ExampleItem> {
private final AnimatableInstanceCache cache = GeckoLibUtil.createInstanceCache(this);
public Cache<String, List<GeoTetraItemRenderer<ExampleItem>>> rendererCache = CacheBuilder.newBuilder().maximumSize(1000L).expireAfterWrite(10L, TimeUnit.MINUTES).build();
public ExampleItem(Properties properties) {
super(properties);
}
@Override
public Cache<String, List<GeoTetraItemRenderer<ExampleItem>>> getRendererCache() {
return rendererCache;
}
@Override
public void registerControllers(AnimatableManager.ControllerRegistrar controllerRegistrar) {
}
@Override
public AnimatableInstanceCache getAnimatableInstanceCache() {
return cache;
}
}
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft version listed: 1.20.1
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on CurseForge — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
Verified by MCModsHub
- Ships as GeoTetraItem-6.9.0-1.0.0.jar — drop this file into the mods folder
- Download size: 23 KB
- Download link checked 23 Aug 2026 — working
These come from our own check of the pack file, not from the source page.