16171819202122
public Sword() { super(Graphics.SWORD); spatial.setName("sword"); spatial.setUserData("entity", this); animComponent = new AnimComponent(spatial, AnimType.IDLE); }
21222324252627
super(Graphics.GUN); spatial.setName("gun"); spatial.setUserData("entity", this); spatial.scale(0.4f); animComponent = new AnimComponent(spatial, AnimType.IDLE); }
public Spear() { super(Graphics.SPEAR); spatial.setName("spear"); spatial.setUserData("entity", this); animComponent = new AnimComponent(spatial, AnimType.IDLE); }
78910111213
public CreatureElephant() { super(Graphics.ELEPHANT, 6f, 300f); //TODO adjust spatial.setName("elephant"); animComponent = new AnimComponent(spatial); }
public CreatureOctopus() { super(Graphics.OCTOPUS, 20f, 400f); //TODO adjust spatial.setName("octopus"); animComponent = new AnimComponent(spatial); }
public CreatureArmadilo() { super(Graphics.ARMADILO, 6f, 200f); //TODO adjust spatial.setName("armadilo"); animComponent = new AnimComponent(spatial); }
12131415161718
public Enemy(Graphics graphics) { super(graphics); spatial.setName("enemy"); animComponent = new AnimComponent(spatial); }
public CreatureBlob() { super(Graphics.BLOB, 4f, 100f); //TODO adjust spatial.setName("blob"); animComponent = new AnimComponent(spatial); }
public Bull() { super(Graphics.BULL); spatial.setName("bull"); animComponent = new AnimComponent(spatial); }