return t3;
}
private void importDogDae() {
final ResourceSource rts = new URLResourceSource(ResourceLocatorTool.getClassPathResource(
AnimationBlinnPhongExample.class,
"com/ardor3d/example/media/models/collada/juanita/dog_Apr18_normals.dds"));
final Texture t = TextureManager.load(rts, Texture.MinificationFilter.NearestNeighborNearestMipMap, true);
final ResourceSource specularRS = new URLResourceSource(ResourceLocatorTool.getClassPathResource(
AnimationBlinnPhongExample.class,
"com/ardor3d/example/media/models/collada/juanita/dog_Apr18_specular.dds"));
final Texture specular = TextureManager.load(specularRS,
Texture.MinificationFilter.NearestNeighborNearestMipMap, false);
colladaImporter = new ColladaImporter();
final ResourceSource rs = ResourceLocatorTool.locateResource(ResourceLocatorTool.TYPE_MODEL,
"com/ardor3d/example/media/models/collada/juanita/dog_Apr18_smooth.dae");
try {
colladaStorage = colladaImporter.load(rs);
} catch (final IOException ex) {
ex.printStackTrace();