大约有 1,787 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)
Laya_社区(1124) Laya2.0_文档(198) Laya3.0_api(114) Laya2.0_api(105) Laya2.0_示例(83) Laya_示例(70) laya_api(64) Laya3.0_文档(29)
... 当切到前台时 定时器会补完所有的缺省调用 while (t >= handler.exeTime) { handler.exeTime += handler.delay; handler.run(false); } 在后台挂的时间越久 会短时间造成大量的更新 2020-10-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20201020
... = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.st...
来源: Laya2.0_示例 发布时间: 20241118
... Stage = Laya.stage; let Button = Laya.Button; let Event = Laya.Event; let Handler = Laya.Handler; let rightBtn = new Button(); rightBtn.labelFont = "Microsoft YaHei"; rightBtn.label = 'right'; rightBtn.labelSize = 60; rightBtn.labelColors = '#fff'; rightBtn.labelStrokeColor ='#FF8502'; rightBtn.lab...
来源: Laya_社区 发布时间: 20180309
...lter; import Texture = Laya.Texture; import Browser = Laya.Browser; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class Main { private ApePath: string = "../../res/apes/monkey2.png"; private apeTexture: Texture; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(B...
来源: Laya2.0_文档 发布时间: 20210715
...BLE和Geolocation.TIMEOUT之一。 */ static getCurrentPosition(onSuccess: Handler, onError: Handler = null): void { Geolocation.navigator.geolocation.getCurrentPosition(function (pos: any): void { Geolocation.position.setPosition(pos); onSuccess.runWith(Geolocation.position); }, function (error: an...
来源: Laya3.0_文档 发布时间: 20241014
...Loader; import laya.net.ResourceVersion; import laya.utils.Handler; import laya.webgl.WebGL; import laya.utils.Mouse; import laya.ui.Button; import laya.display.Sprite; import laya.display.Animation; import laya.maths.Rectangle; ...
来源: Laya_社区 发布时间: 20180725
...10 Returns Media Methods Static getMedia getMedia(options: any, onSuccess: Handler, onError: Handler): void Defined in laya/device/media/Media.ts:28 获取用户媒体。 Parameters options: any 简单的可选项可以使{ audio:true, video:true }表示同时捕捉两者。详情见https://develope...
来源: Laya3.0_api 发布时间: 20231115
...a.ColorFilter; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var ApePath = "../../res/apes/monkey2.png"; var apeTexture; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); ...
来源: Laya_示例 发布时间: 20241118
... 1、如下图一所示,在事件执行回调时候,Laya.timer里面的handlers,第一个hander的caller已经是null,已经被清除了的哈,不需要再自己手动清除内容了; 2、只打印数字1、2、3的原因就是因为添加了定时器清除导致的 3、如图二所示...
来源: Laya_社区 发布时间: 20240109
... function ModelManager() { Laya.loader.create("res/Pipe/Pipe/a.lh", Laya.Handler.create(this, this.onCreateComplete()),Laya.Handler.create(this, this.onAssetsLoading)); } ModelManager.prototype.onCreateComplete = function () { console.log("onCreateComplete"); var pipe = Laya.loader.getRes("res/Pipe/...
来源: Laya_社区 发布时间: 20180514