Beispiel #1
0
 public override void SendFillRequest(MyVoxelBase voxel, byte newMaterialIndex)
 {
     voxel.RequestVoxelOperationElipsoid(Radius, Transformation, newMaterialIndex, MyVoxelBase.OperationType.Fill);
 }
Beispiel #2
0
 public override void SendRevertRequest(MyVoxelBase voxel)
 {
     voxel.RequestVoxelOperationElipsoid(this.Radius, base.Transformation, 0, MyVoxelBase.OperationType.Revert);
 }
Beispiel #3
0
 public override void SendCutOutRequest(MyVoxelBase voxel)
 {
     voxel.RequestVoxelOperationElipsoid(Radius, Transformation, 0, MyVoxelBase.OperationType.Cut);
 }
Beispiel #4
0
 public override void SendPaintRequest(MyVoxelBase voxel, byte newMaterialIndex)
 {
     voxel.RequestVoxelOperationElipsoid(this.Radius, base.Transformation, newMaterialIndex, MyVoxelBase.OperationType.Paint);
 }