Discuss Scratch

OwenTheMousey
Scratcher
4 posts

How can I make my sprite reappear slowly instead of disappearing slowly with the ghost effect?

I tried using
set [ ghost] effect to (100)
repeat (10)
change [ ghost] effect by (-10)
end
already, but it didn't work
TosNoom
Scratcher
46 posts

How can I make my sprite reappear slowly instead of disappearing slowly with the ghost effect?

OwenTheMousey wrote:

I tried using
set [ ghost] effect to (100)
repeat (10)
change [ ghost] effect by (-10)
end
already, but it didn't work
Maybe use a wait 0.4 seconds block.

DONT YOU DARE LOOK HERE
FluffySparkles22
Scratcher
47 posts

How can I make my sprite reappear slowly instead of disappearing slowly with the ghost effect?

Its minus ten on the script. Minus ten makes the thing slowly SHOW. Ten makes it disappear
Try:
when green flag clicked
repeat (100)
show
change [Ghost v] effect by (1)
end
wait (1) secs
repeat (100)
change [ghost v] effect by (-1)
end
cookieclickerer33
Scratcher
1000+ posts

How can I make my sprite reappear slowly instead of disappearing slowly with the ghost effect?

OwenTheMousey wrote:

I tried using
set [ ghost] effect to (100)
repeat (10)
change [ ghost] effect by (-10)
end
already, but it didn't work
Strange it works fine for me, is it in a run without screen refresh custom block?

⠀ ⠀ I beat Mario 64 yay! ⠀⠀ ⠀ ⠀ ⠀ ⠀ I love you ivy & may :3
⠀ ⠀ ⠀ ⠀ ⠀ ⠀⠀ ⠀ ⠀GEOMETRY DASH

AlguienContento
Scratcher
100+ posts

How can I make my sprite reappear slowly instead of disappearing slowly with the ghost effect?

If you want to make it appear and not DISappear, you simply have to make this code:

set [ghost v] effect to (0)
repeat (10)
change [ghost v] effect by (10)
end

I hope this helps! If you have any questions, you can ask me again


« AlguienContento »
ᵔᴗᵔ


AC • They/them • Art/arte • Games/juegos • Tutorial • ♡ • etc.
OhOkSir12345
Scratcher
1000+ posts

How can I make my sprite reappear slowly instead of disappearing slowly with the ghost effect?

AlguienContento wrote:

If you want to make it appear and not DISappear, you simply have to make this code:

set [ghost v] effect to (0)
repeat (10)
change [ghost v] effect by (10)
end

I hope this helps! If you have any questions, you can ask me again

No??? Changing ghost by positive 10 makes it disappear i think you need to do it like

set [ghost v] effect to (100)
repeat (10)
change [ghost v] effect by (-10)
end

But then it would be too fast, maybe change the -10 to -1

Powered by DjangoBB