Blend mapping may be what you want to use.
` Make an overlay for the plane.
` You could also load a png with
` part of it being transparent.
cls 0
ink rgb(255,255,255),0
text 5,12," BLEND"
text 5,25,"MAPPING "
set image colorkey 0,0,0
get image 2,0,0,64,64
` Make the plane and color it.
` You could also use a texture
` instead of coloring it.
make object plane 1,1,1
color object 1,rgb(0,0,255)
set blend mapping on 1,2,13
wait key
You said
Quote: "Is there a way to colorize a plain object...?"
- I'm not sure now it would work on a complex object with many polygons, but you could try it.