Package Ocarina2D.Objects

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

Related Classes of Ocarina2D.Objects.DekuNut

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.