From 8fefb8f3e100976235dc83d6ae3785952d11c710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=80=E8=90=8C=E5=B0=8F=E6=B1=90?= Date: Mon, 5 Jul 2021 20:51:43 +0800 Subject: cleanup --- meta/3rd/Cocos4.0/library/cc.EventController.lua | 40 ++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 meta/3rd/Cocos4.0/library/cc.EventController.lua (limited to 'meta/3rd/Cocos4.0/library/cc.EventController.lua') diff --git a/meta/3rd/Cocos4.0/library/cc.EventController.lua b/meta/3rd/Cocos4.0/library/cc.EventController.lua new file mode 100644 index 00000000..3ce0a942 --- /dev/null +++ b/meta/3rd/Cocos4.0/library/cc.EventController.lua @@ -0,0 +1,40 @@ +---@meta + +---@class cc.EventController :cc.Event +local EventController={ } +cc.EventController=EventController + + + + +---* Gets the event type of the controller.
+---* return The event type of the controller. +---@return int +function EventController:getControllerEventType () end +---* Sets the connect status.
+---* param True if it's connected. +---@param isConnected boolean +---@return self +function EventController:setConnectStatus (isConnected) end +---* Gets the connect status.
+---* 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.
+---* 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 \ No newline at end of file -- cgit v1.2.3