where do you want to change the texture ?
for plugin : double click the "texture_swap.bat" file and choose your texture before entering dungeon scene.
for other mods, 2 options.
- same as my .bat file, but do it manually -> delete ONLY lmr_xxxx_yy_01_png.dds copy any texture and rename it to lmr_xxxx_yy_01_png.dds
- change the texture path in the corresponding .dat file (e.g : /init/story/alien/init.dat for abducted sample story)
Code:
cloth_tex[0] = "/scenes/textures/cloth/lmr_croptop_01_06_png.dds // <---- texture used
cloth_color[0] = (255,255,255,255);
cloth_spec_shiny[0] = 0.0;
cloth_spec_power[0] = 0.0;
(...)
//Don't forget to add everything related to the object
cloth_item[0]
{
name = "dress";
file_name = "scenes/character7/lmr_croptop_01Shape.obj"; // <---- Object file
}
(....)
cloth_elem[+]
{
pose_type = STAND;
pose_id = 0;
cloth_type = CASUAL;
show_shoes = true;
show_glasses = false;
items[0]
{
item = 0;
state = "state/alien/lmr_croptop_01.dat"; // <----- object state file
}
}