All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastasyncworldedit.core.command.tool.scroll.ScrollTargetOffset Maven / Gradle / Ivy

Go to download

Blazingly fast Minecraft world manipulation for artists, builders and everyone else.

There is a newer version: 2.9.2
Show newest version
package com.fastasyncworldedit.core.command.tool.scroll;

import com.sk89q.worldedit.command.tool.BrushTool;
import com.sk89q.worldedit.entity.Player;

public class ScrollTargetOffset extends Scroll {

    public ScrollTargetOffset(BrushTool tool) {
        super(tool);
    }

    @Override
    public boolean increment(Player player, int amount) {
        BrushTool tool = getTool();
        tool.setTargetOffset(tool.getTargetOffset() + amount);
        return true;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy