Skip to main content

User login

What is OpenID?
  • Log in using OpenID
  • Cancel OpenID login
  • Create new account
  • Request new password
Register
  • Home
  • Browse
    • 2D Art
    • 3D Art
    • Concept Art
    • Textures
    • Music
    • Sound Effects
    • Documents
    • Featured Tutorials
  • Submit Art
  • Collect
    • My Collections
    • Art Collections
  • Forums
  • FAQ
  • Leaderboards
    • All Time
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
    • Weekly
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
  • ❤ Donate
2D Art

Advice for making game objects...

justloveme94
Wednesday, January 16, 2019 - 18:25

Hello everyone, 

I'm new here and of course I'm looking to get my feet wet making a simple game and pixal art. I was messing around with some pixal art and was hoping to get some advice. I am trying to figure out how to size the images/objects. I believe the standard sprite size for an NPC is 32. I was playing around with Graphics Gale and Photoshop. Below is my first attempt and would love to get any feedback. Once I'm done I plan on uploading what I create. Thanks for the help! 

Attachments: 
Preview
Bar Drinks.png Bar Drinks.png 4.1 Kb [6 download(s)]
  • Log in or register to post comments
MedicineStorm
joined 9 years 8 months ago
Thursday, January 17, 2019 - 10:21
MedicineStorm's picture

Those are some tasty looking drinks. Well done there. Beyond that I'm not clear on what you're asking. NPC size is 32? Do you mean 32 pixels by 32 pixels? What does the size of NPC's in your game have to do with the cocktails?

--Medicine Storm

  • Log in or register to post comments
justloveme94
joined 3 years 4 months ago
Thursday, January 17, 2019 - 11:13

Ah I'm sorry I wasn't clear enough! Let me try again. I did mean 32 by 32 pixels. Do objects/items need to be a certain size? I was looking to make more items to use in game but wanted to make sure the size would correspond to the rest of the LPC assets I'm using. Thanks!

  • Log in or register to post comments
MedicineStorm
joined 9 years 8 months ago
Thursday, January 17, 2019 - 12:15
MedicineStorm's picture

Oh, you're talking specifically about the LPC set! 

I don't believe there is any item size specifications for the LPC beyond the fact that most tiles are no larger than 32x32. That is assuming these are not equipment items that show up in the character animations?

The NPC's and other characters are not 32x32 though. They are 32x48 (or 48x64 including all equipment, clothing, and margin for animation). See the official LPC style guide for more information: http://lpc.opengameart.org/static/lpc-style-guide/styleguide.html#charac...

--Medicine Storm

  • Log in or register to post comments
justloveme94
joined 3 years 4 months ago
Thursday, January 17, 2019 - 19:18

Oh nice, this looks interesting! Thanks for the help! One last question, if I were to make weapons for a sprite, would they to follow a particular measurement? 

  • Log in or register to post comments
MedicineStorm
joined 9 years 8 months ago
Friday, January 18, 2019 - 08:23
MedicineStorm's picture

Only in that they must visually make sense on the base and not extend beyond the bounds of each frame of animation. See the https://opengameart.org/content/lpc-medieval-fantasy-character-sprites clothing and weapon spritesheets as examples. The clothing layers are separate from the character base, but they move and adjust position as if they were on the naked character base. This allows each layer to be stacked on the base spritesheet to complete the fully clothed and equipped animation. However, if a weapon (like a long spear) exceeded the bounds of the sprite frame (48x64 typically) then the tip of the spear would be clipped from one frame, but appear as a phantom floating spearpoint in the next frame.

--Medicine Storm

  • Log in or register to post comments
bluecarrot16
joined 7 years 6 months ago
Monday, January 21, 2019 - 13:24

Awesome to hear you're interested in making stuff in the LPC style! A few other things that may be helpful:

- For sprites, there was originally a "Universal Spritesheet" repository here https://github.com/jrconway3/Universal-LPC-spritesheet which attempted to compile all the different clothing, weapons, etc. into a single spritesheet, so you could assemble sprites by turning on and off layers in GIMP. That hasn't been update in a while, however there was also a web app allowing you to do the same thing graphically. People keep making new versions of it, see semi-recent discussion here: https://opengameart.org/forumtopic/lpc-updated-spritesheet-generator . I think this is the most recent/comprehensive version, which is by castelonia: https://sanderfrenken.github.io/Universal-LPC-Spritesheet-Character-Gene... . 

- For non-sprites, there's some additional useful information about style, size, perspective, etc. in the LPC style guide that MedicineStorm linked if you scroll up (and down). For the drinks you drew for instance (which look really nice!), you'd probably want to adjust the perspective a bit so that the top of the drink is also visible. 

Let me know if you have any questions, I've spent a lot of time with those assets. 

  • Log in or register to post comments
justloveme94
joined 3 years 4 months ago
Thursday, January 24, 2019 - 08:37

Hello all, I really appreciated the feedback on my last post as I attempt to get better at pixal art. Thought I would attempt to moderize the LPC sprites. I wanted to make a military commander fellow so I thought it would be neat to make a cool looking cap. I thought it turned out pretty good. I went to run it in my game and the sprite's hair started clipping through the cap. I'm not sure where I went wrong. Thanks for the help! 

Attachments: 
Preview
Military Cap.PNG Military Cap.PNG 86.3 Kb [4 download(s)]
  • Log in or register to post comments
IllusionOfMana
joined 4 years 3 months ago
Thursday, January 24, 2019 - 10:14
IllusionOfMana's picture

have you tried altering the sprite of the character itself instead of creating a new hat sprite.
Or if the hair of a sprite is a separate object perhaps replacing that with the hat object. If you want to keep some form of hair then perhaps draw some hair to go along with your hat. I dont know how LPC works but Im pretty sure either of these will be your best bet.

  • Log in or register to post comments
bluecarrot16
joined 7 years 6 months ago
Friday, January 25, 2019 - 03:47

Can you show an examples of the sprite clipping through the hair? If the hair is taller than the hat, it will clip through the top (assuming you're layering base -> hair -> hat), so you'll need to adjust that in your engine somehow. bigbeargames was working on making masks for every hat to get rid of clipping hair; see https://opengameart.org/forumtopic/lpc-updated-spritesheet-generator?page=1 . 

  • Log in or register to post comments