Jump to content

Recommended Posts

[MENTION=10271]WrathOf[/MENTION] [MENTION=2]Bigfoot[/MENTION] So I just had Steam download the latest patch, The End is Nigh! As a modder, one of the first things I usually do is make sure my mods work with a new patch. However, I'm running into a very peculiar issue in this patch. Even the smallest mod will cause the in-game textures to fail to render. For example this mod in a modmain.lua

-- Timed Death for Beesfunction timedbeedeathprefabpostinit(inst)	local thisbeehomelessforXdays = 0	local beesdieafterhomelessforXdays = 4	inst:ListenForEvent( "daytime", function() 		if not inst.components.homeseeker and inst.components.health then			thisbeehomelessforXdays = thisbeehomelessforXdays + 1			if thisbeehomelessforXdays >= beesdieafterhomelessforXdays then				inst.components.health:DoDelta(-150)  			end		end	end, GLOBAL.GetWorld())endAddPrefabPostInit("bee", timedbeedeathprefabpostinit)AddPrefabPostInit("killerbee", timedbeedeathprefabpostinit)
will cause item textures not to render in the inventory or crafting menu. The log gives off errors:
WARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/beefalohat.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/campfire.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/firepit.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/torch.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/treasurechest.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/homesign.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/wall_hay_item.texReset() returningWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/researchlab.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/researchlab2.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/winterometer.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/rainometer.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/lightning_rod.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/beemine.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/spear.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/armorgrass.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/armorwood.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_sleep.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_fire.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_pipe.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/twigs.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/twigs.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/beemine.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/spear.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/armorgrass.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/armorwood.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_sleep.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_fire.texWARNING! Could not set texture: mods/HF_timedbeedeath/inventoryimages/blowdart_pipe.tex
but I can't really bugtrack because that error is emanating from the dontstarve_steam.exe
ImageWidget..\source\game\components\ImageWidget.cppWARNING! Could not set texture: %s
So... what's going on here? Edited by Heavenfall
Link to comment
https://forums.kleientertainment.com/forums/topic/14532-re-end-is-night-patch/
Share on other sites

[MENTION=2]Bigfoot[/MENTION] sure, but it also breaks just using samplemod (the one that comes with the game).https://dl.dropbox.com/u/32649007/HF_timedbeedeath.rarI have no edited files in the game, and I verified that all my install files are right using the steam verify thingy. I also tried deleting my profile entirely in case there was something strange in the saveindex. The same problem remained upon restarting the game.I am reinstalling the game now.Edit: Removed the game and downloaded it again, added samplemod to modsettings.lua. Same problem shows up in-game.

WARNING! Could not set texture: mods/samplemod/inventoryimages/researchlab.texWARNING! Could not set texture: mods/samplemod/inventoryimages/researchlab2.texWARNING! Could not set texture: mods/samplemod/inventoryimages/winterometer.texWARNING! Could not set texture: mods/samplemod/inventoryimages/rainometer.texWARNING! Could not set texture: mods/samplemod/inventoryimages/lightning_rod.tex
Edited by Heavenfall

I have this problem.. With what the picture looked like.. Stuff missing icons etc.. It's not gamebreaking.. If you hover over the blank spots it says what they are..For clarity I am running the old Doorway version of Test Tools only.. Haven't tried without..

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...