blob: d85d7f4fb12eda36ef54c6ac789fd17c1e69039c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---@meta
---@class cc.PhysicsSprite3D :cc.Sprite3D
local PhysicsSprite3D={ }
cc.PhysicsSprite3D=PhysicsSprite3D
---* synchronize node transformation to physics.
---@return self
function PhysicsSprite3D:syncNodeToPhysics () end
---* synchronize physics transformation to node.
---@return self
function PhysicsSprite3D:syncPhysicsToNode () end
---* Get the Physics3DObject.
---@return cc.Physics3DObject
function PhysicsSprite3D:getPhysicsObj () end
---* Set synchronization flag, see Physics3DComponent.
---@param syncFlag int
---@return self
function PhysicsSprite3D:setSyncFlag (syncFlag) end
---*
---@return self
function PhysicsSprite3D:PhysicsSprite3D () end
|