Click or drag to resize

ContainerModelOverflowAmount Property

Amount of contents above the Container's capacity.

Namespace:  Livit.Learn.Model
Assembly:  Livit.Learn.Model (in Livit.Learn.Model.dll) Version: 0.0.0.0
Syntax
C#
public double OverflowAmount { get; set; }

Property Value

Type: Double
Remarks

The OverflowAmount can be used, for instance, to trigger an explosion when a Container is too far over capacity.

Examples
XML
<DataCondition Property="OverflowAmount" Comparison="GreaterThan" Value="1000">
  <Actions>
    <Explode />
  </Actions>
</DataCondition>
See Also