Errors loading textures (and another question too)

Verenti

Chieftain
Joined
Jun 15, 2007
Messages
78
So I'm getting the error unable to load texture_64.dds. I've just compiled the mod in the mod buddy.

I know the file is valid, because it was working when I was jury-rigging the assets through in the mod folder.

I can't see anything in the code that is making an error. Here's the sql file referencing the file
Spoiler :
--==========================================================================================================================
-- IconTextureAtlasesa
--==========================================================================================================================
INSERT INTO IconTextureAtlases
(Atlas, IconSize, Filename, IconsPerRow, IconsPerColumn)
VALUES ('BAUERFEIND_LEADER_ATLAS', 256, 'BauerfeindLeaderAtlas_256.dds', 1, 1),
('BAUERFEIND_LEADER_ATLAS', 128, 'BauerfeindLeaderAtlas_128.dds', 1, 1),
('BAUERFEIND_LEADER_ATLAS', 64, 'BauerfeindLeaderAtlas_64.dds', 1, 1),
('BAUERFEIND_ATLAS', 128, 'BauerfeindAtlas_128.dds', 1, 1),
('BAUERFEIND_ATLAS', 80, 'BauerfeindAtlas_80.dds', 1, 1),
('BAUERFEIND_ATLAS', 64, 'BauerfeindAtlas_64.dds', 1, 1),
('BAUERFEIND_ATLAS', 57, 'BauerfeindAtlas_57.dds', 1, 3),
('BAUERFEIND_ATLAS', 45, 'BauerfeindAtlas_45.dds', 1, 3),
('BAUERFEIND_ATLAS', 32, 'BauerfeindAtlas_32.dds', 1, 1),
('BAUERFEIND_ALPHA_ATLAS', 128, 'BauerfeindAlphaAtlas_128.dds', 1, 1),
('BAUERFEIND_ALPHA_ATLAS', 64, 'BauerfeindAlphaAtlas_64.dds', 1, 1),
('BAUERFEIND_ALPHA_ATLAS', 57, 'BauerfeindAlphaAtlas_57.dds', 4, 3),
('BAUERFEIND_ALPHA_ATLAS', 45, 'BauerfeindAlphaAtlas_45.dds', 4, 3),
('BAUERFEIND_ALPHA_ATLAS', 32, 'BauerfeindAlphaAtlas_32.dds', 1, 1),
('BAUERFEIND_ALPHA_ATLAS', 24, 'BauerfeindAlphaAtlas_24.dds', 1, 1),
('BAUERFEIND_ALPHA_ATLAS', 16, 'BauerfeindAlphaAtlas_16.dds', 1, 1),
('BAUERFEIND_GRADIENT_ATLAS', 48, 'BauerfeindGradientAtlas_48.dds', 1, 1),
('BAUERFEIND_GRADIENT_ATLAS', 64, 'BauerfeindGradientAtlas_64.dds', 1, 1),
('BAUERFEIND_GLOW_ATLAS', 32, 'BauerfeindGlowAtlas_64.dds', 1, 1),
('BAUERFEIND_GLOW_ATLAS', 24, 'BauerfeindGlowAtlas_64.dds', 1, 1);


Anyone have any ideas?


The other question is related to voiced leaders. I have created audio clips and made the sql with them referenced, but when in the diplomacy screen, it's just grey and says "no scene loaded". Are voiced leaders not possible or am I missing a step? It did the same thing when I was prepping this content in Civ5 too.

update:

OKay, so the problem was they weren't being imported. How do you set that in modmanager?
 
OKay, so the problem was they weren't being imported. How do you set that in modmanager?
Right-click on the file(s) [you can select multiple], choose Properties, and set "Import into VFS" to True.
 
Back
Top Bottom