Examples of NewCharSummary


Examples of com.l2client.model.network.NewCharSummary

  }

    private void setupScene() {

      //TODO could use getTemplates to switch through models..
      NewCharSummary sum = new NewCharSummary();
      sum.name = "DwarfWarriorM";
      NPCModel m = new NPCModel(sum);
      //Node n = Assembler2.getModel3("dwarfwarrior"); //"pelffwarrior");//humanhalberd"); //goblin");
      m.attachVisuals();
//      if(n != null){ 
View Full Code Here

Examples of com.l2client.model.network.NewCharSummary

       
        AmbientLight am = new AmbientLight();
        am.setColor(ColorRGBA.White);
        rootNode.addLight(am);
        rootNode.addLight(dr);
      NewCharSummary c = new NewCharSummary();
      c.name = "Myname";
      VisibleModel v = new VisibleModel(c);
      rootNode.attachChild(v);
      v.attachVisuals();
      v.rotateUpTo(Vector3f.UNIT_Z.mult(-1f));
View Full Code Here

Examples of com.l2client.model.network.NewCharSummary

     * Creates a summary for creation of a new character from an existing EntityData object
     * @param i the char data to be used for the new char
     * @return a filled
     */
    public NewCharSummary getCharSummary(int i){
      NewCharSummary sum = new NewCharSummary();
    EntityData c = null;
    synchronized (charSelections) {
      c = charSelections.get(i);
    }
    if (c != null) {
View Full Code Here

Examples of com.l2client.model.network.NewCharSummary

     
      @Override
      public void run() {
 
        // TODO visual representation
        NewCharSummary n = new NewCharSummary();
        n.name = e.getName();
        n.templateId = e.getTemplateId();
        n.objectId = e.getObjectId();
        // TODO char inventory for model equip
        n.race = e.getRace();
View Full Code Here

Examples of com.l2client.model.network.NewCharSummary

  public void addCancelActionListener(ActionListener l) {
    this.jButton2.addActionListener(l);
  }

  public NewCharSummary getNewCharSummary(){
    NewCharSummary ch = new NewCharSummary();
    ch.name = nameField.getText();
    ch.race = raceBox.getSelectedIndex();
    ch.sex = genderBox.getSelectedIndex();
    ch.classId = fixClassID(Race.values()[ch.race], classBox.getSelectedItem().toString(), ch.sex);
    ch.hair = hair;
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.