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