How do i create a character?

how do i create a character ? im not familiar with creating “assets” :stuck_out_tongue:

Do you mean placing a character in your game or creating the graphics of a character?

i want to create or find assets that i can use for making games :stuck_out_tongue:

Maybe try https://opengameart.org/ or google for paid ones with more quality graphics. Humble bundle often has gameresource bundles too.

If you want to draw it yourself then just save as png or tilesheet png that has many same size frames for animation.

Load in preload with:
this.load.image(‘cloud’, ‘assets/cloud.png’);
this.load.spritesheet(‘mouse_running’,‘assets/mouse_running.png’,{ frameWidth: 216, frameHeight: 180, endFrame: 12 });

im looking to make some games with free assets at first ^^ then making more advanced with good shit :smiley:

ty for info!

Here’s a small game prototype of mine with a game character done for a short game jam https://github.com/FreezingMoon/Frank-in-Shirt - it’s using a sprite sheet (should probably submit that to OGA as well soon) for up/down/right side or so, while left side is mirrored. Older version of Phaser being used, but I might poke at that prototype some more at some point and update it ^_^’