大约有 113 项符合查询结果, 库内数据总量为 30,903 项。 (搜索耗时: 0.0035 秒)
Laya_社区(54) Laya3.0_api(17) Laya2.0_文档(13) Laya3.0_文档(10) Laya_示例(7) laya_api(5) Laya2.0_api(5) Laya2.0_示例(2)
...要有基础UI组件作为列表的渲染单元,单选框组(RadioGroup)是多个单选框(Radio)组件的容器。 1.3 弹窗视图组件 从引擎类的结构上看,弹窗视图组件Dialog并不属于UI组件,它的继承关系如图1-3所示。 (图1-3) 该组件一般用于弹...
来源: Laya3.0_文档 发布时间: 20240910
.../maths/Matrix3x3.ts:119 从4x4矩阵转换为一个3x3的矩阵(原则为upper-left,忽略第四行四列) Parameters sou: Matrix4x4 4x4源矩阵 out: Matrix3x3 3x3输出矩阵 Returns void Static createFromRotation createFromRotation(rad: number, out: Matrix3x3): void Defined in laya/maths/Matr...
来源: Laya3.0_api 发布时间: 20231115
...3/math/Matrix3x3.ts:119 从4x4矩阵转换为一个3x3的矩阵(原则为upper-left,忽略第四行四列) Parameters sou: Matrix4x4 4x4源矩阵 out: Matrix3x3 3x3输出矩阵 Returns void Static createFromRotation createFromRotation(rad: number, out: Matrix3x3): void Defined in laya/d3/math/Ma...
来源: Laya3.0_api 发布时间: 20231102
... 2 个回复 189*****192 赞同来自: Sean8023 Laya.stage.on(Event.MOUSE_UP, this, onApeRelease); Laya.stage.on(Event.MOUSE_DOWN, this, onApeRelease); 通过 Event 类型 监听动作 class Event { /** 一个空的 Event 对象。用于事件派发中转使用。*/ ...
来源: Laya_社区 发布时间: 20170601
...ya.Event.MOUSE_MOVE, this, this.__mouseMove); this.bmp.on(Laya.Event.MOUSE_UP, this, this.__mouseUp); console.log(this.pos0.x); } __mouseMove(e:Event){ this.pos1.x=this.bmp.mouseX this.pos1.y=this.bmp.mouseY; if(Utils3D.getThis.getDistance(this.pos0,this.pos1)>10){ this.bmp.graphics.drawLine(this...
来源: Laya_社区 发布时间: 20170831
...] 与 Page Down 的键控代码值 (34) 关联的常数。Keyboard PAGE_UP : int = 33[static] 与 Page Up 的键控代码值 (33) 关联的常数。Keyboard PERIOD : int = 190[static] 与 .Keyboard Q : int = 81[static] 与 Q 键的键控代码值 (81) 关联的常数。Keyboard QUOTE : i...
来源: laya_api 发布时间: 20170929
...] 与 Page Down 的键控代码值 (34) 关联的常数。Keyboard PAGE_UP : int = 33[static] 与 Page Up 的键控代码值 (33) 关联的常数。Keyboard PERIOD : int = 190[static] 与 .Keyboard Q : int = 81[static] 与 Q 键的键控代码值 (81) 关联的常数。Keyboard QUOTE : i...
来源: Laya2.0_api 发布时间: 20190513
...t; Laya.stage.size(Browser.width,Browser.height); } protected function ShuPing(): void { trace("设置竖屏" ); var layaCanvas:Object = Browser.getElementById("layaCanvas"); layaCanvas.width = Browser.width; layaCanvas.height = Browser.height; Laya.stage.size(Browser.width,Browser.height); } prot...
来源: Laya_社区 发布时间: 20190520
...= {data: StorageRoom.map_storageData[0][0],tag:0}; box.on(Laya.Event.MOUSE_UP,this,this.onclick,[arr]); var _proto = StorageUILayer.prototype; _proto.onclick = function(params){ console.log("--------------------------------hhhhhhhhhhh- "); } -------------------------------------------------...
来源: Laya_社区 发布时间: 20171113
...aya.timer.once(HOLD_TRIGGER_TIME, this, onHold); Laya.stage.on(Event.MOUSE_UP, this, onApeRelease); } function onHold() { Tween.to(ape, { "scaleX": 1, "scaleY": 1 }, 500, Ease.bounceOut); isApeHold = true; } /** 鼠标放开后停止hold */ function onApeRelease() { // 鼠标放开时,如果正在...
来源: Laya_示例 发布时间: 20250223