blob: 83824ece63d0291200f424d7e564b9544f3c2442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---@class cc.PhysicsContact :cc.EventCustom
local PhysicsContact={ }
cc.PhysicsContact=PhysicsContact
---* Get contact data.
---@return cc.PhysicsContactData
function PhysicsContact:getContactData () end
---* Get the event code
---@return int
function PhysicsContact:getEventCode () end
---* Get previous contact data
---@return cc.PhysicsContactData
function PhysicsContact:getPreContactData () end
---* Get contact shape A.
---@return cc.PhysicsShape
function PhysicsContact:getShapeA () end
---* Get contact shape B.
---@return cc.PhysicsShape
function PhysicsContact:getShapeB () end
|