Package com.ardor3d.util.export

Examples of com.ardor3d.util.export.InputCapsule.readSavable()


        _swarmRangeSQ = cap.readDouble("swarmRangeSQ", DEFAULT_SWARM_RANGE_SQ);
        _deviance = cap.readDouble("deviance", DEFAULT_DEVIANCE);
        _turnSpeed = cap.readDouble("turnSpeed", DEFAULT_TURN_SPEED);
        _speedBump = cap.readDouble("speedBump", DEFAULT_SPEED_BUMP);
        _maxSpeed = cap.readDouble("maxSpeed", DEFAULT_MAX_SPEED);
        _swarmOffset.set((Vector3) cap.readSavable("swarmOffset", new Vector3()));
    }

    @Override
    public Class<? extends SwarmInfluence> getClassTag() {
        return getClass();
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.