大约有 24 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0048 秒)
...aya/device/geolocation/Geolocation.ts:96 移除watchPosition安装的指定处理器。 Parameters id: number Returns void Static getCurrentPosition getCurrentPosition(onSuccess: Handler, onError?: Handler): void Defined in laya/device/geolocation/Geolocation.ts:57 获取设备当前位置。 Parame...
来源: Laya3.0_api 发布时间: 20231115
...d Menu Globals "laya/utils/Handler" Handler Class Handler Handler 是事件处理器类。 推荐使用 Handler.create() 方法从对象池创建,减少对象创建消耗。创建的 Handler 对象不再使用后,可以使用 Handler.recover() 将其回收到对象池,回收后不要再使用...
来源: Laya3.0_api 发布时间: 20231115
...ocs/Web/API/MediaDevices/getUserMedia。 onSuccess: Handler 获取成功的处理器,唯一参数返回媒体的Blob地址,可以将其传给Video。 onError: Handler 获取失败的处理器,唯一参数是Error。 Returns void Static supported supported(): boolean Defined in laya/device/medi...
来源: Laya3.0_api 发布时间: 20231115
...取唯一的Gyroscope引用,请勿调用构造函数。 listen()的回调处理器接受两个参数: function onOrientationChange(absolute:Boolean, info:RotationInfo):void absolute: 指示设备是否可以提供绝对方位数据(指向地球坐标系),或者设备决定的任意坐标...
来源: Laya3.0_api 发布时间: 20231115
...唯一的Accelerator引用,请勿调用构造函数。 listen()的回调处理器接受四个参数: acceleration: 表示用户给予设备的加速度。 accelerationIncludingGravity: 设备受到的总加速度(包含重力)。 rotationRate: 设备的自转速率。 interval: 加速度获...
来源: Laya3.0_api 发布时间: 20231115
... = new Handler(this, onClick, [checkBox]);//设置 checkBox 的点击事件处理器。 Laya.stage.addChild(checkBox);//将此 checkBox 对象添加到显示列表。 } private function onClick(checkBox:CheckBox):void { trace("输出选中状态: checkBox.selected = " + checkBox.selected); } } } exa...
来源: Laya3.0_api 发布时间: 20231115
...pleteHandler: Handler Defined in laya/media/SoundChannel.ts:28 播放完成处理器。 isStopped isStopped: boolean = false Defined in laya/media/SoundChannel.ts:24 表示声音是否已暂停。 loops loops: number Defined in laya/media/SoundChannel.ts:16 循环次数。 startTime startTime: numbe...
来源: Laya3.0_api 发布时间: 20231115
...= new Handler(this, onClickButton,[button]);//设置 button 的点击事件处理器。 Laya.stage.addChild(button);//将此 button 对象添加到显示列表。 } private function onClickButton(button:Button):void { trace("按钮button被点击了!"); } } } example Laya.init(640, 800);//设置...
来源: Laya3.0_api 发布时间: 20231115
...andler = new Handler(this, onSelect);//设置 list 改变选择项执行的处理器。 Laya.stage.addChild(list);//将 list 添加到显示列表。 } private function onSelect(index:int):void { trace("当前选择的项目索引: index= ", index); } } } import laya.ui.Box; import laya.ui.Label; ...
来源: Laya3.0_api 发布时间: 20231115
...= new Handler(this, onSelect);//设置 comboBox 选择项改变时执行的处理器。 Laya.stage.addChild(comboBox);//将此 comboBox 对象添加到显示列表。 } private function onSelect(index:int):void { trace("当前选中的项对象索引: ",index); } } } example Laya.init(640, 800);//...
来源: Laya3.0_api 发布时间: 20231115