大约有 485 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0045 秒)
...,而且我有个按钮 var buttonMy,但是在处理函数里面输出this是这个场景,而我this.buttonMy却是一个undefind?有没有大佬知道呀? 附件 : --> 2018-12-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...
来源: Laya_社区 发布时间: 20181219
...Consts.SubPackagePath+"/scenes/"+msceneinfo.unityName+".ls",Handler.create(this,this.completeHandler),null,Scene); 2018-07-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 有复现demo...
来源: Laya_社区 发布时间: 20180724
...这样的。 我在脚本createmesh文件里,异步加载了2个模型 this.tmpmesh=[ Laya.Sprite3D.load(url+"/chaoshi/LayaScene_xue/xue.lh"), Laya.Sprite3D.load(url+"/naicha/LayaScene_xue/xue2.lh"), ];这2个模型在加载到场景里,我是用了随机数,比如第一次可能是this.tmpmes...
来源: Laya_社区 发布时间: 20180127
...如 onEnable(): void { const { x, y, width, height } = this.box Laya.loader.load('comp/image.png').then(v=>{ const texture = this.box.drawToTexture(width, height, x, y) as Laya.Texture this.snapshot.texture = texture })...
来源: Laya_社区 发布时间: 20240425
...主界面脚本中写入按钮的监听 //下拉菜单信息按钮监听 this.AllTitleButton.on(Laya.Event.MOUSE_DOWN, this, ButtonClickManager.clickinstance.AllTitleButtonClick); 而在另外的一个单例脚本中单例分离了执行方法 因为按钮监听太多 需要分离 监听和执行...
来源: Laya_社区 发布时间: 20190410
...ay.Stage; class TestUI extends ui.test.testwhUI { constructor() { super(); this.mypan.vScrollBarSkin = ""; Laya.stage.on(Laya.Event.RESIZE, this, this.fitDOMElements); this.mypan.vScrollBar.on(Laya.Event.CHANGE, this, this.fitDOMElements_scroll); } private fitDOMElements(a, b, c, d, e, f): void { co...
来源: Laya_社区 发布时间: 20170720
...'images/button.png'; constructor() { Laya.init(200, 300); Laya.loader.load(this.skin, Laya.Handler.create(this, () => { this.btn = this.createBtn(this.skin); this.btn.on(Laya.Event.CLICK, this, this.onClick); })); } /** * 创建btn */ private createBtn(skin: string): Laya.Button { let button = ne...
来源: Laya_社区 发布时间: 20170511
...s GameUI extends Laya.Scene { constructor(){ super(); //加载场景文件 this.loadScene("test/TestScene.scene"); //加载场景 Laya.Scene3D.load('LayaScene_test/Conventional/test.ls',Laya.Handler.create(this,this.onComplete)) } /** * 加载完成 */ onComplete(scene){ // 将场景加到舞台上 ...
来源: Laya2.0_文档 发布时间: 20210715
...呢? Laya.SoundManager.playSound("res/hit.wav", 1, new Laya.Handler(this, this.onComplete)); 2020-08-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠? 0 个回复被折叠 要回复问题...
来源: Laya_社区 发布时间: 20200827
...in { constructor() { console.log(Laya.Browser.width, Laya.Browser.height); this.current = { x: 0, y: Laya.Browser.height }; // Laya.stage.bgColor = "#3F51B5"; this.sp = new Laya.Sprite(); Laya.stage.addChild(this.sp); } render() { console.log("render"); var l = [ 0, 0, 0, -(Laya.Browser.height >&...
来源: Laya_社区 发布时间: 20180602