大约有 1,204 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0045 秒)
Laya_社区(690) Laya_示例(137) Laya2.0_文档(123) Laya2.0_示例(116) Laya3.0_文档(59) Laya3.0_api(39) laya_api(29) Laya2.0_api(11)
... */ export default class GameUI extends ui.test.TestSceneUI { private newScene:Laya.Scene3D; private boxA: Laya.MeshSprite3D; constructor() { super(); Laya3D.init(0, 0); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode =...
来源: Laya_社区 发布时间: 20210103
...时,怎么清除Button的点击事件?还是不用清除点击事件?private updateItem(cell: Laya.Box, index: number): void { let btn: Laya.Button = cell.getChildByName("btn") as Laya.Button; btn.on(Laya.Event.CLICK, this, this.on_test); } 附件 : --> list.png 2018-08-10 添加评论 免费...
来源: Laya_社区 发布时间: 20180810
...loader.create("prefab/预设名字.json",Handler.create(this,onComplete));}private function onComplete(obj:Object):Void{一个预设变量.json = ojb一个sprite = Pool.getItemByCreateFun("自己起一个名字", this.一个预设变量.create, this.一个预设变量);} 2020-01-04 0 1 分享 微博...
来源: Laya_社区 发布时间: 20200104
...哪个对象,我需要所有的都加载完成,谢谢 我的代码是 private loadSk{ this.sk_51.loadAni("bis_51.sk"); this.sk_71.loadAni("bis_71.sk"); this.sk_81.loadAni("bis_81.sk"); this.sk_82.loadAni("bis_82.sk"); this.sk_83.loadAni("bis_83.s...
来源: Laya_社区 发布时间: 20170912
...2.transform.rotate(this.rotation, false); });class BlinnPhong_DiffuseMap { private rotation: Laya.Vector3 = new Laya.Vector3(0, 0.01, 0); constructor() { Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); var scene...
来源: Laya_示例 发布时间: 20241125
...t.align = "center"; input.on(Laya.Event.INPUT, this, this.input, [input]); private input(input:Laya.TextInput, event:Event){ if(input.text.length > 2){ input.width += 20; } } 请问怎么解决这个问题? 附件 : --> 2017-08-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...
来源: Laya_社区 发布时间: 20170820
...了,然后cid 和mid 用字符串拼接起来 cid +' _' +mid private _getHandler(caller: any, method: any): LaterHandler { var cid: number = caller ? caller.$_GID || (caller.$_GID = ILaya.Utils.getGID()) : 0; var mid: number = method.$_TID || (method.$_TID = (ILay...
来源: Laya_社区 发布时间: 20190902
...selectHandler的使用 示例 list.mouseHandler=new Handler(this,onMouse); private function onMouse(e:Event,index:Number):void { // TODO Auto Generated method stub if(e.type==Event.CLICK) { trace("click"); } } 2016-12-02 3 2 分享 微博 QZONE 微信 sunkehappy 赞同来自: @cuixueying 感谢提...
来源: Laya_社区 发布时间: 20161202
...this.catSprite.load(xxx,回调)--加载好使用spine或dragbones的文件 private function 回调(){ catSprite.showSkinByName("动作名") //最初使用这种方式显示 结果是图片乱跳 显示异常 请使用 catSprite.play("动作索引") //动作索引为 0-第一套 1-第二套类推。...
来源: Laya_社区 发布时间: 20180614
...r.create(url, Laya.Hander.create(this, this.onLoadComplete))(会报错) private onLoadComplete(){ const scene = new Laya.Scene3D() Laya.stage.addChild(scene) const prefab = Laya.loader.getRes(url) scene.addChild(prefab) } 2020-03-13 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20200313