16
Meet and Greet! / Re: Poronimu
« on: December 20, 2016, 04:28:04 PM »
I already PM'd him about this (with a link), try not to post stuff like that on here.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
I don't think anyone's made a public fangame yet in something besides gamemaker or MMF. The only exception that comes to mind is co-op
//create
idle=false;
//step
if(sprite_index=[sprite you want to use for second animation]){
idle=true;
}else{
idle=false;
}
if(image_index=3 && idle!=true){
sprite_index=[sprite you want to use for second animation];
}