Author Topic: enemies shooting  (Read 8300 times)

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
enemies shooting
« on: 2006-07-21, 10:40:02 PM »
I'm trying to make enemies shoot it all works (i followed a instruction thing i found on this site)except the sprite that shoots is going behind the trigger so you can't see the enemy and you see a trigger in front of him it still shoots just it doesn't look very good because of this :'(

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: enemies shooting
« Reply #1 on: 2006-07-21, 10:57:51 PM »
I'm trying to make enemies shoot it all works (i followed a instruction thing i found on this site)except the sprite that shoots is going behind the trigger so you can't see the enemy and you see a trigger in front of him it still shoots just it doesn't look very good because of this :'(
           
I just found out EVERY sprite goes behind the trigger including the player

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: enemies shooting
« Reply #2 on: 2006-07-22, 08:42:18 AM »
The sprite is the transparent color right?

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: enemies shooting
« Reply #3 on: 2006-07-22, 09:12:45 AM »
I don't think an entirely transparent trigger would work because collision detection is based on non-transparent pixels.  However, you could try making the trigger less visible -- could you just make it 1 pixel?

sam

  • Fanatic
  • ***
  • Posts: 303
  • This statement is false.
    • MSN Messenger - samlancashire@hotmail.com
    • View Profile
    • samlancashire.com
    • Email
Re: enemies shooting
« Reply #4 on: 2006-07-22, 09:27:48 AM »
oh yah.... :D
ugh...*think real hard*
I thought there was a way to fix that...ugg...
arg...a good song just came on now I can't think...
so I guess this 100% useless post is over...

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: enemies shooting
« Reply #5 on: 2006-07-22, 08:00:47 PM »
It is one pixel different than the background colour but rest of it that is the background colour goes around it and completely covers the shooter

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: enemies shooting
« Reply #6 on: 2006-07-23, 06:01:15 AM »
It shouldn't be the background color; it should be the transparent color.  Then it couldn't cover anything.

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: enemies shooting
« Reply #7 on: 2006-07-23, 10:28:47 AM »
You may be confused by my explanation in the Enemy Shooting tutorial.  Let me explain perhaps more visually.  You will need a single-pixel trigger sprite.  that is, create a tileset that has 1x1 tiles, or maybe 3x3 and fill in the center pixel, if you want to make it a little easier.  This sprite should be the trigger.  If you are using larger tiles, i.e. 32x32 graphics and only filling in one color, then problems can arise like you've seen if you don't quite know how transparency works for sprites.

Just create an insignificantly small sprite.
Edward Dassmesser

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: enemies shooting
« Reply #8 on: 2006-07-23, 11:53:07 PM »
I can't get transperensy to work but the 1 pixel sprite idea works thanks ;D

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: enemies shooting
« Reply #9 on: 2006-07-24, 12:19:40 AM »
How do you do transperency i've tried using paste + i can't get it to work

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: enemies shooting
« Reply #10 on: 2006-07-24, 05:37:26 AM »
The color that a sprite uses as the "transparent" color is determined by the color of the top-left pixel in the tileset (the top-left pixel of the first tile in the tileset).  Any other areas using that exact same color will show as transparent.

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: enemies shooting
« Reply #11 on: 2006-07-24, 08:13:52 AM »
I thought the transparent color for a sprite was the color in each of the four corners of the specific frame, and the transparent color for a tileset (when used as tiles on a map) was the top-left pixel
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: enemies shooting
« Reply #12 on: 2006-07-24, 11:04:25 AM »
Nope, the only difference in transparency between tiles and sprites is that tiles can be drawn opaquely if the layer is not specified as transparent.  Sprites are always drawn with a transparency color determined by the top left pixel of the tileset.