dIlLiN wrote:How do I do an animation of walking with left legs and right legs in front alternating?
You create an image composed of multiple equal sized frames that show the animation.
dIlLiN wrote:How do I shoot diagonal?
All you need to do is make the bullet move in the direction you want. You can do it through angle, or xvelocity/yvelocity.
bullet -> Create Actor -> Script Editor
- Code: Select all
- angle=45;
 directional_velocity=20;
or
- Code: Select all
- xvelocity=10;
 yvelocity=10;
dIlLiN wrote:How do I do animation of jumping along with gravitational effect?
You can do this through animation effect, or you could just implement gravity.
player -> Draw Actor -> Script Editor
- Code: Select all
- yvelocity++;
That way when you jump, you set yvelocity equal to -15 or similar and the player will arc as if influenced by gravity.