The official 2023 Newsletter is out! Read here!
Preset Mane Fix-The first thing I'm going to start off with is the mane fix for presets, since this seems difficult for people to find. You only need this code if you're using anything but the fluffy mane.Go to your preset's material file, open it in notepad.Scroll down to the mane code (should be the very bottom, and should read something like this:)Code: [Select]material preset_#_maneMat{ technique { pass { lighting off cull_hardware none cull_software none scene_blend alpha_blend depth_write off texture_unit { texture preset_#mane.png } } }}Now all you do is select that section, copy this:Code: [Select]material preset_#_maneMat{ technique { pass { cull_hardware none cull_software none alpha_rejection greater_equal 128 texture_unit { texture preset_#mane.png } } }}and paste this over the previous selection. Then look for the # signs in the code, and replace it with the preset's number, which is found in the name of that preset's files.
material preset_#_maneMat{ technique { pass { lighting off cull_hardware none cull_software none scene_blend alpha_blend depth_write off texture_unit { texture preset_#mane.png } } }}
material preset_#_maneMat{ technique { pass { cull_hardware none cull_software none alpha_rejection greater_equal 128 texture_unit { texture preset_#mane.png } } }}