blob: 3ce0a942acfc754479fb47e6eb24301179917074 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---@meta
---@class cc.EventController :cc.Event
local EventController={ }
cc.EventController=EventController
---* Gets the event type of the controller.<br>
---* return The event type of the controller.
---@return int
function EventController:getControllerEventType () end
---* Sets the connect status.<br>
---* param True if it's connected.
---@param isConnected boolean
---@return self
function EventController:setConnectStatus (isConnected) end
---* Gets the connect status.<br>
---* return True if it's connected.
---@return boolean
function EventController:isConnected () end
---*
---@param keyCode int
---@return self
function EventController:setKeyCode (keyCode) end
---*
---@return cc.Controller
function EventController:getController () end
---* Gets the key code of the controller.<br>
---* return The key code of the controller.
---@return int
function EventController:getKeyCode () end
---@overload fun(int:int,cc.Controller:cc.Controller,int2:boolean):self
---@overload fun(int:int,cc.Controller:cc.Controller,int:int):self
---@param type int
---@param controller cc.Controller
---@param keyCode int
---@return self
function EventController:EventController (type,controller,keyCode) end
|