-
Sprite engine bug
Hello, I made sprite engine but does not work as it should be. When I press right or down arrow
everything seems okay but when I press up or left arrow Animation player starts to jump:(
Please help me...
Links to file :
mirror1:http://rapidshare.com/files/278350273/SE.rar.html
mirror2:http://www.speedyshare.com/297454670.html
mirror3:http://www.storage.to/get/AYGLW40O/SE.rar
thanks in advance
-
Re: Sprite engine bug
OK I figured it out.
Make these changes;
Event 11: Change < to <=
Event 13: Change < to <=
Event 19: Change X( "Buffer" )+32 > Alterable Value X( "Active Picture" ) to Change X( "Buffer" )+32 >= Alterable Value X( "Active Picture" )
Event 19: Change Y( "Buffer" ) <= Alterable Value Y( "Active Picture" ) to Y( "Buffer" ) < Alterable Value Y( "Active Picture" )
-
Re: Sprite engine bug
Thanks it's work but I change Event 15 and Event 16 too
Event 15-> Start loop "Buffer X" 20 times to Start loop "Buffer X" 22 times
Event 16-> Start loop "Buffer Y" 15 times to Start loop "Buffer Y" 16 times
because when player X position greter 608 player
becomes invisible so i fix it makes 22 loop
and the same with Y position but maybe you know another way to fix it?
-
Re: Sprite engine bug