this event listener only be called when bodyA and bodyB have contacts More...
#include <CCPhysicsContact.h>
Public Member Functions | |
| virtual bool | hitTest (PhysicsShape *shapeA, PhysicsShape *shapeB) override |
| it will be call when two body have contact. More... | |
| virtual EventListenerPhysicsContactWithBodies * | clone () override |
| Clones the listener, its subclasses have to override this method. More... | |
Public Member Functions inherited from EventListenerPhysicsContact | |
| virtual bool | checkAvailable () override |
| Overrides. More... | |
Static Public Member Functions | |
| static EventListenerPhysicsContactWithBodies * | create (PhysicsBody *bodyA, PhysicsBody *bodyB) |
Static Public Member Functions inherited from EventListenerPhysicsContact | |
| static EventListenerPhysicsContact * | create () |
| create the listener More... | |
Static Public Member Functions inherited from EventListenerCustom | |
| static EventListenerCustom * | create (const std::string &eventName, std::function< void(EventCustom *)> callback) |
| Creates an event listener with type and callback. More... | |
| local | create ( local eventName, local callback) |
| Creates an event listener with type and callback. More... | |
Protected Member Functions | |
| EventListenerPhysicsContactWithBodies () | |
| virtual | ~EventListenerPhysicsContactWithBodies () |
Protected Member Functions inherited from EventListenerPhysicsContact | |
| bool | init () |
| void | onEvent (EventCustom *event) |
| EventListenerPhysicsContact () | |
| virtual | ~EventListenerPhysicsContact () |
Protected Member Functions inherited from EventListenerCustom | |
| EventListenerCustom () | |
| Constructor. More... | |
| bool | init (ListenerID listenerId, std::function< void(EventCustom *)> callback) |
| Initializes event with type and callback function. More... | |
Protected Member Functions inherited from EventListener | |
| EventListener () | |
| Constructor. More... | |
| bool | init (Type t, ListenerID listenerID, std::function< void(Event *)>callback) |
| Initializes event with type and callback function. More... | |
| local | init ( local t, local listenerID, local callback) |
| Initializes event with type and callback function. More... | |
| void | setPaused (bool paused) |
| local | setPaused ( local paused) |
| bool | isPaused () const |
| void | setRegistered (bool registered) |
| local | setRegistered ( local registered) |
| bool | isRegistered () const |
| Type | getType () const |
| ListenerID | getListenerID () const |
| local | getListenerID () |
| void | setFixedPriority (int fixedPriority) |
| int | getFixedPriority () const |
| void | setSceneGraphPriority (Node *node) |
| Node * | getSceneGraphPriority () const |
Protected Attributes | |
| PhysicsBody * | _a |
| PhysicsBody * | _b |
Additional Inherited Members | |
Public Types inherited from EventListener | |
| enum | Type { UNKNOWN, TOUCH_ONE_BY_ONE, TOUCH_ALL_AT_ONCE, KEYBOARD, MOUSE, ACCELERATION, CUSTOM } |
| typedef std::size_t | ListenerID |
Public Attributes inherited from EventListenerPhysicsContact | |
| std::function< bool(EventCustom *event, const PhysicsContact &contact)> | onContactBegin |
| std::function< bool(EventCustom *event, const PhysicsContact &contact, const PhysicsContactPreSolve &solve)> | onContactPreSolve |
| std::function< void(EventCustom *event, const PhysicsContact &contact, const PhysicsContactPostSolve &solve)> | onContactPostSolve |
| std::function< void(EventCustom *event, const PhysicsContact &contact)> | onContactSeperate |
this event listener only be called when bodyA and bodyB have contacts
|
protected |
|
protectedvirtual |
|
overridevirtual |
Clones the listener, its subclasses have to override this method.
Reimplemented from EventListenerPhysicsContact.
|
static |
|
overridevirtual |
it will be call when two body have contact.
if return false, it will not invoke callbacks
Reimplemented from EventListenerPhysicsContact.
|
protected |
|
protected |