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

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

561. 骨骼动画-藤蔓 [ 70%]

...un() { const Templet = Laya.Templet, Event = Laya.Event; const mAniPath = "res/spine/spineRes5/vine.sk"; mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, this.parseComplete); mFactory.on(Event.ERROR, this, this.onError); mFactory.loadAni(mAniPath); } onError() { trace("error"); } parseCom...

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

562. ogg格式的音效资源怎样加载 [ 70%]

ogg格式的音效资源怎样加载 this.resUrlArr.push({url:"res/music/1_Pass0.ogg",type:Laya.Loader.SOUND}); this.resUrlArr.push({url:"res/music/1_Pass1.ogg",type:Laya.Loader.SOUND});现在这样写现在pc端没有问题,网页的话加载不了 2017-04-11 添加评论 免费帖 --> 分享 ...

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

563. 脚本化(ActionScript-IDE篇(AS3)-组件化开发相关) [ 70%]

...refab,SizeGrid,Vec,Vector,Ease | | accept | String的关联属性,accept:res 为接收资源地址 | | acceptTypes | Node和accept的关联属性, 接收的类型,比如和节点使用RevoluteJoint,PrismaticJoint,RigidBody;与accept:res使用jpg,png,txt限制后缀 | | option | Option和editOp...

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

564. bitmapFont.loadFont()加载多个地址导致位图输出重 [ 70%]

...致位图输出重 构造函数中是 this.setDataByTextureList("\n6+", ["res/fontadd/num6.fnt","res/fontadd/num+.fnt"]);     private setDataByTextureList(value:string, urls:string[]){ for(var i=0;i<urls.length;i++){ var bitmapFont: BitmapFont = new BitmapFont(); var url=urls[i]; bitmapFont.loa...

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

565. 骨骼动画-橡胶人 [ 70%]

...un() { const Templet = Laya.Templet, Event = Laya.Event; const mAniPath = "res/spine/spineRes4/stretchyman.sk"; mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, this.parseComplete); mFactory.on(Event.ERROR, this, this.onError); mFactory.loadAni(mAniPath); } onError() { trace("error"); } p...

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

566. 为什么谷歌浏览器调试可以显示这些文字打包后却没有了 [ 70%]

...09-11 16:17 class CAffiche { private textfiled:Laya.HTMLDivElement; public Reset():void { gRoomView.chatBox.innerHTML = ""; gRoomView.chatBox.height = 1; } public SysSay(txt:string):void { this.AddChat(0, "法官", txt); } public PlayerSay(msg:any):void { this.AddChat(msg['from_c...

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

567. 输入设备-摇一摇 [ 70%]

...nst Sprite = Laya.Sprite; let shakePic = new Sprite(); shakePic.loadImage("res/inputDevice/shake.png"); Laya.stage.addChild(shakePic); } showConsoleText() { const Text = Laya.Text; console = new Text(); Laya.stage.addChild(console); console.y = picH + 10; console.width = Laya.stage.width; console.he...

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

568. 视频Demo播放问题 [ 70%]

...写的是视频的路径有问题。。把videoElement.src = "../../res/av/mov_bbb.mp4";改成videoElement.src = "res/av/mov_bbb.mp4";就可以了 qian • 2018-03-28 16:32 我这边是可以直接播放的 看看是不是你ide出了问题 f12有没有报错 zl18510521186 • 20...

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

569. 安卓上的百度小游戏,playMusic会出现多个背景音乐 [ 70%]

...卓8.0.0 百度版本:11.24.0.10   demo:Laya.SoundManager.playMusic("res/sound/BGM.mp3"); setTimeout(() => { Laya.SoundManager.playMusic("res/sound/bird_01_flying.mp3"); }, 3000); 2020-06-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容...

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

570. 图集动画没有显示 [ 70%]

...动画没有显示 Laya.init(1600, 1400, Laya.WebGL); var AniConfPath = 'res/atlas/cloud.json'; Laya.loader.load(AniConfPath, Laya.Handler.create(this, this.createAnimation), null, Laya.loader.ATLAS); function createAnimation() { var ani = new Laya.Animation(); ani.loadAtlas(AniConfPath); ani.interv...

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