NeoGeckoJS
ModUse GeckoLib to create animatable block/item/armor by KubeJS now on NeoForge!
Type
Mod
Modrinth Downloads
15
Modrinth ID
qM8gVvQh
Last Updated
Jun 15, 2026
Description
Gecko JS
Use GeckoLib to create animatable block/item/armor by simply using KubeJS!
This mod was originally made for Forge 1.20.1 and had no Modrinth Version, however this both ports and updates the mod for NeoForge 1.21.1 with just about perfect 1:1 replication so any original scripts and assets work almost the same!
What're some examples?
Any of the original examples should work pretty much the exact same, again it's just about 1:1.
Startup Script:
StartupEvents.registry("block", event => { const rotating = RawAnimation.begin().thenLoop("rotating"); event.create("geckojs:example_block", "animatable") .box(1, 1, 1, 15, 15, 15, true) .animatableBlockEntity(blockEntity => { blockEntity.addController(state => state.setAndContinue(rotating)) }) .defaultGeoModel() })Item Example:
StartupEvents.registry('item', event => { event.create('cool_sword', 'anim_sword') .tier('diamond') .defaultGeoModel() .addController(controller => { controller.addAnimation(state => { if (state.isMoving()) { return state.setAndContinue(RawAnimation.begin().thenLoop("walk")) } return state.setAndContinue(RawAnimation.begin().thenLoop("idle")) }) }) })Armor Example:
event.create('fancy_helmet', 'anim_helmet') .material('iron') .defaultGeoModel() .armorItemUseGeoModel() // Makes the item icon use the 3D model .boneVisibility((renderer, slot) => { // Hide a specific bone on the armor model renderer.hideBone("extra_antenna") })Blocks Example:
StartupEvents.registry('block', event => { event.create('animated_pillar', 'animatable') .defaultGeoModel() .addController(controller => { controller.addAnimation(state => { return state.setAndContinue(RawAnimation.begin().thenLoop("spin")) }) }) })Compatibility
Mod Loaders
Game Versions
Screenshots
Similar Mods
Blueprints BTA
A mod for Minecraft's Better Than Adventure! fork which adds a "Design Mode" where you can plan your builds before you b...
[BTW Addon] Let Me Move ! (Extra)
Add new actions and animations to the game (e.g. crawling, swimming...)
Trim Upgrade : Core
Add bonus effects to trim templates in the game.
Ward Watch
Security-themed protection mod for Fabric 1.21.11 with password-protected storage, doors and more to come.
Assembly Assembled | Extras
This datapack adds bridge information and rebalancing for the mods within the Assembly Assembled Datapack
GradientNametags
A client-side Fabric mod that lets you apply smooth gradient colors to player name tags using simple commands like /name...