public override void SendPaintRequest(MySyncVoxel voxelSync, byte newMaterialIndex) { throw new NotImplementedException(); }
public abstract void SendCutOutRequest(MySyncVoxel voxelSync, float removeRatio);
public abstract void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex, float fillRatio);
public override void SendCutOutRequest(MySyncVoxel voxelSync, float removeRatio) { voxelSync.RequestVoxelCutoutExplosion(Center, Radius, false, removeRatio); }
public abstract void SendPaintRequest(MySyncVoxel voxelSync, byte newMaterialIndex);
public override void SendCutOutRequest(MySyncVoxel voxelSync) { voxelSync.RequestVoxelPaintSphere(Center, Radius, 0, MySyncVoxel.PaintType.Cut); }
public override void SendCutOutRequest(MySyncVoxel voxelSync) { voxelSync.RequestVoxelPaintBox(Boundaries, Transformation, 0, MySyncVoxel.PaintType.Cut); }
public abstract void SendCutOutRequest(MySyncVoxel voxelSync);
public virtual void SendDrillCutOutRequest(MySyncVoxel voxelSync) { }
public override void SendCutOutRequest(MySyncVoxel voxelSync) { voxelSync.RequestVoxelPaintCapsule(A, B, Radius, Transformation, 0, MySyncVoxel.PaintType.Cut); }
public override void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex) { voxelSync.RequestVoxelPaintCapsule(A, B, Radius, Transformation, newMaterialIndex, MySyncVoxel.PaintType.Fill); }
public override void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex) { voxelSync.RequestVoxelPaintRamp(Boundaries, RampNormal, RampNormalW, Transformation, newMaterialIndex, MySyncVoxel.PaintType.Fill); }
public override void SendPaintRequest(MySyncVoxel voxelSync, byte newMaterialIndex) { voxelSync.RequestVoxelPaintEllipsoid(Radius, Transformation, newMaterialIndex, MySyncVoxel.PaintType.Paint); }
public override void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex) { voxelSync.RequestVoxelPaintSphere(Center, Radius, newMaterialIndex, MySyncVoxel.PaintType.Fill); }
public override void SendCutOutRequest(MySyncVoxel voxelSync, float removeRatio) { //throw new NotImplementedException(); }
public override void SendPaintRequest(MySyncVoxel voxelSync, byte newMaterialIndex) { voxelSync.RequestVoxelPaintBox(Boundaries, Transformation, newMaterialIndex, MySyncVoxel.PaintType.Paint); }
public override void SendFillRequest(MySyncVoxel voxelSync, byte newMaterialIndex, float fillRatio) { throw new NotImplementedException(); }
public override void SendDrillCutOutRequest(MySyncVoxel voxelSync) { voxelSync.RequestVoxelCutoutSphere(Center, Radius, false); }