Package it.timehero.actors

Examples of it.timehero.actors.Strega


       
        Log.info("Mappa dimensione x "+mappa.getWidth()+ " , dimensione y "+mappa.getHeight());
       
        // creo gli attori in gioco e gli aggiungo al mondo
        //TODO: leggere dalla mappa la posizione delle streghe
        Strega strega = new Strega(this,26,9);
        Strega strega2 = new Strega(this,26,20);
        Gigi gigi = new Gigi();
        addActor(strega);
        addActor(strega2);
        addActor(gigi);
       
View Full Code Here


        mappa = new Mappa("data/mappe/map.tmx");
       
        Log.info("Mappa dimensione x "+mappa.getWidth()+ " , dimensione y "+mappa.getHeight());
       
        // creo gli attori in gioco e gli aggiungo al mondo
        Strega strega = new Strega(this);
        Gigi gigi = new Gigi();
        addActor(strega);
        addActor(gigi);
       
        // eseguo il thread separato di ragionamento della strega
        strega.start();
    }
View Full Code Here

  public ArrayList<Actor> getActors() {
    ArrayList<Actor> actor = new ArrayList<Actor>();
        for (int x=0;x<map.getWidth();x++) {
            for (int y=0;y<map.getHeight();y++) {
              if (attori[x][y]){
                Strega strega = new Strega(worldEngine, x, y);
                strega.start();
                actor.add(strega);
              }
            }
        }
        return actor;
View Full Code Here

TOP

Related Classes of it.timehero.actors.Strega

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.