Get Texture of Material

Hi,
is there a way to get the texture of a material of a model that is loaded from a .scene file?

you can get all material params on a material.
[java]
model.getMaterial().getTexture(“ColorMap”)
[/java]

@nehon said: you can get all material params on a material. [java] model.getMaterial().getTexture("ColorMap") [/java]

I so wish it were that easy. :-/

It’s more like:
[java]
mode.getMaterial().getTextureParam(“ColorMap”).getTextureValue()
[/java]

…getting things like colors and stuff is even trickier.

uh you’re right…