Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

First off I register my dimension like so:
 

public class DimensionsSTLCON
{
    public static final ResourceKey<Level> XENOSPHERE_KEY = ResourceKey.create(Registries.DIMENSION,
            new ResourceLocation(STLCON.MOD_ID, "the_xenosphere"));

    public static final ResourceKey<DimensionType> XENOSPHERE_TYPE =
            ResourceKey.create(Registries.DIMENSION_TYPE, XENOSPHERE_KEY.registry());

    

    public static void register() {
        System.out.println("Registering DimensionsSTLCON for " + STLCON.MOD_ID);
    }
}

Then I have found IForgeDimensionSpecialEffects/DimensionSpecialEffects might be the answer to my solution but how can I call/use the renderClouds method to my custom dimension?

 

public class CustomDimensionSpecialEffects extends DimensionSpecialEffects implements IForgeDimensionSpecialEffects {

    public CustomDimensionSpecialEffects(float p_108866_, boolean p_108867_, SkyType p_108868_, boolean p_108869_, boolean p_108870_) {
        super(p_108866_, p_108867_, p_108868_, p_108869_, p_108870_);
    }

    @Override
    public boolean renderClouds(ClientLevel level, int ticks, float partialTick, PoseStack poseStack,
                                double camX, double camY, double camZ, Matrix4f projectionMatrix) {
        return true; // Return true to prevent vanilla cloud rendering
    }

    @Override
    public Vec3 getBrightnessDependentFogColor(Vec3 p_108878_, float p_108879_) {
        return null;
    }

    @Override
    public boolean isFoggyAt(int p_108874_, int p_108875_) {
        return false;
    }
}

 

Thank you so much in advance have an amazing day

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Javadoc of the event:

https://github.com/MinecraftForge/MinecraftForge/blob/c8f9e59fef4c52875601014c9fa18e41be619d0f/src/main/java/net/minecraftforge/client/event/RegisterDimensionSpecialEffectsEvent.java#L24

Wiki docs for events in general:

https://forge.gemwire.uk/wiki/Events

Examples on github:

https://github.com/search?q=RegisterDimensionSpecialEffectsEvent+language%3AJava&type=code&l=Java

 

That took me 2 minutes to research. You can do the same.

This is not a "learn modding" forum. And it is not way for you to use us a search engine.

It is a support forum intended to provide help for modders that encounter real problems they don't understand after they have tried to figure it out for themselves.

You spent maximum 16 minutes on this after my answer.

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

  • Author
On 5/12/2023 at 1:25 AM, warjort said:

Javadoc of the event:

https://github.com/MinecraftForge/MinecraftForge/blob/c8f9e59fef4c52875601014c9fa18e41be619d0f/src/main/java/net/minecraftforge/client/event/RegisterDimensionSpecialEffectsEvent.java#L24

Wiki docs for events in general:

https://forge.gemwire.uk/wiki/Events

Examples on github:

https://github.com/search?q=RegisterDimensionSpecialEffectsEvent+language%3AJava&type=code&l=Java

 

That took me 2 minutes to research. You can do the same.

This is not a "learn modding" forum. And it is not way for you to use us a search engine.

It is a support forum intended to provide help for modders that encounter real problems they don't understand after they have tried to figure it out for themselves.

You spent maximum 16 minutes on this after my answer.

 

I apologize I was very frustrated that day already not only for this but of personal real-life problems as well so please put yourself in my shoes, however, I managed to do everything so far since the last time we spoke, I actually did more digging and searching and found my solution before seeing your message just now but still I appreciate your help

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.