This website works better with JavaScript
Accueil
Explorer
Aide
S'inscrire
Connexion
tianhaobu
/
ddmyx
Suivre
1
Voter
0
Fork
2
Fichiers
Tickets
0
Pull Requests
0
Wiki
Branche:
master
Branches
Tags
content_update
dev-better-input
dev-light-system
dev-new-wheels
master
test0311
ddmyx
/
objects
/
oRippleShrink
/
Step_0.gml
Step_0.gml
142 B
Lien permanent
Historique
Raw
1
2
3
4
5
6
7
8
9
10
11
if !is_finished
{
r_in -= shrink_speed;
if r_in <= 0
{
r_in = 0;
is_finished = true;
callback();
}
}