summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.CameraBackgroundDepthBrush.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.CameraBackgroundDepthBrush.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.CameraBackgroundDepthBrush.lua33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.CameraBackgroundDepthBrush.lua b/meta/3rd/Cocos4.0/cc.CameraBackgroundDepthBrush.lua
new file mode 100644
index 00000000..ccba5f69
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.CameraBackgroundDepthBrush.lua
@@ -0,0 +1,33 @@
+
+---@class cc.CameraBackgroundDepthBrush :cc.CameraBackgroundBrush
+local CameraBackgroundDepthBrush={ }
+cc.CameraBackgroundDepthBrush=CameraBackgroundDepthBrush
+
+
+
+
+---* Set depth<br>
+---* param depth Depth used to clear depth buffer
+---@param depth float
+---@return self
+function CameraBackgroundDepthBrush:setDepth (depth) end
+---* Create a depth brush<br>
+---* param depth Depth used to clear the depth buffer<br>
+---* return Created brush
+---@param depth float
+---@return self
+function CameraBackgroundDepthBrush:create (depth) end
+---* Get brush type. Should be BrushType::DEPTH<br>
+---* return brush type
+---@return int
+function CameraBackgroundDepthBrush:getBrushType () end
+---* Draw background
+---@param camera cc.Camera
+---@return self
+function CameraBackgroundDepthBrush:drawBackground (camera) end
+---*
+---@return boolean
+function CameraBackgroundDepthBrush:init () end
+---*
+---@return self
+function CameraBackgroundDepthBrush:CameraBackgroundDepthBrush () end \ No newline at end of file