Пример #1
0
 public override void SendCutOutRequest(MyVoxelBase voxel)
 {
     voxel.RequestVoxelOperationSphere(Center, Radius, 0, OperationType.Cut);
 }
Пример #2
0
 public override void SendFillRequest(MyVoxelBase voxel, byte newMaterialIndex)
 {
     voxel.RequestVoxelOperationSphere(Center, Radius, newMaterialIndex, OperationType.Fill);
 }
 public override void SendPaintRequest(MyVoxelBase voxel, byte newMaterialIndex)
 {
     voxel.RequestVoxelOperationSphere(Center, Radius, newMaterialIndex, MyVoxelBase.OperationType.Paint);
 }