Remamed filtering to desktop

This commit is contained in:
Willem Cazander 2022-02-15 19:37:35 +01:00
parent c2d5370073
commit c118055812
2 changed files with 5 additions and 5 deletions

View file

@ -5,12 +5,12 @@ import com.badlogic.gdx.InputProcessor;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class FilteringInputProcessor implements InputProcessor {
public class DeskTopInputProcessor implements InputProcessor {
private final InputProcessor input;
private boolean filtering = false;
public FilteringInputProcessor(InputProcessor input) {
public DeskTopInputProcessor(InputProcessor input) {
this.input = input;
}

View file

@ -13,7 +13,7 @@ import com.badlogic.gdx.utils.Array;
import love.distributedrebirth.gdxapp.desktop.DeskApp;
import love.distributedrebirth.gdxapp.desktop.DeskAppScreen;
import love.distributedrebirth.gdxapp.desktop.DeskAppScreenListener;
import love.distributedrebirth.gdxapp.desktop.FilteringInputProcessor;
import love.distributedrebirth.gdxapp.desktop.DeskTopInputProcessor;
import love.distributedrebirth.gdxapp.desktop.DeskTopScreen;
public abstract class AbstractScreenDesktop extends ScreenAdapter implements DeskTopScreen {
@ -21,7 +21,7 @@ public abstract class AbstractScreenDesktop extends ScreenAdapter implements Des
private final DeskAppScreen deskAppScreen;
private PerspectiveCamera cam;
private FirstPersonCameraController camController;
private FilteringInputProcessor inputFilter;
private DeskTopInputProcessor inputFilter;
private ModelBatch modelBatch;
private Array<ModelInstance> modelInstances = new Array<ModelInstance>();
@ -61,7 +61,7 @@ public abstract class AbstractScreenDesktop extends ScreenAdapter implements Des
camController = new FirstPersonCameraController(cam);
//camController = new CameraInputController(cam);
inputFilter = new FilteringInputProcessor(camController);
inputFilter = new DeskTopInputProcessor(camController);
}
@Override