show_image - Change image opacity to 1.0
nil
show_image( vid, time )
This is a specific case of the more general blend_image function where the
opacity argument has been hard-coded to 1.0 (opaque, visible, default
blendmode is disabled). This function accepts either single VID s or a
group of VID s packed in a n-indexed table.
function show_image0()
a = fill_surface(128, 128, 255, 0, 0);
show_image({a,b}, 100);
end
function show_image0()
a = fill_surface(128, 128, 255, 0, 0);
show_image(a, 0.5, 100);
end