Thomas:
The fix for my object (Material 0) didi not work for the Picture 18 object. In the 3D Script for the Picture 18 object, at the 3
Picture commands, the last argument (Mask) is set to 1, which enables the alpha channel of the image. This should be changed to 0 (zero) so the alpha channel is disabled.
In the 3D Script, at Lines 179, 182 and 184, there are
Picture commands, the last argument in each one should be changed from 1 to 0 (zero):
if gs_picture_custom = 0 then
picture 1, a - 2*bIsFrame * _picOffset, zzyzx - 2*bIsFrame * _picOffset,
0
else
if gs_picture_name <> "" then
picture gs_picture_name, a - 2*bIsFrame * _picOffset, zzyzx - 2*bIsFrame * _picOffset,
0
else
picture 1, a - 2*bIsFrame * _picOffset, zzyzx - 2*bIsFrame * _picOffset,
0
endif
endif
It may be that only one of these needs to be changed in your case, but I haven't spent the time to fully understand the if/then statements here.
David