Ejemplo n.º 1
0
 public override void SendPaintRequest(MySyncVoxel voxelSync, byte newMaterialIndex)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 public abstract void SendCutOutRequest(MySyncVoxel voxelSync, float removeRatio);
Ejemplo n.º 3
0
 public abstract void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex, float fillRatio);
Ejemplo n.º 4
0
 public override void SendCutOutRequest(MySyncVoxel voxelSync, float removeRatio)
 {
     voxelSync.RequestVoxelCutoutExplosion(Center, Radius, false, removeRatio);
 }
Ejemplo n.º 5
0
 public abstract void SendPaintRequest(MySyncVoxel voxelSync, byte newMaterialIndex);
Ejemplo n.º 6
0
 public override void SendCutOutRequest(MySyncVoxel voxelSync)
 {
     voxelSync.RequestVoxelPaintSphere(Center, Radius, 0, MySyncVoxel.PaintType.Cut);
 }
Ejemplo n.º 7
0
 public override void SendCutOutRequest(MySyncVoxel voxelSync)
 {
     voxelSync.RequestVoxelPaintBox(Boundaries, Transformation, 0, MySyncVoxel.PaintType.Cut);
 }
Ejemplo n.º 8
0
 public abstract void SendCutOutRequest(MySyncVoxel voxelSync);
Ejemplo n.º 9
0
 public virtual void SendDrillCutOutRequest(MySyncVoxel voxelSync)
 {
 }
Ejemplo n.º 10
0
 public override void SendCutOutRequest(MySyncVoxel voxelSync)
 {
     voxelSync.RequestVoxelPaintCapsule(A, B, Radius, Transformation, 0, MySyncVoxel.PaintType.Cut);
 }
Ejemplo n.º 11
0
 public override void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex)
 {
     voxelSync.RequestVoxelPaintCapsule(A, B, Radius, Transformation, newMaterialIndex, MySyncVoxel.PaintType.Fill);
 }
Ejemplo n.º 12
0
 public override void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex)
 {
     voxelSync.RequestVoxelPaintRamp(Boundaries, RampNormal, RampNormalW, Transformation, newMaterialIndex, MySyncVoxel.PaintType.Fill);
 }
Ejemplo n.º 13
0
 public override void SendPaintRequest(MySyncVoxel voxelSync, byte newMaterialIndex)
 {
     voxelSync.RequestVoxelPaintEllipsoid(Radius, Transformation, newMaterialIndex, MySyncVoxel.PaintType.Paint);
 }
Ejemplo n.º 14
0
 public override void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex)
 {
     voxelSync.RequestVoxelPaintSphere(Center, Radius, newMaterialIndex, MySyncVoxel.PaintType.Fill);
 }
Ejemplo n.º 15
0
 public override void SendCutOutRequest(MySyncVoxel voxelSync, float removeRatio)
 {
     //throw new NotImplementedException();
 }
Ejemplo n.º 16
0
 public override void SendPaintRequest(MySyncVoxel voxelSync, byte newMaterialIndex)
 {
     voxelSync.RequestVoxelPaintBox(Boundaries, Transformation, newMaterialIndex, MySyncVoxel.PaintType.Paint);
 }
Ejemplo n.º 17
0
 public override void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex, float fillRatio)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 18
0
 public override void SendDrillCutOutRequest(MySyncVoxel voxelSync)
 {
     voxelSync.RequestVoxelCutoutSphere(Center, Radius, false);
 }