• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 2,023 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0065 秒)

681. untiy导出的粒子特效有播放完成的回掉吗? [ 79%]

...ld(Sprite3D.load("fff.lh")) as Sprite3D; wjqs.once(Event.HIERARCHY_LOADED, this, function():void { var aaa:ShurikenParticleSystem = wjqs.getChildAt(0).getChildAt(0).particleSystem; aaa.on(Event.COMPLETE, this, function() { trace("COMPLETE callback!!"); }); }); 2017-05-15 0 1 分享 微博 QZONE ...

来源: Laya_社区 发布时间: 20170512

682. webgl 模式下 用graphics.drawTexture 平铺图片 图片不显示是什么原因 [ 79%]

...式下 用graphics.drawTexture 平铺图片 图片不显示是什么原因 this.texture1 = Laya.loader.getRes('res/images/bg1.png'); this.texture2 = Laya.loader.getRes('res/images/bg2.png'); var repeatX = 8 ; var repeatCount = Math.ceil(stageW / repeatX); for(let i = 0; i < repeatCount ; i++) { t...

来源: Laya_社区 发布时间: 20180129

683. laya.utils.Timer [ 79%]

... args:Array = null):void 延迟执行。 Parameters caller:* — 执行域(this)。  method:Function — 定时器回调函数。  args:Array (default = null) — 回调参数。 clear()method  public function clear(caller:*, method:Function):void 清理定时器。 Parameters caller:* — 执行...

来源: laya_api 发布时间: 20170929

684. 点击list的时候触发的e.target永远是被点击的item? [ 79%]

....push({my_clip:i}); } my_list.array=arr; my_list.renderHandler=new Handler(this,onRender); } private function onRender(cell:Box,index:int):void { // TODO Auto Generated method stub var cell:Box=my_list.getCell(index) as Box; var my_btn:Button=cell.getChildByName("my_btn") as Button; var my_clip:Clip...

来源: Laya_社区 发布时间: 20161030

685. ShaderPass介绍(TypeScript-3D基础(TS)-LayaAir3D之Shader) [ 79%]

...ayaMonkey/Assets/LayaMonkey/LayaMonkey-LayaMonkey.lm", Laya.Handler.create(this, function(mesh) { var layaMonkey = scene.addChild(new Laya.MeshSprite3D(mesh)); layaMonkey.transform.localScale = new Laya.Vector3(0.3, 0.3, 0.3); layaMonkey.transform.rotation = new Laya.Quaternion(0.7071068, 0, 0, -0.7...

来源: Laya2.0_文档 发布时间: 20210715

686. demo中的2d和3d混合 加载ktx的资源 会白色的 其他ui没有问题 [ 79%]

....load([{url:"minastc.config.json",type:Laya.Loader.JSON}],new Laya.Handler(this,function(){             this.astcconfig = Laya.loader.getRes("minastc.config.json");             for(var key in this.astcconfig){                 var fileversion = Laya.ResourceVersion.manifest[key]||...

来源: Laya_社区 发布时间: 20221013

687. 为何发生此类报错Uncaught TypeError: Cannot read property '_tf' of null [ 79%]

...:"res/Public@sl4615.mp3",type:laya.net.Loader.SOUND} ],Laya.Handler.create(this,onLoaded));  /*登录界面*/ var resArray=[ {url:"res/LoginView.fui",type:laya.net.Loader.BUFFER}, {url:"res/LoginView@atlas0.png",type:laya.net.Loader.IMAGE} ]; var loadcount=resArray.length; function onLoaded() { con...

来源: Laya_社区 发布时间: 20171207

688. 获取sprite对象的 width和height为0 [ 79%]

...Boat extends Laya.Sprite { private bt:Laya.Sprite; constructor() { super() this.bt = new Laya.Sprite() this.bt.loadImage("res/boat.png") this.addChild(this.bt) } } /** * 游戏背景 */ class BackGround extends Laya.Sprite { //背景图 private bg:Laya.Sprite; constructor(){ super(); this.init(); } ...

来源: Laya_社区 发布时间: 20160804

689. UI弹窗 · LayaAir3.0文档 · LAYABOX [ 79%]

...组件均已创建完毕,此方法只执行一次 */ onAwake(): void { this.assets = ["resources/res/ui/dialog (1).png", "resources/res/ui/close.png"]; Laya.loader.load(this.assets).then( ()=>{ this.onSkinLoadComplete(); } ); } private onSkinLoadComplete(e: any = null): void { this.dialog = new...

来源: Laya3.0_文档 发布时间: 20230303

690. 缓动 · LayaAir3.0文档 · LAYABOX [ 79%]

...属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为匀速运动。 * @param complete 结束回调函数。 * @param delay 延迟...

来源: Laya3.0_文档 发布时间: 20241014