Jump to content

Weird Dark Block textures (Forge 11.14.3.1524)


ThexXTURBOXx

Recommended Posts

So,

I installed Forge 11.14.3.1524 for Minecraft 1.8 and then I installed some mods (Optifine, etc)

It crashed. (Crash report: http://pastebin.com/jQZz87ht ) I uninstalled Optifine, nearly everything works.

Now I have those weird dark textures:

As you can see, it is only at "full" blocks (unlike chests...).

I made the screenshot with only Forge installed.

Any suggestions?

Bringing the best mod back alive! Our mod REFORGED!

Balkon's Weapons for 1.8: https://github.com/TheOnlySilverClaw/Reforged/releases

Link to comment
Share on other sites

1523/1524 have a new rendering system for lighting. {It should be both faster then vanilla, AND have better lighting for mod models}

It won't be compatible with Optifine until optifine update. {To Optifine guy, I'm planning a RB wednesday if things work out}

Its been tested but there may be some edge cases where it has issues.

If you can provide logs and more details that will be great.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Ok,

I send you the logs with and without OptiFine, only that you have both ^^

BTW.: I have only tested it with a server join. If you want me to test it in singleplayer, write again and I will try to manage it.

With OptiFine: http://pastebin.com/PAzqsJH6

Without OptiFine: http://pastebin.com/ewwD7vat

 

In the log with OptiFine there is the crash again ;)

Bringing the best mod back alive! Our mod REFORGED!

Balkon's Weapons for 1.8: https://github.com/TheOnlySilverClaw/Reforged/releases

Link to comment
Share on other sites

Very nice  ;D

It works great!

The bug with OptiFine still exists, but like LexManos said, it's the task of the OptiFine-guy.

The only question: Will he still make updates for 1.8, when he made version for 1.8.1, 1.8.3, 1.8.4, 1.8.7 and 1.8.8?

I will contact him  :D

 

But big thanks to you guys ^^

 

Edit: I have contacted him,

I will tell you about any updates in this thread.

 

Edit 2: I found another VERY LITTLE texture bug in 1525 xD. When I put wheat next to a solid block, 1 side of it is dark again. (Change: Please see Edit 3)

Screenshot:

If You need a log again, just write it ^^

 

Edit 3: The same thing is with doors, etc.

I bet, that next to EVERY solid block is a dark texture.

Bringing the best mod back alive! Our mod REFORGED!

Balkon's Weapons for 1.8: https://github.com/TheOnlySilverClaw/Reforged/releases

Link to comment
Share on other sites

No problem, man ^^

If I find any bugs related to this topic, I just write again :D

Thanks to you for fixing it! Nice work! :D

 

Edit 1: Sorry for reporting a bug again xD

With the Texture pack "Vanilla BD Craft" the furnace is dark again.

I don't know if it's the fault of the texture pack or of Forge :/

But that's only a little bug xD

 

Edit 2: Same thing with bookcases and note blocks btw xD

Bringing the best mod back alive! Our mod REFORGED!

Balkon's Weapons for 1.8: https://github.com/TheOnlySilverClaw/Reforged/releases

Link to comment
Share on other sites

Thanks for the report, it's always best to know about it :P

Sadly, this issue arises due to the furnace block being marked opaque in the code, so the renderer treats its insides as dark;

Here's what happens with that furnace with vanilla lighting:

As you can see, even vanilla renderer isn't lighting it up correctly; forge renderer behaviour is slightly different, but I think it's acceptable, since there are no holey models for opaque blocks in vanilla, and vanilla renderer renders them incorrectly too.

Link to comment
Share on other sites

  • 2 weeks later...

I am not sure if my issue is related or not, so for now I am adding it here.

 

My setup is: Minecraft 1.8, No mods at all except for: OptiFine_1.8.0_HD_U_D5 and no resource packs. Optifine is on it's default settings.

 

When I use "forge-1.8-11.14.3.1521" everything renders out just fine, but any version of Forge newer than 1521 gives a much! darker render to all 3D inventory blocks. See attached image.

 

I have read that forge did update their render engine thingy and that Optifine now needs to catch up. Is this still true?

 

