大约有 444 项符合查询结果, 库内数据总量为 31,580 项。 (搜索耗时: 0.0048 秒)
Laya_社区(295) Laya2.0_示例(37) Laya_示例(31) Laya2.0_文档(27) Laya2.0_api(18) laya_api(16) Laya3.0_文档(15) Laya3.0_api(5)
...ll Classes | Index | Frames No Frames ComboBoxProperties | Methods | Events Packagelaya.uiClasspublic class ComboBoxInheritanceComboBox Component Sprite Node EventDispatcher Object ComboBox 组件包含一个下拉列表,用户可以从该列表中选择单个值。 Public Properties Hide I...
来源: laya_api 发布时间: 20170929
...All Classes | Index | Frames No Frames KeyboardConstants Packagelaya.eventsClasspublic class KeyboardInheritanceKeyboard Object Keyboard 类的属性是一些常数,这些常数表示控制游戏时最常用的键。 Public Constants ConstantDefined By A : int = 65[static] 与 A 键的键...
来源: laya_api 发布时间: 20170929
...All Classes | Index | Frames No Frames KeyboardConstants Packagelaya.eventsClasspublic class KeyboardInheritanceKeyboard Object Keyboard 类的属性是一些常数,这些常数表示控制游戏时最常用的键。 Public Constants ConstantDefined By A : int = 65[static] 与 A 键的键...
来源: Laya2.0_api 发布时间: 20190513
...gory=3d&group=Resource&name=GarbageCollection)) ```typescript function(e:Event) { this._castType++; this._castType %= 2; switch (this._castType) { case 0: (e.target as Button).label = "释放显存"; this.loadScene(); break; case 1: (e.target as Button).label = "加载场景"; if (this._scene)//_s...
来源: Laya2.0_文档 发布时间: 20210715
...derHandler: Handler; /**单元格鼠标事件处理器(默认返回参数e:Event,index:number)。*/ mouseHandler: Handler; /**指定是否可以选择,若值为true则可以选择,否则不可以选择。 @default false*/ selectEnable: boolean; /**最大分页数。*/ totalPage: number;我想知...
来源: Laya_社区 发布时间: 20180801
...guaSpr.addChild(ape); ape.loadImage("WBSign/img_guakaituceng.png"); ape.on(Event.MOUSE_MOVE, this, onMouseMove); interactionArea = new Sprite(); interactionArea.blendMode = "destination-out"; ape.addChild(interactionArea); interactionArea.graphics.clear(); } function onMouseMove(e) { if(mouseX!=0){ ...
来源: Laya_社区 发布时间: 20170615
...0) at Loader.Laya3D._onHierarchylhLoaded (laya.d3.js:15384) at EventHandler.__proto.runWith (laya.core.js:1156) at Loader.__proto.event (laya.core.js:911) at Loader.__proto.complete (laya.core.js:14555) at Loader.__proto.onLoaded (laya.core.js:14523) at EventHandl...
来源: Laya_社区 发布时间: 20180919
...gory=3d&group=Resource&name=GarbageCollection)) ```typescript function(e:Event):void { _castType++; _castType %= 2; switch (_castType) { case 0: (e.target as Button).label = "释放显存"; loadScene(); break; case 1: (e.target as Button).label = "加载场景"; if (_scene)//_scene不为空表示...
来源: Laya2.0_文档 发布时间: 20210715
...单指一个组件的话,可以做,譬如list,你可以监听一个Event.RESIZE事件,你可以通过Broswer.width和Browser.height判断出此时是横屏还是竖屏,然后动态的修改list的rotation即可! asdf131 • 2017-04-07 21:41 回复不可以加图片啊,我编辑了上...
来源: Laya_社区 发布时间: 20170407
...id { let hr = new Laya.HttpRequest(); hr.once(Laya.Event.COMPLETE, this, (e: any): void => { callback(JSON.parse(hr.data)); }); hr.send(url, JSON.stringify(data), 'post', 'text', ['content-type', 'application/json;charset=UTF-8', "ses...
来源: Laya_社区 发布时间: 20190829