summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.Material.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-07-05 20:51:43 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-07-05 20:51:43 +0800
commit8fefb8f3e100976235dc83d6ae3785952d11c710 (patch)
tree459117e6cecc70824273c4d32285cb6eec468098 /meta/3rd/Cocos4.0/cc.Material.lua
parentb6c18d05410fd4ca209f9c34e0992caf40cf3701 (diff)
downloadlua-language-server-8fefb8f3e100976235dc83d6ae3785952d11c710.zip
cleanup
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.Material.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.Material.lua81
1 files changed, 0 insertions, 81 deletions
diff --git a/meta/3rd/Cocos4.0/cc.Material.lua b/meta/3rd/Cocos4.0/cc.Material.lua
deleted file mode 100644
index 2d5ed078..00000000
--- a/meta/3rd/Cocos4.0/cc.Material.lua
+++ /dev/null
@@ -1,81 +0,0 @@
----@meta
-
----@class cc.Material :cc.Ref
-local Material={ }
-cc.Material=Material
-
-
-
-
----* returns a clone (deep-copy) of the material
----@return self
-function Material:clone () end
----*
----@param meshCommand cc.MeshCommand
----@param globalZOrder float
----@param vertexBuffer cc.backend.Buffer
----@param indexBuffer cc.backend.Buffer
----@param primitive int
----@param indexFormat int
----@param indexCount unsigned_int
----@param modelView mat4_table
----@return self
-function Material:draw (meshCommand,globalZOrder,vertexBuffer,indexBuffer,primitive,indexFormat,indexCount,modelView) end
----*
----@return cc.RenderState
-function Material:getRenderState () end
----* / sets the material name
----@param name string
----@return self
-function Material:setName (name) end
----* Returns a Technique by index. <br>
----* returns `nullptr` if the index is invalid.
----@param index int
----@return cc.Technique
-function Material:getTechniqueByIndex (index) end
----* / returns the material name
----@return string
-function Material:getName () end
----* Returns the list of Techniques
----@return array_table
-function Material:getTechniques () end
----* Returns the number of Techniques in the Material.
----@return int
-function Material:getTechniqueCount () end
----* Sets the current technique
----@param techniqueName string
----@return self
-function Material:setTechnique (techniqueName) end
----* Returns a Technique by its name.<br>
----* returns `nullptr` if the Technique can't be found.
----@param name string
----@return cc.Technique
-function Material:getTechniqueByName (name) end
----* Adds a Technique into the Material
----@param technique cc.Technique
----@return self
-function Material:addTechnique (technique) end
----* Returns the Technique used by the Material
----@return cc.Technique
-function Material:getTechnique () end
----* Creates a Material using the data from the Properties object defined at the specified URL,<br>
----* where the URL is of the format "<file-path>.<extension>#<namespace-id>/<namespace-id>/.../<namespace-id>"<br>
----* (and "#<namespace-id>/<namespace-id>/.../<namespace-id>" is optional).<br>
----* param url The URL pointing to the Properties object defining the material.<br>
----* return A new Material or NULL if there was an error.
----@param path string
----@return self
-function Material:createWithFilename (path) end
----* Creates a material from the specified properties object.<br>
----* param materialProperties The properties object defining the<br>
----* material (must have namespace equal to 'material').<br>
----* return A new Material.
----@param materialProperties cc.Properties
----@return self
-function Material:createWithProperties (materialProperties) end
----* Creates a Material with a GLProgramState.<br>
----* It will only contain one Technique and one Pass.<br>
----* Added in order to support legacy code.
----@param programState cc.backend.ProgramState
----@return self
-function Material:createWithProgramState (programState) end \ No newline at end of file