public override void SendFillRequest(MyVoxelBase voxel, byte newMaterialIndex) { voxel.RequestVoxelOperationBox(Boundaries, Transformation, newMaterialIndex, MyVoxelBase.OperationType.Fill); }
public override void SendRevertRequest(MyVoxelBase voxel) { voxel.RequestVoxelOperationBox(this.Boundaries, base.Transformation, 0, MyVoxelBase.OperationType.Revert); }
public override void SendCutOutRequest(MyVoxelBase voxel) { voxel.RequestVoxelOperationBox(Boundaries, Transformation, 0, MyVoxelBase.OperationType.Cut); }
public override void SendPaintRequest(MyVoxelBase voxel, byte newMaterialIndex) { voxel.RequestVoxelOperationBox(this.Boundaries, base.Transformation, newMaterialIndex, MyVoxelBase.OperationType.Paint); }