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">
|
<component name="ProjectModuleManager">
|
||||||
<modules>
|
<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" />
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/dcs_pmcliberation.iml" filepath="$PROJECT_DIR$/.idea/dcs_pmcliberation.iml" />
|
|
||||||
</modules>
|
</modules>
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
@ -16,8 +16,7 @@ class MarkerSmoke(unittype.StaticType):
|
|||||||
category = "Effects"
|
category = "Effects"
|
||||||
name = "big_smoke"
|
name = "big_smoke"
|
||||||
shape_name = 5
|
shape_name = 5
|
||||||
effect_transparency = 0.1
|
rate = 0.1
|
||||||
rate = 100
|
|
||||||
|
|
||||||
|
|
||||||
class Smoke(unittype.StaticType):
|
class Smoke(unittype.StaticType):
|
||||||
@ -25,26 +24,23 @@ class Smoke(unittype.StaticType):
|
|||||||
category = "Effects"
|
category = "Effects"
|
||||||
name = "big_smoke"
|
name = "big_smoke"
|
||||||
shape_name = 2
|
shape_name = 2
|
||||||
effect_transparency = 1
|
rate = 1
|
||||||
rate = 100
|
|
||||||
|
|
||||||
|
|
||||||
class BigSmoke(unittype.StaticType):
|
class BigSmoke(unittype.StaticType):
|
||||||
id = "big_smoke"
|
id = "big_smoke"
|
||||||
category = "Effects"
|
category = "Effects"
|
||||||
name = "big_smoke"
|
name = "big_smoke"
|
||||||
effect_transparency = 1
|
|
||||||
shape_name = 3
|
shape_name = 3
|
||||||
rate = 100
|
rate = 1
|
||||||
|
|
||||||
|
|
||||||
class MassiveSmoke(unittype.StaticType):
|
class MassiveSmoke(unittype.StaticType):
|
||||||
id = "big_smoke"
|
id = "big_smoke"
|
||||||
category = "Effects"
|
category = "Effects"
|
||||||
name = "big_smoke"
|
name = "big_smoke"
|
||||||
effect_transparency = 1
|
|
||||||
shape_name = 4
|
shape_name = 4
|
||||||
rate = 100
|
rate = 1
|
||||||
|
|
||||||
|
|
||||||
class Outpost(unittype.StaticType):
|
class Outpost(unittype.StaticType):
|
||||||
@ -59,7 +55,7 @@ def __monkey_static_dict(self: Static):
|
|||||||
d = __original_static_dict(self)
|
d = __original_static_dict(self)
|
||||||
if self.type == "big_smoke":
|
if self.type == "big_smoke":
|
||||||
d["effectPreset"] = self.shape_name
|
d["effectPreset"] = self.shape_name
|
||||||
d["effectTransparency"] = self.effect_transparency
|
d["effectTransparency"] = self.rate
|
||||||
return d
|
return d
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user