Examples of Obfuscation


Examples of wecui.obfuscation.Obfuscation

        this.minecraft = minecraft;
    }

    public void initialize() {
        this.eventManager = new EventManager(this);
        this.obfuscation = new Obfuscation(this);
        this.selection = new CuboidRegion(this);
        this.configuration = new CUIConfiguration(this);
        this.debugger = new CUIDebug(this);
        //this.localPlugin = new LocalPlugin(this);
View Full Code Here

Examples of wecui.obfuscation.Obfuscation

        GL11.glDisable(GL11.GL_TEXTURE_2D);
        GL11.glDepthMask(false);
        GL11.glPushMatrix();

        try {
            Obfuscation obf = controller.getObfuscation();

            GL11.glTranslated(-obf.getPlayerXGuess(event.getPartialTick()),
                    -obf.getPlayerYGuess(event.getPartialTick()),
                    -obf.getPlayerZGuess(event.getPartialTick()));
            GL11.glColor3f(1.0f, 1.0f, 1.0f);
            if (controller.getSelection() != null) {
                controller.getSelection().render();
            }
        } catch (Exception e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.