Browse Source

Merge pull request #310 from Jrius/swimregion_ahny_defaults

Ahnonay default buoyancy for swimregions
pull/312/head
Adam Johnson 2 years ago committed by GitHub
parent
commit
8d2154288b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      korman/properties/modifiers/water.py

8
korman/properties/modifiers/water.py

@ -43,15 +43,15 @@ class PlasmaSwimRegion(idprops.IDPropObjectMixin, PlasmaModifierProperties, bpy.
down_buoyancy = FloatProperty(name="Downward Buoyancy", down_buoyancy = FloatProperty(name="Downward Buoyancy",
description="Distance the avatar sinks into the water", description="Distance the avatar sinks into the water",
min=0.0, max=100.0, default=3.0, min=0.0, max=100.0, default=11.0,
options=set()) options=set())
up_buoyancy = FloatProperty(name="Up Buoyancy", up_buoyancy = FloatProperty(name="Up Buoyancy",
description="Distance the avatar rises up after sinking", description="Distance the avatar rises up after sinking",
min=0.0, max=100.0, default=0.05, min=0.0, max=100.0, default=2.0,
options=set()) options=set())
up_velocity = FloatProperty(name="Up Velcocity", up_velocity = FloatProperty(name="Up Velocity",
description="Rate at which the avatar rises", description="Rate at which the avatar rises",
min=0.0, max=100.0, default=3.0, min=0.0, max=100.0, default=5.0,
options=set()) options=set())
current_type = EnumProperty(name="Water Current", current_type = EnumProperty(name="Water Current",

Loading…
Cancel
Save