|
|
|
@ -30,9 +30,10 @@ class PlasmaFni(bpy.types.PropertyGroup):
|
|
|
|
|
subtype="COLOR") |
|
|
|
|
fog_method = EnumProperty(name="Fog Type", |
|
|
|
|
items=[ |
|
|
|
|
("linear", "Linear", "Linear Fog"), |
|
|
|
|
("exp", "Exponential", "Exponential Fog"), |
|
|
|
|
("none", "None", "Use fog from the previous age") |
|
|
|
|
("linear", "Linear", "Fog Based on Linear Distance"), |
|
|
|
|
("exp", "Exponential", "Fog Based on Exponential Distance"), |
|
|
|
|
("exp2", "Exponential 2", "Fog Based on Exponential Distance Squared"), |
|
|
|
|
("none", "None", "No Fog") |
|
|
|
|
]) |
|
|
|
|
fog_start = FloatProperty(name="Start", |
|
|
|
|
description="", |
|
|
|
|