A Flash Developer Resource Site

Page 2 of 4 FirstFirst 1234 LastLast
Results 21 to 40 of 68

Thread: pixel art

  1. #21
    DOT-INVADER marmotte's Avatar
    Join Date
    May 2002
    Location
    Dot-Switzerland
    Posts
    2,601
    very good, markp.com!!! their little game (mac only) is so fun also...
    damn, i'm begining to love pixel art!!!

  2. #22
    Optimist Prime StenFLASH's Avatar
    Join Date
    Mar 2004
    Location
    Canberra, Australia
    Posts
    252
    I'm surprised no one posted a link to Zoggles!

    He's got lots of high quality tutorials for pixel art and is damn good at it himself

    Zoggles

    I found this site to be the most useful, in learning pixel art, of all the pixel sites i'd been to. Besides Zoggles own tutorials, there are many others from other sites (like Tsugumo's tutorials from pixeltutorial.cjb.net, with permission of course) all presented in a nice clean manner, and better yet, in the one place.

    I hope you all find this site as useful as I did

  3. #23
    SaphuA SaphuA's Avatar
    Join Date
    Oct 2002
    Location
    The Netherlands
    Posts
    2,182

    :)

    Omg how old is this threat?!
    I was still mosterdfles_flash there

    Anywayz, those links are great... had most of them already bookmarked

    Who dug this up anyway?

  4. #24
    Phantom Flasher... Markp.com's Avatar
    Join Date
    May 2000
    Posts
    16,034
    I think its linked from the Knowledgebase... If not it should be

  5. #25
    DOT-INVADER marmotte's Avatar
    Join Date
    May 2002
    Location
    Dot-Switzerland
    Posts
    2,601
    thanks StenFLASH, another cool link...

    and w00t, what an old thread...

  6. #26
    Be Nice to Newbies
    Join Date
    Mar 2004
    Location
    NJ, USA
    Posts
    118
    Hey guys awesome links! I'll post my pixel links later when I get home, they're in my Browsers' Favorites Folder. Long live Pixel Art!

    - Mike
    Current Project:
    MicroGT

  7. #27
    Junior Member
    Join Date
    Mar 2004
    Location
    Earth
    Posts
    1
    I've always been a fan of pixel art. So organized, so neat. I appreciate the detail so much more then the subject matter.


  8. #28
    Optimist Prime StenFLASH's Avatar
    Join Date
    Mar 2004
    Location
    Canberra, Australia
    Posts
    252
    Yeah, this is a pretty old thread indeed, which I got to through the KnowledgeBase, but I thought the link I gave was good enough to warrant digging it up

  9. #29

  10. #30
    Senior Member random10122's Avatar
    Join Date
    Mar 2002
    Location
    Sheffield, UK
    Posts
    1,747
    lovin' those links... pixel art makes me dribble.

    fracture2 - the sequel
    fracture - retro shooter
    blog - games, design and the rest

    "2D is a format, not a limitation" -Luis Barriga

  11. #31
    Pixel Freak God label's Avatar
    Join Date
    Dec 2000
    Location
    under your bed!
    Posts
    553
    yay! viva los pixels!!
    I earned my avatar, not like you noobz!

  12. #32
    Junior Member
    Join Date
    Jan 2004
    Posts
    2
    check this out:

    www.pixecute.com/pixchar

  13. #33
    Senior Member kendude's Avatar
    Join Date
    Sep 2003
    Location
    Hartford, CT USA
    Posts
    877
    What is the rule with pixel art and Flash? My tiles are 20 x 20 pixels, When I make my pixel art 20 x 20, it looks funky, as if the lines on the left and top get doubled up (1px looks like 2). I tried making the tile 22 pixels, with a clear border and that worked, but the image on the bottom and right would get cut off by the next tile. I then kept the image 22 pixels inside the 20 pixel tile, but moved the registration point to -1,-1. This yielded the same funky appearance as using 20 pixel art in a 20 pixel tile. What is the correct method? Thanks.

    *I am using gifs that contain transparent pixels.

  14. #34
    Ihoss
    Guest
    When I make tiles I use png. I don't have the problem when I have a 1 pixel border around the tiles. This border is transparent btw.

  15. #35
    Senior Member kendude's Avatar
    Join Date
    Sep 2003
    Location
    Hartford, CT USA
    Posts
    877
    So should my art only be 18x18 max, with a clear 1 pixel border around it for a 20x20 tile? Will there look like a space in between tiles?

  16. #36
    DOT-INVADER marmotte's Avatar
    Join Date
    May 2002
    Location
    Dot-Switzerland
    Posts
    2,601
    that damn flash issue...

    to avoid that, here's what i always do:
    frame 1 of all your games using pixels, bitmap etc...
    code:

    fscommand("fullscreen","false")
    fscommand("allowscale","false")
    _quality = "low"
    _xscale = _yscale = 99.95



    you may also test to have 1 pixel transparent outline... so your tile grid is 20x20, but the tiles themselves are 22x22, because of an invisible border you have in the original tile/bitmap. anyway, the above code should get rid of that, as far as i experienced.

    another thing that can help is the MC registration point (you can choose it when you create a new MC...)

  17. #37
    Ihoss
    Guest
    kendude, make your graphics 22*22. Then start to draw your 20*20 picture so you have a frame that is 1 pixel thick around the whole thing. Colour it some colour tha is not used in the tile. Then (if you use photoshop) select it wit hthe magic wand and delete it. Now save it as tile1.png without flattening the image (If it has many layers then flatten it before you delete the colour). In your game you put the tile in the center and pretend that its 20*20. That means that when you arrange the tiles on screen you set its _x to be x*20 (x beeing the x position in the array).

    I have an example that uses the border only for the hero (Its a 6 wheel robot ). All the others work without it. Im not sure why
    Attached Files Attached Files

  18. #38
    Optimist Prime StenFLASH's Avatar
    Join Date
    Mar 2004
    Location
    Canberra, Australia
    Posts
    252
    There's a much easier way to fix image bug in flash without needing to add a 1 pixel transparent border or have any AS. Basically all you need to do is get your raster image and put it into a Graphic symbol in the negative area. For example:

    Your image is 20x20. Convert it to a graphic symbol and make it's location in this graphic symbol -20, -20. Whenever you want to use the image, use it via it's graphic symbol (as opposed to directly) and you wont get any kind of mistakes with pixels being cut-off/doubled.

    Here's a site that goes into more detail: Flash Image Bug

  19. #39
    Be Nice to Newbies
    Join Date
    Mar 2004
    Location
    NJ, USA
    Posts
    118
    StenFlash, thanks for the solution, I will be doing this to all my pixel drawings. This problem is such a pain, I even had to do different load movie techniques to get around it. Hopefully this new solution will work...

    - Mike
    Current Project:
    MicroGT

  20. #40
    Ihoss
    Guest
    Cant you convert it to vector? Just break it apart? (Ctrl+B)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center