axmol/cocos/scripting/lua-bindings/auto/api/DrawNode.lua

81 lines
2.2 KiB
Lua
Raw Normal View History

2014-03-10 14:04:58 +08:00
--------------------------------
-- @module DrawNode
-- @extend Node
-- @parent_module cc
2014-03-10 14:04:58 +08:00
--------------------------------
-- draw a quadratic bezier curve with color and number of segments
2014-03-10 14:04:58 +08:00
-- @function [parent=#DrawNode] drawQuadraticBezier
-- @param self
-- @param #vec2_table from
-- @param #vec2_table control
-- @param #vec2_table to
-- @param #unsigned int segments
-- @param #color4f_table color
2014-03-10 14:04:58 +08:00
--------------------------------
--
2014-03-10 14:04:58 +08:00
-- @function [parent=#DrawNode] onDraw
-- @param self
-- @param #mat4_table transform
-- @param #unsigned int flags
2014-03-10 14:04:58 +08:00
--------------------------------
-- Clear the geometry in the node's buffer.
2014-03-10 14:04:58 +08:00
-- @function [parent=#DrawNode] clear
-- @param self
--------------------------------
-- draw a triangle with color
2014-03-10 14:04:58 +08:00
-- @function [parent=#DrawNode] drawTriangle
-- @param self
-- @param #vec2_table p1
-- @param #vec2_table p2
-- @param #vec2_table p3
-- @param #color4f_table color
2014-03-10 14:04:58 +08:00
--------------------------------
-- draw a dot at a position, with a given radius and color
2014-03-10 14:04:58 +08:00
-- @function [parent=#DrawNode] drawDot
-- @param self
-- @param #vec2_table pos
-- @param #float radius
-- @param #color4f_table color
2014-03-10 14:04:58 +08:00
--------------------------------
-- draw a cubic bezier curve with color and number of segments
2014-03-10 14:04:58 +08:00
-- @function [parent=#DrawNode] drawCubicBezier
-- @param self
-- @param #vec2_table from
-- @param #vec2_table control1
-- @param #vec2_table control2
-- @param #vec2_table to
-- @param #unsigned int segments
-- @param #color4f_table color
2014-03-10 14:04:58 +08:00
--------------------------------
-- draw a segment with a radius and color
2014-03-10 14:04:58 +08:00
-- @function [parent=#DrawNode] drawSegment
-- @param self
-- @param #vec2_table from
-- @param #vec2_table to
-- @param #float radius
-- @param #color4f_table color
2014-03-10 14:04:58 +08:00
--------------------------------
-- creates and initialize a DrawNode node
2014-03-10 14:04:58 +08:00
-- @function [parent=#DrawNode] create
-- @param self
-- @return DrawNode#DrawNode ret (return value: cc.DrawNode)
--------------------------------
--
-- @function [parent=#DrawNode] draw
-- @param self
-- @param #cc.Renderer renderer
-- @param #mat4_table transform
-- @param #unsigned int flags
2014-03-10 14:04:58 +08:00
return nil