Click or drag to resize

FlatTriOpTCellBeginGroup Method

Starts a compound shape operation. Any shape that is defined in terms of other shape operations must use this method, and use Endgroup() to end the definition.
public static FlatTriShapeInfo<TCell> MyCustomShape(this FlatTriOp<TCell> op)
{
    return 
        BeginGroup()
            .Shape1()
            .Union()
            .Shape2()
        .EndGroup(op);
}
Since version 1.1

Namespace:  Gamelogic.Grids
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public FlatTriOp<TCell> BeginGroup()

Return Value

Type: FlatTriOpTCell
See Also