RNA: Match enum string to UI name

Having different terminology for enum's is confusing for scripters.
This commit is contained in:
Campbell Barton 2015-07-04 13:02:59 +10:00
parent b997bda9f9
commit 631b53bad4
Notes: blender-bot 2023-02-14 08:55:40 +01:00
Referenced by issue #45317, Cycles material preview unnecessarily re-rendering
1 changed files with 1 additions and 1 deletions

View File

@ -837,7 +837,7 @@ static void rna_def_material_gamesettings(BlenderRNA *brna)
"Render polygon transparent, depending on alpha channel of the texture"},
{GEMAT_ALPHA_SORT, "ALPHA_SORT", 0, "Alpha Sort",
"Sort faces for correct alpha drawing (slow, use Alpha Clip instead when possible)"},
{GEMAT_ALPHA_TO_COVERAGE, "ALPHA_TO_COVERAGE", 0, "Alpha Antialiasing",
{GEMAT_ALPHA_TO_COVERAGE, "ALPHA_ANTIALIASING", 0, "Alpha Anti-Aliasing",
"Use textures alpha as anti-aliasing mask, requires multi-sample OpenGL display"},
{0, NULL, 0, NULL, NULL}
};