Phaser API Documentation

  Version: 
<private> collideGroupVsGroup(group1, group2, [collideCallback], [processCallback], [callbackContext], overlapOnly)

Description:

Internal helper for Group vs. Group collisions. Please use Phaser.Physics.Arcade.World#collide instead.

Parameters:

name type arguments description
group1 Phaser.GameObjects.Group

The first object to check for collision.

group2 Phaser.GameObjects.Group

The second object to check for collision.

collideCallback ArcadePhysicsCallback <optional>

An optional callback function that is called if the objects collide.

processCallback ArcadePhysicsCallback <optional>

An optional callback function that lets you perform additional checks against the two objects if they collide. If this is set then collideCallback will only be called if this callback returns true.

callbackContext any <optional>

The context in which to run the callbacks.

overlapOnly boolean

Whether this is a collision or overlap check.

Returns:
Description:

True if any objects overlap (with overlapOnly); or true if any overlapping objects were separated.

Type:
  • boolean
Since: 3.0.0