Transculent object

Hello,

settings the rgba color to transculent doesn’t work on material.

[java]

Material mat = new Material(assetManager, “Common/MatDefs/Misc/SolidColor.j3md”);

mat.setColor(“m_Color”, new ColorRGBA(0, 0, 0, 0));[/java]

this dont cause the object to be translucent.

Try

[java]

mat.getAdditionalRenderState().setBlendMode(BlendMode.Alpha);

[/java]

Theres even a drag&drop example in the Palette of jMP for this :stuck_out_tongue_winking_eye:

thx.