Package com.sk89q.worldedit.function.entity

Examples of com.sk89q.worldedit.function.entity.ExtentEntityCopy


            ExtentBlockCopy blockCopy = new ExtentBlockCopy(source, from, destination, to, currentTransform);
            RegionMaskingFilter filter = new RegionMaskingFilter(sourceMask, blockCopy);
            RegionFunction function = sourceFunction != null ? new CombinedRegionFunction(filter, sourceFunction) : filter;
            RegionVisitor blockVisitor = new RegionVisitor(region, function);

            ExtentEntityCopy entityCopy = new ExtentEntityCopy(from, destination, to, currentTransform);
            entityCopy.setRemoving(removingEntities);
            List<? extends Entity> entities = source.getEntities(region);
            EntityVisitor entityVisitor = new EntityVisitor(entities.iterator(), entityCopy);

            lastVisitor = blockVisitor;
            currentTransform = currentTransform.combine(transform);
View Full Code Here

TOP

Related Classes of com.sk89q.worldedit.function.entity.ExtentEntityCopy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.