summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc/AtlasNode.lua
diff options
context:
space:
mode:
authorCppCXY <812125110@qq.com>2024-02-22 20:29:13 +0800
committerCppCXY <812125110@qq.com>2024-02-22 20:29:13 +0800
commit9b6df71d97a70ee7179949ef9f15368cbf29dcbd (patch)
treebf7a7e62ed7c164a12bdce437c17262a5235bcec /meta/3rd/Cocos4.0/library/cc/AtlasNode.lua
parent483fe246b6ae8c25d433aa15e43f04f0e71a74d5 (diff)
parent3e6fd3ce1f2f0528336ded939d776a29bbfaf2eb (diff)
downloadlua-language-server-9b6df71d97a70ee7179949ef9f15368cbf29dcbd.zip
Merge branch 'master' of github.com:CppCXY/lua-language-server
Diffstat (limited to 'meta/3rd/Cocos4.0/library/cc/AtlasNode.lua')
m---------meta/3rd/Cocos4.00
-rw-r--r--meta/3rd/Cocos4.0/library/cc/AtlasNode.lua98
2 files changed, 0 insertions, 98 deletions
diff --git a/meta/3rd/Cocos4.0 b/meta/3rd/Cocos4.0
new file mode 160000
+Subproject c0b2259e0d367561fd4563ae114b029b4dfe3a8
diff --git a/meta/3rd/Cocos4.0/library/cc/AtlasNode.lua b/meta/3rd/Cocos4.0/library/cc/AtlasNode.lua
deleted file mode 100644
index 914e3baf..00000000
--- a/meta/3rd/Cocos4.0/library/cc/AtlasNode.lua
+++ /dev/null
@@ -1,98 +0,0 @@
----@meta
-
----@class cc.AtlasNode :cc.Node@all parent class: Node,TextureProtocol
-local AtlasNode={ }
-cc.AtlasNode=AtlasNode
-
-
-
-
----* lua NA
----@return cc.BlendFunc
-function AtlasNode:getBlendFunc () end
----* Initializes an AtlasNode with an Atlas file the width and height of each item and the quantity of items to render
----@param tile string
----@param tileWidth int
----@param tileHeight int
----@param itemsToRender int
----@return boolean
-function AtlasNode:initWithTileFile (tile,tileWidth,tileHeight,itemsToRender) end
----* code<br>
----* When this function bound into js or lua,the parameter will be changed<br>
----* In js: var setBlendFunc(var src, var dst)<br>
----* endcode<br>
----* lua NA
----@param blendFunc cc.BlendFunc
----@return self
-function AtlasNode:setBlendFunc (blendFunc) end
----* Set an buffer manager of the texture vertex.
----@param textureAtlas cc.TextureAtlas
----@return self
-function AtlasNode:setTextureAtlas (textureAtlas) end
----*
----@return cc.Texture2D
-function AtlasNode:getTexture () end
----* Return the buffer manager of the texture vertex. <br>
----* return Return A TextureAtlas.
----@return cc.TextureAtlas
-function AtlasNode:getTextureAtlas () end
----* updates the Atlas (indexed vertex array).<br>
----* Shall be overridden in subclasses.
----@return self
-function AtlasNode:updateAtlasValues () end
----*
----@param texture cc.Texture2D
----@return self
-function AtlasNode:setTexture (texture) end
----* Initializes an AtlasNode with a texture the width and height of each item measured in points and the quantity of items to render
----@param texture cc.Texture2D
----@param tileWidth int
----@param tileHeight int
----@param itemsToRender int
----@return boolean
-function AtlasNode:initWithTexture (texture,tileWidth,tileHeight,itemsToRender) end
----*
----@return unsigned_int
-function AtlasNode:getQuadsToDraw () end
----*
----@param quadsToDraw int
----@return self
-function AtlasNode:setQuadsToDraw (quadsToDraw) end
----* creates a AtlasNode with an Atlas file the width and height of each item and the quantity of items to render.<br>
----* param filename The path of Atlas file.<br>
----* param tileWidth The width of the item.<br>
----* param tileHeight The height of the item.<br>
----* param itemsToRender The quantity of items to render.
----@param filename string
----@param tileWidth int
----@param tileHeight int
----@param itemsToRender int
----@return self
-function AtlasNode:create (filename,tileWidth,tileHeight,itemsToRender) end
----*
----@param renderer cc.Renderer
----@param transform mat4_table
----@param flags unsigned_int
----@return self
-function AtlasNode:draw (renderer,transform,flags) end
----*
----@return boolean
-function AtlasNode:isOpacityModifyRGB () end
----*
----@param color color3b_table
----@return self
-function AtlasNode:setColor (color) end
----*
----@return color3b_table
-function AtlasNode:getColor () end
----*
----@param isOpacityModifyRGB boolean
----@return self
-function AtlasNode:setOpacityModifyRGB (isOpacityModifyRGB) end
----*
----@param opacity unsigned_char
----@return self
-function AtlasNode:setOpacity (opacity) end
----*
----@return self
-function AtlasNode:AtlasNode () end \ No newline at end of file