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