Package com.googlecode.jumpnevolve.editor.arguments

Examples of com.googlecode.jumpnevolve.editor.arguments.PositionMarker


  public EditorObject(Editor parent, String objectName, String className,
      Vector startPosition) {
    this.parent = parent;
    this.objectName = objectName;
    this.className = className;
    this.newPosition = new PositionMarker(parent, "Position",
        PositionMarker.MODUS_BOTH, startPosition, Color.red);
    this.settings.addPart(this.newPosition.getDialogPart());
    if (GameObjects.getGameObject(className).hasActivatings) {
      // TODO: Activatings sollten auch über den Editor direkt ausgewählt
      // werden können --> Button, der gedrückt wird, danach legt
View Full Code Here


      int subareaWidth) throws IOException {
    super(new Levelloader(source), width, height, subareaWidth);

    this.parentMenu = parent;

    this.playerPosition = new PositionMarker(this, "Player",
        PositionMarker.MODUS_BOTH, Vector.ZERO, Color.red);

    // Settings-Dialog erstellen
    this.settingsDialog = new Dialog();
    this.settingsDialog.addTextField("Name");
View Full Code Here

TOP

Related Classes of com.googlecode.jumpnevolve.editor.arguments.PositionMarker

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.