Package aspect.entity.behavior

Examples of aspect.entity.behavior.PlayerControl


        World.main.add(new Player(position));
    }
   
    public Player(Vector3 pos) {
        transform.position = pos;
        control = new PlayerControl();
        addBehavior(control);
        AspectRenderer.camera = transform;
        /*
        try {
            addBehavior(new AudioListener());
View Full Code Here

TOP

Related Classes of aspect.entity.behavior.PlayerControl

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.