[SOLVED] How to override a texture supplied by a bam file

You can also simply do:

model.setTextureOff(1)
model.setTexture(myTex, 1)

The first line disables all textures at this node and below; the second line sets only myTex. The same override parameter, 1 in this case, must be supplied to both functions; the override value must be higher than 0 (or whatever is already in the model) in order to make your new texture operation supercede the textures already on the model.

David