Browse Source

Fix swim detector physics flags for PotS

pull/85/head
Adam Johnson 7 years ago
parent
commit
291aad1a98
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 5
      korman/properties/modifiers/water.py

5
korman/properties/modifiers/water.py

@ -120,6 +120,8 @@ class PlasmaSwimRegion(idprops.IDPropObjectMixin, PlasmaModifierProperties, bpy.
except ExportAssertionError: except ExportAssertionError:
raise ExportError("Swimming Surface '{}' must be flat".format(bo.name)) raise ExportError("Swimming Surface '{}' must be flat".format(bo.name))
physical.LOSDBs |= plSimDefs.kLOSDBSwimRegion physical.LOSDBs |= plSimDefs.kLOSDBSwimRegion
if exporter.mgr.getVer() != pvMoul:
physical.memberGroup = plSimDefs.kGroupLOSOnly
# Detector region bounds # Detector region bounds
if self.region is not None: if self.region is not None:
@ -129,8 +131,11 @@ class PlasmaSwimRegion(idprops.IDPropObjectMixin, PlasmaModifierProperties, bpy.
det_name = "{}_SwimDetector".format(self.region.name) det_name = "{}_SwimDetector".format(self.region.name)
bounds = self.region.plasma_modifiers.collision.bounds bounds = self.region.plasma_modifiers.collision.bounds
simIface, physical = exporter.physics.generate_physical(self.region, region_so, bounds, det_name) simIface, physical = exporter.physics.generate_physical(self.region, region_so, bounds, det_name)
if exporter.mgr.getVer() == pvMoul:
physical.memberGroup = plSimDefs.kGroupDetector physical.memberGroup = plSimDefs.kGroupDetector
physical.reportGroup |= 1 << plSimDefs.kGroupAvatar physical.reportGroup |= 1 << plSimDefs.kGroupAvatar
else:
physical.memberGroup = plSimDefs.kGroupLOSOnly
# I am a little concerned if we already have a plSwimDetector... I am not certain how # I am a little concerned if we already have a plSwimDetector... I am not certain how
# well Plasma would tolerate having a plSwimMsg with multiple regions referenced. # well Plasma would tolerate having a plSwimMsg with multiple regions referenced.

Loading…
Cancel
Save