Jump to content

[1.19.4] How can we disable rendering clouds in custom dimensions?


Feroov

Recommended Posts

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

Link to comment
Share on other sites

  • Like 1

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

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