Package it.marteEngine.entity

Examples of it.marteEngine.entity.Solid


    // add some blocks to level, I will just create and add to the world
    Image block = ResourceManager.getImage("block");
    // bottom
    for (int i = 0; i < 18; i++) {
      add(new Solid(20 + i * 32, 400, 32, 32, 10, block));
    }
    // left platform
    for (int i = 0; i < 5; i++) {
      add(new Solid(120 + i * 32, 304, 32, 32, 10, block));
    }
    // right platform
    for (int i = 0; i < 5; i++) {
      add(new Solid(320 + i * 32, 304, 32, 32, 10, block));
    }
    // top platform
    for (int i = 0; i < 6; i++) {
      add(new Solid(200 + i * 32, 200, 32, 32, 10, block));
    }
    // left wall
    for (int i = 1; i < 13; i++) {
      add(new Solid(20, 400 - i * 32, 32, 32, 10, block));
    }
    // right wall
    for (int i = 1; i < 13; i++) {
      add(new Solid(564, 400 - i * 32, 32, 32, 10, block));
    }
    // add a background image, from
    // http://thetutorials.wordpress.com/2008/11/26/ps-cute-cartoon-clouds-the-simple-way/
    add(new Background(0, 0));
  }
View Full Code Here

TOP

Related Classes of it.marteEngine.entity.Solid

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.