Ejemplo n.º 1
0
        public int Raise(ObjectPlacementPath path, int currentPathHeight)
        {
            currentPathHeight += path.Settings.ManualConstructionSettings.HeightAdjustmentSettings.ManualHeightAdjustmentSettings.RaiseAmount;
            ObjectPlacementBoxStackSegmentActions.SetHeightForSegments(path.GetAllSegments(), currentPathHeight);

            return(currentPathHeight);
        }
        public int Lower(ObjectPlacementBlock block, int currentBlockHeight)
        {
            currentBlockHeight -= block.Settings.ManualConstructionSettings.HeightAdjustmentSettings.ManualHeightAdjustmentSettings.LowerAmount;
            ObjectPlacementBoxStackSegmentActions.SetHeightForSegments(block.GetAllSegments(), currentBlockHeight);

            return(currentBlockHeight);
        }