Examples of NEQuad


Examples of de.nameless.graphicEngine.lib.NEQuad

  }
 
  @Override
  protected Vector<NEabstractGraphicObject> getOwnGfx() { 
    Vector<NEabstractGraphicObject> result = new Vector<NEabstractGraphicObject>();
    selectionBox = new NEQuad();
    selectionBox.setTexture("Selection.tga");   
    selectionBox.layer = 1;
    selectionBox.colored =true;
    selectionBox.colorRed = 1;
    selected = new NEVisibleLable(selectionBox);   
    result.add(selectionBox);
   
   
    attackableBox = new NEQuad();
    attackableBox.setTexture("Selection.tga");   
    attackableBox.layer = 2;
    attackableBox.colored =true;
    attackableBox.colorRed = 0.5f;
    attLable = new NEVisibleLable(attackableBox);   
View Full Code Here

Examples of de.nameless.graphicEngine.lib.NEQuad

    grid.layer = 10;
    grid.setColor(1f, 1f, 0.5f, 0.1f);
    this.showGrid.add(new NEVisibleLable(grid))
    gfx.add(grid);
   
    reachableMark = new NEQuad();
    reachableMark.setTexture("Selection.tga");   
    reachableMark.layer = 2;
    reachableMark.x = this.x;
    reachableMark.y = this.y;
    reachableMark.setColor(0.5f, 0.5f, 1, 0.5f);
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.