Examples of DekuNut


Examples of Ocarina2D.Objects.DekuNut

    public void step() {
        super.step();
       
        if (draw.getCurrentFrame() >= 1.8) {
          System.out.println("DESTROY");
            DekuNut nut = new DekuNut();

            if (direction.equals("Up")) {
                nut.position.x = position.x+3;
                nut.position.y = position.y-8;
            } else if (direction.equals("Down")) {
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.