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