I looked at the help file and I see 3 versions of TestCollisionRect. It seems that there is one designed for plan rules, like you pointed out bluemonkmn. This one looks like the TestCollisionMask I am used to: pass a sprite category and receive an integer with the value of the found sprite or -1 if no collision.
According to the help file, I see two versions for TestCollisionRect in sprite rules.
The first one says this:
Determine if this sprite is planning to overlap the target sprite.
public bool TestCollisionRect(
SpriteBase TargetSprite
)
Parameters
TargetSprite (SpriteBase)
Sprite against which planned overlap is checked.
Return Value
True if the sprite will overlap TargetSprite.
Not really what I'm looking for, since I want to verify a category of sprites. It would seem that it is the rule used in the sprite rules dropdown.
The second rule explained in the help file is this one:
Determine whether the solidity rectangle of the sprite overlaps that of any sprite in the specified category.
public int TestCollisionRect(
SpriteCollection Targets
)
Parameters
Targets (SpriteCollection)
A sprite category containing sprites that will be checked for collision with this sprite.
Return Value
The index of the sprite within the category if a collision is occurring, otherwise -1.
That's the one I would like to use. Is it a remnant of a previous SGDK2 version that is still in the help file but not in the program?
Sorry for stealing your time...
