I have a problem using alpha mapping with the attached spaceship.
It was originally a 3ds object I saved as a dbo, when I set alpha mapping on it just turns red (one of the materials I think).
Use the code below to test it:
autocam off
sync on
sync rate 60
color backdrop rgb(0,0,0)
load object "Enemy1.dbo", 1
set object transparency 1,1
position camera 0,100,0
point camera 0,0,0
do
set cursor 0,0
print "press space to turn alpha mapping on/off"
if am=0 then print "no alpha mapping applied yet..."
if am=1 then print "alpha mapping on (0)"
if am=-1 then print "alpha mapping off (100)"
if spacekey()
if ps=0
if am=0 or am=-1
am=1
else
if am=1 then am=-1
endif
endif
ps=1
else
ps=0
endif
if am=1 then set alpha mapping on 1, 0
if am=-1 then set alpha mapping on 1, 100
sync
loop
...and yes I did search the forums and tried numerous clever sounding ideas but none worked!
Any help would be great thanks!