Examples of AnimComponent


Examples of com.teamjmonkey.animation.AnimComponent

    public Sword() {
        super(Graphics.SWORD);
        spatial.setName("sword");
        spatial.setUserData("entity", this);

        animComponent = new AnimComponent(spatial, AnimType.IDLE);
    }
View Full Code Here

Examples of com.teamjmonkey.animation.AnimComponent

        super(Graphics.GUN);
        spatial.setName("gun");
        spatial.setUserData("entity", this);
        spatial.scale(0.4f);

        animComponent = new AnimComponent(spatial, AnimType.IDLE);
    }
View Full Code Here

Examples of com.teamjmonkey.animation.AnimComponent

    public Spear() {
        super(Graphics.SPEAR);
        spatial.setName("spear");
        spatial.setUserData("entity", this);

        animComponent = new AnimComponent(spatial, AnimType.IDLE);
    }
View Full Code Here

Examples of com.teamjmonkey.animation.AnimComponent

    public CreatureElephant() {
        super(Graphics.ELEPHANT, 6f, 300f); //TODO adjust
        spatial.setName("elephant");

        animComponent = new AnimComponent(spatial);
    }
View Full Code Here

Examples of com.teamjmonkey.animation.AnimComponent

    public CreatureOctopus() {
        super(Graphics.OCTOPUS, 20f, 400f); //TODO adjust
        spatial.setName("octopus");

        animComponent = new AnimComponent(spatial);
    }
View Full Code Here

Examples of com.teamjmonkey.animation.AnimComponent

    public CreatureArmadilo() {
        super(Graphics.ARMADILO, 6f, 200f); //TODO adjust
        spatial.setName("armadilo");

        animComponent = new AnimComponent(spatial);
    }
View Full Code Here

Examples of com.teamjmonkey.animation.AnimComponent

    public Enemy(Graphics graphics) {
        super(graphics);
        spatial.setName("enemy");

        animComponent = new AnimComponent(spatial);
    }
View Full Code Here

Examples of com.teamjmonkey.animation.AnimComponent

    public CreatureBlob() {
        super(Graphics.BLOB, 4f, 100f); //TODO adjust
        spatial.setName("blob");

        animComponent = new AnimComponent(spatial);
    }
View Full Code Here

Examples of com.teamjmonkey.animation.AnimComponent

    public Bull() {
        super(Graphics.BULL);
        spatial.setName("bull");

        animComponent = new AnimComponent(spatial);
    }
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.