i'm looking for proper transarency effects, where thing such as clouds,smoke etc, can be made partially visible so that they can overlap the screen: eg: the mist in the Lost Woods in Zelda 3.
I've tried different things: such as making the image only appear every second millisec:
-----------------------
If MilliSecs() > tmrS+1 Then
tmrS=MilliSecs()
transfrm=(transfrm+1) Mod 2
EndIf
If transfrm=1 DrawImage mist,x,y
-----------------------------
I've also tried using this:
timeroddeven=timeroddeven+1
if timeroddeven=2 timeroddeven=1
if timeroddeven=1 drawimage mist,x,y
----------------------------
The end result is always the same: a rapidly flashing, flickering transparency that destroys the atmosphere i was after, making it pretty useless.....
Can anyone help?
I've tried different things: such as making the image only appear every second millisec:
-----------------------
If MilliSecs() > tmrS+1 Then
tmrS=MilliSecs()
transfrm=(transfrm+1) Mod 2
EndIf
If transfrm=1 DrawImage mist,x,y
-----------------------------
I've also tried using this:
timeroddeven=timeroddeven+1
if timeroddeven=2 timeroddeven=1
if timeroddeven=1 drawimage mist,x,y
----------------------------
The end result is always the same: a rapidly flashing, flickering transparency that destroys the atmosphere i was after, making it pretty useless.....
Can anyone help?