blob: b607f61fc30c8e10407756eb1caa90c055661a6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---@meta
---@class cc.AmbientLight :cc.BaseLight
local AmbientLight={ }
cc.AmbientLight=AmbientLight
---* Creates a ambient light.<br>
---* param color The light's color.<br>
---* return The new ambient light.
---@param color color3b_table
---@return self
function AmbientLight:create (color) end
---*
---@return int
function AmbientLight:getLightType () end
---*
---@return self
function AmbientLight:AmbientLight () end
|