Package com.ardor3d.input

Examples of com.ardor3d.input.ControllerInfo


        }
        for (int i = 0; i < controller.getButtonCount(); i++) {
            buttonNames.add(controller.getButtonName(i));
        }

        return new ControllerInfo(controller.getName(), axisNames, buttonNames);
    }
View Full Code Here


            } else if (comp.getIdentifier() instanceof Identifier.Button) {
                buttonNames.add(comp.getName());
            }
        }

        return new ControllerInfo(controller.getName(), axisNames, buttonNames);
    }
View Full Code Here

TOP

Related Classes of com.ardor3d.input.ControllerInfo

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.