blob: 185931a8a1e67c3b9f3d986be10f8f7ba2ac73d3 (
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
26
27
28
29
30
31
32
|
---@meta
---@class cc.AttachNode :cc.Node
local AttachNode={ }
cc.AttachNode=AttachNode
---* creates an AttachNode<br>
---* param attachBone The bone to which the AttachNode is going to attach, the attacheBone must be a bone of the AttachNode's parent
---@param attachBone cc.Bone3D
---@return self
function AttachNode:create (attachBone) end
---*
---@param renderer cc.Renderer
---@param parentTransform mat4_table
---@param parentFlags unsigned_int
---@return self
function AttachNode:visit (renderer,parentTransform,parentFlags) end
---*
---@return mat4_table
function AttachNode:getWorldToNodeTransform () end
---*
---@return mat4_table
function AttachNode:getNodeToWorldTransform () end
---*
---@return mat4_table
function AttachNode:getNodeToParentTransform () end
---*
---@return self
function AttachNode:AttachNode () end
|