大约有 2,154 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0069 秒)
Laya3.0_api(672) Laya_社区(471) Laya2.0_api(357) laya_api(289) Laya_示例(150) Laya2.0_示例(112) Laya2.0_文档(98) Laya3.0_文档(5)
...s.Event; import login.LoginView; public class Main extends Sprite { public function Main():void { if (stage) init(); else addEventListener(Event.ADDED_TO_STAGE, init); } private function init(e:Event = null):void { removeEventListener(Event.ADDED_TO_STAGE, init); this.stage.scaleMode = StageScaleMod...
来源: Laya_社区 发布时间: 20151103
... ```javascript var http = require("http"); var sever = http.createServer(function(req,res){ res.end("LayaSample.onComplete()"); }); sever.listen(9090) ``` ```javascript res.end("LayaSample.onComplete()"); ``` 这句话的意思是服务器回传给客户端LayaSample.onComplete()并且执行这个...
来源: Laya2.0_文档 发布时间: 20210714
...则值为 true;否则,值为 false。 off off(type: string, listener: Function): EventDispatcher off(type: string, caller: any, listener?: Function, args?: any[]): EventDispatcher Inherited from EventDispatcher.off Defined in laya/events/EventDispatcher.ts:112 从 EventDispatcher 对象中删除...
来源: Laya3.0_api 发布时间: 20231115
...seEnabled = true; a.mouseThrough = true; a.on(Laya.Event.MOUSE_DOWN, null, function (e: Laya.Event): void { console.log("touch a"); } 因为需要将mouseThrough=true才可以,蛋疼的api描叙你能相信是这个熟悉么? “mouseThrough : Boolean = false,指定当mouseEnabled=true...
来源: Laya_社区 发布时间: 20161109
...勿调用构造函数。 listen()的回调处理器接受两个参数: function onOrientationChange(absolute:Boolean, info:RotationInfo):void absolute: 指示设备是否可以提供绝对方位数据(指向地球坐标系),或者设备决定的任意坐标系。关于坐标系参见https://...
来源: Laya3.0_api 发布时间: 20231115
... { public var s:Socket; public function TestWebSocket() { s = new Socket(); var x:XML = new XML(); s.addEventListener(Event.CONNECT,c...
来源: Laya_社区 发布时间: 20160810
... ....... btn.on(Event.CLICK,this,onMouse,['btn'+i]) } public function onMouse(aa):void { if(aa=='btn001') { } else if(aa=='btn002') { } } 2017-04-25 1 2 分享 微博 QZONE 微信 189*****192 赞同来自: 已接近!! 2017-04-25 0 4 ...
来源: Laya_社区 发布时间: 20170425
....utils.Handler; import laya.webgl.WebGL; public class GraCmdsDemo { public function GraCmdsDemo() { //初始化舞台 Laya.init(Browser.width,Browser.height,WebGL); //预加载资源 Laya.loader.load(['apes/monkey0.png','apes/monkey1.png','apes/monkey2.png','apes/monkey3.png'],Handler.create(this,on...
来源: Laya_社区 发布时间: 20170519
...hakeCallback:any = null; private handshakeBuffer:any; private initCallback:Function = null; private _callbacks:any = {}; private reqId:number = 0; private _package:IPackage; private _message:IMessage; constructor(){ if(!console.group){ console.group = console.log; console.groupEnd = function(){conso...
来源: Laya_社区 发布时间: 20180119
...毫秒。 Returns number Methods callLater callLater(caller: any, method: Function, args?: any[]): void Defined in laya/utils/Timer.ts:278 延迟执行。 Parameters caller: any 执行域(this)。 method: Function 定时器回调函数。 Default value args: any[] = null 回调参数。 Returns void...
来源: Laya3.0_api 发布时间: 20231115