大约有 247 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0052 秒)
...过change事件对设备方向改变进行监听。该事件有两个回调参数: absolute —— 如果设备提供的方位是基于设备坐标系统和地球坐标系统间的差距,则是true;如果设备无法检测到地球坐标系统,absolute为false。 rotationInfo —— Rotation...
来源: Laya3.0_文档 发布时间: 20230303
...`change`事件对设备方向改变进行监听。该事件有两个回调参数: - `absolute` —— 如果设备提供的方位是基于设备坐标系统和地球坐标系统间的差距,则是`true`;如果设备无法检测到地球坐标系统,`absolute`为`false`。 - `rotationInfo` ...
来源: Laya2.0_文档 发布时间: 20210715
...内容有可能超出我们舞台。 Laya.display.text 中所使用的API 参数: ![1](img/1.png) hidden:不显示超出文本域的字符。 visible:不进行任何裁切。 scroll:不显示文本域外的字符像素,并且支持scroll接口。 ```typescript package { import laya.display.Text;...
来源: Laya2.0_文档 发布时间: 20210715
...来设置, 如上图所示,我们可以看到,通过设置volume参数,可以有效控制url所对应声音文件的音量大小。初始值为1。音量范围从 0(静音)至 1(最大音量)。 ### 四、设备静音控制 如果通过设备静音键让音频自动跟随设备...
来源: Laya2.0_文档 发布时间: 20210715
...来设置, 如上图所示,我们可以看到,通过设置volume参数,可以有效控制url所对应声音文件的音量大小。初始值为1。音量范围从 0(静音)至 1(最大音量)。 ### 四、设备静音控制 如果通过设备静音键让音频自动跟随设备...
来源: Laya2.0_文档 发布时间: 20210714
...过Stat.FPS查看当前帧频。 2. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```javascript Laya.timer.frameLoop(1, this, animateFrameRateBased); Laya.stage.on("click", this, dispose); private function dispose():void { Laya.timer.clear(this, animateFrameRateBased); ...
来源: Laya2.0_文档 发布时间: 20210715
...过Stat.FPS查看当前帧频。 1. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```javascript Laya.timer.frameLoop(1, this, animateFrameRateBased); Laya.stage.on("click", this, dispose); function dispose() { Laya.timer.clear(this, animateFrameRateBased); } ``` 当一个对象的生...
来源: Laya2.0_文档 发布时间: 20210715
...来设置, 如上图所示,我们可以看到,通过设置volume参数,可以有效控制url所对应声音文件的音量大小。初始值为1。音量范围从 0(静音)至 1(最大音量)。 ### 四、设备静音控制 如果通过设备静音键让音频自动跟随设备...
来源: Laya2.0_文档 发布时间: 20210715
...on.png"; button2.toolTip=Handler.create(this,showTips,null,false); //携带参数的自定义鼠标提示 var button3:Button=new Button(); Laya.stage.addChild(button3); button3.label="button Three"; button3.pos(400,100); button3.skin="comp/button.png"; button3.toolTip=Handler.create(this,showTips2,[...
来源: Laya_社区 发布时间: 20161115
...过Stat.FPS查看当前帧频。 1. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```typescript Laya.timer.frameLoop(1, this, this.animateFrameRateBased); Laya.stage.on("click", this, this.dispose); dispose() { Laya.timer.clear(this, this.animateFrameRateBased); } ``` 当一个对象...
来源: Laya2.0_文档 发布时间: 20210714