Everything Else
There’s a lot more to ImmersiveMC’s API; this is only a taste! ImmersiveMC has full Javadocs, though be warned, anything not in the com.hammy275.immersivemc.api
package are internals, and can change at any time!
Some good parts of the documentation to read once you’ve made your first Immersive are:
- All the
HitboxPositioningMode
s you can use with yourImmersiveBuilder
. - The
Immersive
interface and theImmersiveInfo
to go with. You can implement these interfaces yourself to create anImmersive
exactly as you want with zero limitations. ImmersiveMC’s beacon, for example, uses this system to offer the relatively extreme amount of flexibility and logic the beacon’s Immersive uses. - The
ImmersiveLogicHelpers
andImmersiveRenderHelpers
to make development that much easier. OBBFactory
and theOBB
s it outputs if you want rotatable hitboxes for your Immersives.