Translucent Actor
I am having a little trouble on how to make a translucent actor.
Would like to have an actor that will allow the background to be seen through it.
Would like to have an actor that will allow the background to be seen through it.
Comments
________________________________
【ツ】iPhone Icon Pack【ツ】
Free high score demo here (simple) and here (advanced)
________________________________
【ツ】iPhone Icon Pack【ツ】
Free high score demo here (simple) and here (advanced)
( I was prowling around the forum, waiting to be able to answer a question, and this was my chance, because the rest was too hard to answer haha)
Is it also advisable to go to actor attributes, and "Graphics" and then uncheck the "visible" ?
does it work out the same with giving an Alpha as 0?
cheers
Anton
On the other hand if you set Visibility to false it wont load the RAM and will see some more fps but you won't be able to change it during gameplay.
________________________________
【ツ】iPhone Icon Pack【ツ】
Free high score demo here (simple) and here (advanced)
I thought alpha was on or off with zero or one. Decimals... Thanks.
ACTOR A
touched - inside
Change Att game.book to 1
interpolate to alpha 1
if game.cart = 1
interpolate to (screen x,y)
CART ACTOR
touch - inside
if game.book = 1
change att to game.cart = 1
touch - inside
if game.switch = 1
change att to game.cart = 2
ACTOR B
touched - inside
Change Att game.switch to 1
interpolate to alpha 1
if game.cart = 2
interpolate to (screen x,y)
This only works for the actor 1 not number two?