mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- Change the search paths for auto folders
This commit is contained in:
parent
05827ffcda
commit
57e66555da
1 changed files with 7 additions and 6 deletions
|
@ -780,12 +780,13 @@ struct AutoTextureSearchPath
|
||||||
|
|
||||||
static AutoTextureSearchPath autosearchpaths[] =
|
static AutoTextureSearchPath autosearchpaths[] =
|
||||||
{
|
{
|
||||||
{ "brightmaps/auto/", offsetof(FTexture::MiscGLInfo, Brightmap) },
|
{ "brightmaps/auto/", offsetof(FTexture::MiscGLInfo, Brightmap) }, // For backwards compatibility
|
||||||
{ "normalmaps/auto/", offsetof(FTexture::MiscGLInfo, Normal) },
|
{ "materials/brightmaps/auto/", offsetof(FTexture::MiscGLInfo, Brightmap) },
|
||||||
{ "specular/auto/", offsetof(FTexture::MiscGLInfo, Specular) },
|
{ "materials/normalmaps/auto/", offsetof(FTexture::MiscGLInfo, Normal) },
|
||||||
{ "metallic/auto/", offsetof(FTexture::MiscGLInfo, Metallic) },
|
{ "materials/specular/auto/", offsetof(FTexture::MiscGLInfo, Specular) },
|
||||||
{ "roughness/auto/", offsetof(FTexture::MiscGLInfo, Roughness) },
|
{ "materials/metallic/auto/", offsetof(FTexture::MiscGLInfo, Metallic) },
|
||||||
{ "ao/auto/", offsetof(FTexture::MiscGLInfo, AmbientOcclusion) }
|
{ "materials/roughness/auto/", offsetof(FTexture::MiscGLInfo, Roughness) },
|
||||||
|
{ "materials/ao/auto/", offsetof(FTexture::MiscGLInfo, AmbientOcclusion) }
|
||||||
};
|
};
|
||||||
|
|
||||||
void AddAutoMaterials()
|
void AddAutoMaterials()
|
||||||
|
|
Loading…
Reference in a new issue