Package com.l2client.model.jme

Examples of com.l2client.model.jme.ItemModel


        item.itemId = itemId;
        item.worldPosition =   ServerValues.getClientCoords(x, y, z);
        item.stackable = stackable;
        item.count = count;
       
        ItemModel i = new ItemModel(item);
        i.attachVisuals();
        Singleton.get().getNavManager().snapToGround(item.worldPosition);
        ent.setLocalTranslation(item.worldPosition);
        ent.setName(i.getName());
        ent.attachChild(i);
       
       
        Singleton.get().getSceneManager().changeItemNode(ent,Action.ADD);
      }
View Full Code Here

TOP

Related Classes of com.l2client.model.jme.ItemModel

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.