In my app I have a background and there is an object say a table placed on the background. Now I want to color the table only. Is there any way to do this in AndEngine? If so please provide a sample code.
What should be the mechanism?
In my app I have a background and there is an object say a
Share
You can set color to any entity on your scene.
Just use
entity.setColor(). It will multiply your color and object native color.If you need just new color, initially make your object white.
Hope this help.