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

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

321. Animation 下的Event.COMPLETE 回调 [ 73%]

... 骨骼动画播放完后的回调时间 ios原生回调问题 Laya.loader.create 进度回调函数执行两次 Laya.Handler.create 加载图片回调参数问题 Tween的to方法完成缓动后的回调怎么写,Tween.to(beginbox,{x:-Laya.Browser.width},1000,null,aaa,0,false);aaa是一个测试...

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

322. laya.maths.Rectangle_API3.0 [ 73%]

... equals intersection intersects isEmpty recover reset setTo toString union create Constructors constructor new Rectangle(x?: number, y?: number, width?: number, height?: number): Rectangle Defined in laya/maths/Rectangle.ts:27 创建一个 Rectangle 对象。 Parameters Default value x: number = 0 ...

来源: Laya3.0_api 发布时间: 20231115

323. 3d模型资源,加载后AddChild会报错,请教一下什么原因。 [ 73%]

...源,加载后AddChild会报错,请教一下什么原因。 Laya.loader.create("laya_assert/LayaScene_role/role.lh", Handler.create(_instance, OnCreateComplete1)); private static function OnCreateComplete1():void{ trace("complete load role"); var sprite3D:Sprite3D = Laya.loader.getRes("laya_asser...

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

324. Sprite-遮罩-放大镜 [ 72%]

...age.bgColor = "#232628"; Laya.loader.load([bgPath, maskPath], Laya.Handler.create(this, this.setup)); } setup() { const Sprite = Laya.Sprite; let bgRes = Laya.loader.getRes(bgPath), maskRes = Laya.loader.getRes(maskPath); let bg = new Sprite(); Laya.stage.addChild(bg); bg.graphics.drawTexture(bgRes)...

来源: Laya2.0_示例 发布时间: 20241119

325. ts版本,开发微信小游戏,wxlocal的问题,,, [ 72%]

...然后去加载wxlocal里面的资源,   Laya.loader.load(arr, Handler.create(this, this.onLoadComplete),Handler.create(this, this.onLoading, null, false)); 发现并没有去加载这个资源,加断点发现一样走到了URL.formatURL 这个函数里面, 然后和前面设置的那个ftp...

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

326. 绘制图形 · LayaAir3.0文档 · LAYABOX [ 72%]

...mber = 1, percent?: boolean): DrawRectCmd { return this.addCmd(DrawRectCmd.create(x, y, width, height, fillColor, lineColor, lineWidth, percent)); } 代码示例: let sp = new Laya.Sprite(); //画矩形 sp.graphics.drawRect(20, 20, 100, 50, "#ffff00", "#00ff00", 5, false); this.owner.addChild(sp);...

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

327. 射线检测-碰撞器混合 [ 72%]

...yaMonkey/LayaMonkey.lh", clas: Laya.Sprite3D, priority: 1 } ]; Laya.loader.create(resource, Laya.Handler.create(this, onLoadFinish)); function onLoadFinish() { this.scene = Laya.stage.addChild(Laya.Scene.load("../../res/threeDimen/scene/ColliderScene/ColliderDemo.ls")); //初始化照相机 this.cam...

来源: Laya_示例 发布时间: 20241119

328. 用ide打包后的图片,Texture显示不出来? [ 72%]

...码 : Laya.loader.load([{url: "comp.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); function onLoaded(){     var aa = new Sprite();     Laya.stage.addChild(aa);     var texture = new Laya.Texture();     texture.load('comp/zzw.png' );     setTimeout( function(){        ...

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

329. UI-Tab [ 72%]

..."#232628"; Laya.stage.bgColor = "#3d3d3d"; Laya.loader.load(skins, Handler.create(this, onSkinLoaded)); })(); function onSkinLoaded() { var tabA = createTab(skins[0]); tabA.pos(40, 120); tabA.labelColors = "#000000,#d3d3d3,#333333"; var tabB = createTab(skins[1]); tabB.pos(40, 220); tabB.labelColors...

来源: Laya_示例 发布时间: 20241119

330. clearUnLoaded的bug LayaAirIDE1.7.9 [ 72%]

...ngUI"), res.download.bg("bg5")]     Laya.loader.load(arr, Laya.Handler.create(this, onComplete))     Laya.loader.clearUnLoaded()     Laya.loader.load(arr, Laya.Handler.create(this, onComplete)) }  function onComplete(){     trace("complete") } Resources already exist,is repeated loa...

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