大约有 976 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0062 秒)
Laya_社区(598) Laya2.0_文档(80) Laya3.0_api(67) Laya2.0_api(60) laya_api(56) Laya2.0_示例(41) Laya_示例(37) Laya3.0_文档(37)
...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
... 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
...该文件的 16065 行注释掉,注释后的代码如下: error(err, pos) { if (typeof err === 'string') err = { message: err }; if (pos) augmentCodeLocation(err, pos, curSource, id); err.id = id; err.hook = 'transform'; // return pluginContext.error(err); },该方法虽然可以解决 tslib 找...
来源: Laya_社区 发布时间: 20201223
...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
...个目标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
...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
...FFFF"; txt.fontSize = 60; txt.stroke = 5; txt.strokeColor = "#FF0000"; txt.pos(60,100); txt.bold = true; Laya.stage.addChild(txt); } } }但是提示参数数量不正确 这个问题要怎么解决呢? 附件 : --> 2017-05-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...
来源: Laya_社区 发布时间: 20170522
...置",(this.owner.getChildByName("Main Camera") as Laya.Sprite3D).transform.position) } onStart(): void { Laya.stage.on(Laya.Event.MOUSE_DOWN,this,this.onMouseDownCb) } private onMouseDownCb(e:Laya.Event):void{ console.log("点击屏幕") // console.log("相机位置",this.camera.) this.camera....
来源: Laya_社区 发布时间: 20190621
... = new Laya.VideoNode; //添加到舞台 Laya.stage.addChild(video); video.pos(200,200); //设置位置 video.source = "resources/layaAir.mp4"; //设置视频源文件 video.play(); //开始播放 } } Copyright ©Layabox 2022 all right reserved,powered by LayaAir Engine更新时间: 2024-10-14 2...
来源: Laya3.0_文档 发布时间: 20241014
...回复 zuojianfei 赞同来自: updateItem(items):void{ var posY = 0; var data: Array<any> = []; for(var i= 0 ;i< items.UserWareList.length;i++){ var itemList = new BagItem(items.icon,items.name,items.count); ...
来源: Laya_社区 发布时间: 20170310