Headspritesect: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
One (talk | contribs)
No edit summary
No edit summary
 
Line 1: Line 1:
'''headspritesect''' <spriteID> <sectID>
'''headspritesect''' ''sprite'' ''sect''


Returns the ID of first sprite in the sector. The purpose of this command to scan through all sprites in the specified sector. The [[nextspritesect]] and [[prevspritesect]] should be used to go forward and back through the list of actors.
Returns the ID of the first sprite in the sector. This command can be used to scan through all sprites in the specified sector. The [[nextspritesect]] and [[prevspritesect]] should be used to go forward and back through the list of spritesSee also [[headspritestat]], which is identical in operation but based on the sprite's [[statnum]] rather than its [[sectnum]].
 
  '''headspritestat''' i 1 // look for all sprites with the stat of 0
whilevarn i -1
{
// use i as the sprite ID
addlogvar i
nextspritestat i i
}


[[Category:EDuke32 specific commands]]
[[Category:EDuke32 specific commands]]
[[Category:Sprite manipulation]]
[[Category:Sprite manipulation]]

Latest revision as of 03:16, 14 July 2009

headspritesect sprite sect

Returns the ID of the first sprite in the sector. This command can be used to scan through all sprites in the specified sector. The nextspritesect and prevspritesect should be used to go forward and back through the list of sprites. See also headspritestat, which is identical in operation but based on the sprite's statnum rather than its sectnum.