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