Package Hexel.things.types

Examples of Hexel.things.types.Thing.step()


      this.thingsToAdd.clear();
      Iterator<Thing> iter = this.things.iterator();
      LogData.set("numberZombies", getNumberOfThingsOfType(Zombie.class));
      while (iter.hasNext()) {
        Thing thing = iter.next();
        thing.step();

        if (thing instanceof Volumetric){
          if (this.thingTools.isOutOfRangeOfCamera((Volumetric)thing)){
            thingsToRemove.add(thing);
            continue;
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.