mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
minor fixes in visualgen
This commit is contained in:
parent
bc15daf46f
commit
be761f8914
1
.idea/modules.xml
generated
1
.idea/modules.xml
generated
@ -3,7 +3,6 @@
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/dcs_pmcliberation.iml" filepath="$PROJECT_DIR$/.idea/dcs_pmcliberation.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/dcs_pmcliberation.iml" filepath="$PROJECT_DIR$/.idea/dcs_pmcliberation.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
||||
@ -16,8 +16,7 @@ class MarkerSmoke(unittype.StaticType):
|
||||
category = "Effects"
|
||||
name = "big_smoke"
|
||||
shape_name = 5
|
||||
effect_transparency = 0.1
|
||||
rate = 100
|
||||
rate = 0.1
|
||||
|
||||
|
||||
class Smoke(unittype.StaticType):
|
||||
@ -25,26 +24,23 @@ class Smoke(unittype.StaticType):
|
||||
category = "Effects"
|
||||
name = "big_smoke"
|
||||
shape_name = 2
|
||||
effect_transparency = 1
|
||||
rate = 100
|
||||
rate = 1
|
||||
|
||||
|
||||
class BigSmoke(unittype.StaticType):
|
||||
id = "big_smoke"
|
||||
category = "Effects"
|
||||
name = "big_smoke"
|
||||
effect_transparency = 1
|
||||
shape_name = 3
|
||||
rate = 100
|
||||
rate = 1
|
||||
|
||||
|
||||
class MassiveSmoke(unittype.StaticType):
|
||||
id = "big_smoke"
|
||||
category = "Effects"
|
||||
name = "big_smoke"
|
||||
effect_transparency = 1
|
||||
shape_name = 4
|
||||
rate = 100
|
||||
rate = 1
|
||||
|
||||
|
||||
class Outpost(unittype.StaticType):
|
||||
@ -59,7 +55,7 @@ def __monkey_static_dict(self: Static):
|
||||
d = __original_static_dict(self)
|
||||
if self.type == "big_smoke":
|
||||
d["effectPreset"] = self.shape_name
|
||||
d["effectTransparency"] = self.effect_transparency
|
||||
d["effectTransparency"] = self.rate
|
||||
return d
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user