Feroov Posted May 11, 2023 Posted May 11, 2023 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 Quote
warjort Posted May 11, 2023 Posted May 11, 2023 https://github.com/MinecraftForge/MinecraftForge/blob/1.19.x/src/main/java/net/minecraftforge/client/event/RegisterDimensionSpecialEffectsEvent.java 1 Quote 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.
Feroov Posted May 11, 2023 Author Posted May 11, 2023 13 minutes ago, warjort said: https://github.com/MinecraftForge/MinecraftForge/blob/1.19.x/src/main/java/net/minecraftforge/client/event/RegisterDimensionSpecialEffectsEvent.java If you could, could you please guide me through I'd really appreciate it, do I call/register through an EventBusSubscriber? Quote
warjort Posted May 11, 2023 Posted May 11, 2023 (edited) 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 May 11, 2023 by warjort Quote 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.
Feroov Posted May 13, 2023 Author Posted May 13, 2023 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 Quote
Recommended Posts
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.