Package nu3a.light

Examples of nu3a.light.N3LightData


      throws Exception {
    String name = infoNode.getAttribute("name");
    Element data = (Element) infoNode.getElementsByTagName("internal")
        .item(0);
    int index = Integer.parseInt(data.getAttribute("index"));
    N3LightData l = (N3LightData) resources.resourceAt(index);
    N3Light result = new N3Light(l, scene, name);

    data = (Element) infoNode.getElementsByTagName("collisionable").item(0);
    result.setCollisionable((new Boolean(data.getAttribute("value")))
        .booleanValue());
View Full Code Here

TOP

Related Classes of nu3a.light.N3LightData

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.