Package org.terasology.logic.characters.events

Examples of org.terasology.logic.characters.events.DropItemRequest


            );

            //send DropItemRequest
            Vector3f impulseVector = new Vector3f(playerCamera.getViewingDirection());
            impulseVector.scale(dropPower);
            entity.send(new DropItemRequest(selectedItemEntity, entity,
                    impulseVector,
                    newPosition));

            character.handAnimation = 0.5f;
View Full Code Here

TOP

Related Classes of org.terasology.logic.characters.events.DropItemRequest

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.