Mineuniverse
Log in Register
Mods

Custom Portal API Reforged

Forge port of Fabrics Custom Portal API, updated for newer versions of MC.
by AzureDoomC
Download Claim this project
3,361,098 downloads
0 likes
Updated Jul 6, 2026
0 hypes
API and Library

Custom Portal API Reforged 

Library mod allowing developers to create portals to their custom dimensions easily. These custom portals will function exactly like nether portals, except being fully customizable. You can control the frame block, portal block, tinting, ignition source, destination, and more!

Usage

Add the repository/mod to your build.gradle.

repositories {
maven { url 'https://maven.azuredoom.com/mods' }
}
dependencies {
//1.20.1
implementation fg.deobf('net.kyrptonaught.customportalapi:customportalapi-reforged:MODVERSION')

//1.20.2+
implementation "net.kyrptonaught.customportalapi:cpapireforged-neo-1.20.2:MODVERSION"

}

 

 

Now onto creating and registering the portal itself, this is simple thanks to the CustomPortalBuilder class. We will make use of this in FMLCommonSetupEvent.

The following is a very simple portal that will take us to The End, and is lit by right-clicking the frame with an Eye of Ender:

CustomPortalBuilder.beginPortal()
.frameBlock(Blocks.DIAMOND_BLOCK)
.lightWithItem(Items.ENDER_EYE)
.destDimID(new ResourceLocation("the_end"))
.tintColor(45,65,101)
.registerPortal(); 

 

A Nether portal would be registered as follows:

 CustomPortalBuilder.beginPortal()
.frameBlock(Blocks.OBSIDIAN)
.destDimID(new ResourceLocation("the_nether"))
.tintColor(131, 66, 184)
.registerPortal();

 

CustomPortalBuilder is filled with plenty of methods to customize the functionality of your portal, all of which are documented in the class.

 

Some noteworthy methods to mention:

- lightWithWater/Item/Fluid - These allow you to control how the portal is lit.
- onlyLightInOverworld - Only allow the portal to be used in the overworld to your destination of choice
- flatPortal - Flat Portal similar to the End or the Twilight Forest portal.

 

Credits

Based off the main Fabric mod HERE and an older ported mod HERE.

customportalapi-reforged 1.7.0
MC NeoForge, 1.21.10
Release 2025-11-28 Get
customportalapi-reforged1201 1.0.4
MC NeoForge, 1.20.1, Forge
Release 2024-06-30 Get

More from AzureDoomC

More Curios Totems of Undying
93,629
I See Lava
92,878
World of Warcraft Weapons
77,014
dotHack//Mod
7,556
Erroring Entity Remover Reforged
740,796
Azure RPG Items
625,964

You Might Also Like

Vivecraft
A Minecraft VR mod on a loader of your choice!
9,988,339
Athena
A crossplatform (Forge/Fabric) solution to connected block textures for 1.19.4+
99,799,527
Lodestone
A collection of code used throughout projects under the Lodestar team.
9,914,417
TheDragonLib
A library for most of sokratis12GR's Mods
9,910,232
Multi Mob Library
A library mod containing essential files for Daveyx0's mob mods
9,892,767
FTB Library (Forge) (Legacy)
FTB Library is a library mod that is used for some of our mods.
98,265,314