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

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

761. Laya3.0正式版spine3.8的动画资源不能正常显示 [ 50%]

...leton.templet = templet; this.owner.addChild(this.skeleton); this.skeleton.pos( this.pageWidth / 2, this.pageHeight / 2 + 100); this.skeleton.scale(0.4, 0.4); this.skeleton.on(Laya.Event.STOPPED, this, this.play); this.play(); }); } private play(): void { if (++this.index >= this.skeleton.getAnim...

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

762. Image属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 50%]

...Image = new Image("../../../../res/ui/dialog (3).png"); //设置位置 img.pos(165, 62.5); //加载到舞台 Laya.stage.addChild(img); } } } ```

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

763. 在脚本里自定义IDE属性预制体数组类型获取的结果不对 [ 49%]

...          Laya.stage.addChild(bar);             bar.pos(Browser.clientWidth/2,Browser.clientHeight/2);         } 不要直接取数组,把数组里面的地址加载,就可以获取prefab,希望对你有所帮助   2018-11-08 0 2 分享 微博 QZONE 微信 建章...

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

764. 执行回调函数时报is not a function [ 49%]

...微信小程序报错window.focus is not a function Text类中竟然没有pos函数的api~ 编辑了图片 执行代码说加载不出来资源 这个是怎么回事? 关于shader中opengl函数问题 网络send 不回调?什么情况? 资源加载后的 回调 layaair2.0)请问js的Laya.Eve...

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

765. 运行第一个hello,一直黑屏,没有东西显示出来 如何解决? [ 49%]

...置为粗体 txt.bold = true; //设置文本的显示起点位置X,Y txt.pos(60,100); //设置舞台背景色 Laya.stage.bgColor = '#23238E'; //将文本内容添加到舞台 Laya.stage.addChild(txt); 2017-10-19 0 0 分享 微博 QZONE 微信 keailuo 赞同来自: 这个是整个demo hello.rar 2017-...

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

766. laya.physics.PhysicsDebugDraw_API3.0 [ 49%]

...rDeserialize onAwake onDestroy onDisable onEnable once parentRepaint pivot pos reCache removeChild removeChildAt removeChildByName removeChildren removeSelf repaint replaceChild runCallLater scale setChildIndex setGraphics setSelfBounds set_anchorX set_anchorY set_height set_scaleX set_scaleY set_tr...

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

767. PixelLineSprite3D 绘制线段问题 [ 49%]

...个目标OBJ, 首先获得目标的坐标this.objPoint3D= OBJ.transform.position2. 从摄像机(透视)构造一条射线(参考官方3D鼠标点击案例),来得到一个鼠标点击坐标this.originRay = new Laya.Ray(this.sceneCamera.transform.position, new Laya.Vector3(0, 0, 0)) let p...

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

768. Laya List给子元素添加事件后,滚动事件被劫持了 [ 49%]

...   storeTxList.name = 'storeTxList'; storeTxList.width = 610; storeTxList.pos(0, 0); storeTxList.repeatX = repeatX; storeTxList.repeatY = repeatY; //y轴个数 // 使用但隐藏滚动条 storeTxList.vScrollBarSkin = "store/c.png"; let scrollBar = storeTxList.getChildByName('scrollBar'); scrollBar....

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

769. 在 tiledmap 插入一个精灵在上面 [ 49%]

...ledMap.getLayerByIndex(1);   console.info(mapLayer.layerName);   this.sp.pos(0,0);   mapLayer._childs[0].addChild(this.sp); }   }   new GameInfo();   遇到的问题1 把精灵插入地图时 如果代码这样写就会报错  mapLayer.addChild(this.sp);  必须要这样写才可以 mapLayer...

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

770. DragonBone动画使用(JavaScript-LayaAir基础篇(JS)-动画基础) [ 49%]

...Laya.Skeleton(); //添加到舞台 Laya.stage.addChild(skeleton); skeleton.pos(600,350); //通过加载直接创建动画 skeleton.load("res/DragonBones/rooster/Rooster_Ani.sk"); ``` 运行效果如动图6所示 ![动图6](img/6.gif) (动图6)

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