Package net.cis.client.game.common.model.ai.impl.simple

Examples of net.cis.client.game.common.model.ai.impl.simple.SimpleRotator


    int objID = obj.dataObject.getId();
   
    //TODO: switch to external data defined
    if(objID == 2//2 == Asteroid
      obj.setAINode(new SimpleRotator());
    else if(objID >= 100000//debug objects
      obj.setAINode(new SimpleWobble());
   
    if(obj.getAINode() != null)
      smartObjects.put(objID, obj);
View Full Code Here

TOP

Related Classes of net.cis.client.game.common.model.ai.impl.simple.SimpleRotator

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.