PT
Developer Forums
Register
Login
AppGameKit Classic Chat
->
How can i show a sprite only when i want?
<
1
>
C
CamiRibeiro
Joined:
9th Jun 2020
Location:
Posted:
10th Feb 2021 19:15
I want to show a sprite only when my score is equal to a multiple of 15.
P
PartTimeCoder
Joined:
9th Mar 2015
Location:
London UK
Posted:
10th Feb 2021 20:36
Try this?
+ Code Snippet
my_score=105 if Mod( my_score, 15)=0 SetSpriteVisible(MY_SPRITE_ID, 0) endif