SNfVVeq.jpg

Link to comment
Share on other sites

we need a new version of Optifine after "OptiFine_1.8.0_HD_U_D5" but I do not think that is going to happen.

 

You have to have faith! :)

 

http://optifined.net/adloadx?f=OptiFine_1.8.0_HD_U_F8.jar

 

Yeah, I found this version 10 minutes after posting my comment above :) Also made a new "solved" topic with the details in case anyone else has this same problem.

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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Try deliting feur builder  It caused this issue in my modpack
    • I am not using hardcoded recipes, I'm using Vanilla's already existing code for leather armor dying. (via extending and implementing DyeableArmorItem / DyeableLeatherItem respectively) I have actually figured out that it's something to do with registering item colors to the ItemColors instance, but I'm trying to figure out where exactly in my mod's code I would be placing a call to the required event handler. Unfortunately the tutorial is criminally undescriptive. The most I've found is that it has to be done during client initialization. I'm currently trying to do the necessary setup via hijacking the item registry since trying to modify the item classes directly (via using SubscribeEvent in the item's constructor didn't work. Class so far: // mrrp mrow - mcmod item painter v1.0 - catzrule ch package catzadvitems.init; import net.minecraft.client.color.item.ItemColors; import net.minecraft.world.item.Item; import net.minecraftforge.registries.ObjectHolder; import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.client.event.ColorHandlerEvent; import catzadvitems.item.DyeableWoolArmorItem; @Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD) public class Painter { @ObjectHolder("cai:dyeable_wool_chestplate") public static final Item W_CHEST = null; @ObjectHolder("cai:dyeable_wool_leggings") public static final Item W_LEGS = null; @ObjectHolder("cai:dyeable_wool_boots") public static final Item W_SOCKS = null; public Painter() { // left blank, idk if forge throws a fit if constructors are missing, not taking the chance of it happening. } @SubscribeEvent public static void init(FMLClientSetupEvent event) { new Painter(); } @Mod.EventBusSubscriber private static class ForgeBusEvents { @SubscribeEvent public static void registerItemColors(ColorHandlerEvent.Item event) { ItemColors col = event.getItemColors(); col.register(DyeableUnderArmorItem::getItemDyedColor, W_CHEST, W_LEGS, W_SOCKS); //placeholder for other dye-able items here later.. } } } (for those wondering, i couldn't think of a creative wool helmet name)
    • nvm found out it was because i had create h and not f
    • Maybe there's something happening in the 'leather armor + dye' recipe itself that would be updating the held item texture?
    • @SubscribeEvent public static void onRenderPlayer(RenderPlayerEvent.Pre e) { e.setCanceled(true); model.renderToBuffer(e.getPoseStack(), pBuffer, e.getPackedLight(), 0f, 0f, 0f, 0f, 0f); //ToaPlayerRenderer.render(); } Since getting the render method from a separate class is proving to be bit of a brick wall for me (but seems to be the solution in older versions of minecraft/forge) I've decided to try and pursue using the renderToBuffer method directly from the model itself. I've tried this route before but can't figure out what variables to feed it for the vertexConsumer and still can't seem to figure it out; if this is even a path to pursue.  The vanilla model files do not include any form of render methods, and seem to be fully constructed from their layer definitions? Their renderer files seem to take their layers which are used by the render method in the vanilla MobRenderer class. But for modded entities we @Override this function and don't have to feed the method variables because of that? I assume that the render method in the extended renderer takes the layer definitions from the renderer classes which take those from the model files. Or maybe instead of trying to use a render method I should be calling the super from the renderer like   new ToaPlayerRenderer(context, false); Except I'm not sure what I would provide for context? There's a context method in the vanilla EntityRendererProvider class which doesn't look especially helpful. I've been trying something like <e.getEntity(), model<e.getEntity()>> since that generally seems to be what is provided to the renderers for context, but I don't know if it's THE context I'm looking for? Especially since the method being called doesn't want to take this or variations of this.   In short; I feel like I'm super super close but I have to be missing something obvious? Maybe this insane inane ramble post will provide some insight into this puzzle?
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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