大约有 1,017 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
Laya_社区(598) Laya2.0_文档(86) Laya3.0_api(75) Laya2.0_api(62) laya_api(57) Laya2.0_示例(53) Laya_示例(49) Laya3.0_文档(37)
...据坐标集合绘制多个贴图 Public Properties PropertyDefined By pos : Array 绘制次数和坐标。 DrawTexturesCmd texture : Texture 纹理。 DrawTexturesCmdPublic Methods MethodDefined By recover():void 回收到对象池 DrawTexturesCmdPublic Constants ConstantDefined By ...
来源: Laya2.0_api 发布时间: 20190513
...显示是正常的 let node: Laya.Image = new Laya.Image('c1.png'); node.pos(300, 300) Laya.stage.addChild(node); var sp: Laya.Sprite = new Laya.Sprite(); node.mask = sp; sp.pos(50, 50); var sp2: Laya.Sprite = new Laya.Sprite(); sp2.pos(300, 500); Laya.stage.addChild(sp2); let r: number = 0 Laya.tim...
来源: Laya_社区 发布时间: 20190701
...mage(apePath); apeshadow = new Sprite(); apeshadow.loadImage(apePath); ape.pos(100,50); apeGlow.pos(250,50); apeshadow.pos(400,50); Laya.stage.addChild(ape); Laya.stage.addChild(apeGlow); Laya.stage.addChild(apeshadow); } function filterGlow() { //创建一个发光滤镜 var glowFilter = new GlowFi...
来源: Laya2.0_文档 发布时间: 20210714
...rite,为啥提示我要用node类型接收,关键我用node接收下面pos又有报错。提示node类型没有pos属性。 附件 : --> 2024-05-19 1 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折...
来源: Laya_社区 发布时间: 20240519
...font = "Arial"; ta.fontSize = 18; ta.bold = true; ta.color = "#3d3d3d"; ta.pos(100, 15); ta.size(375, 355); ta.padding = "70,8,8,8"; var scaleFactor = Browser.pixelRatio; Laya.stage.addChild(ta); } })();module laya { import Stage = Laya.Stage; import TextArea = Laya.TextArea; import Browser = Laya.B...
来源: Laya_示例 发布时间: 20241117
...uixueying 赞同来自: anlijames 改下drawTexture针对坐标的设置用pos表示就好了,drawtexture下设置x,y改变的是纹理相对于b(父级)的位置改变,p.pos改变的是p容器的位置 b.graphics.drawTexture(Laya.loader.getRes(Res)); b.pos(tx-45,ty-45); b.size(92,96); b.n...
来源: Laya_社区 发布时间: 20170517
...olorPicker.selectedColor = "#ff0033"; colorPicker.skin = skin; colorPicker.pos(100, 100); colorPicker.changeHandler = new Handler(this, onChangeColor, [colorPicker]); Laya.stage.addChild(colorPicker); onChangeColor(colorPicker); } function onChangeColor(colorPicker) { console.log(colorPicker.selecte...
来源: Laya_示例 发布时间: 20241117
...font = "Arial"; ta.fontSize = 18; ta.bold = true; ta.color = "#3d3d3d"; ta.pos(100, 15); ta.size(375, 355); ta.padding = "70,8,8,8"; Laya.stage.addChild(ta); } } new UI_TextArea();module laya { import Stage = Laya.Stage; import TextArea = Laya.TextArea; import Browser = Laya.Browser; import Handler ...
来源: Laya2.0_示例 发布时间: 20241117
...w Laya.CompoundColliderShape(); this.cube.transform.localPosition = new Laya.Vector3(); } let pos = this.cubeP.transform.position; pos.z += dis; this.cubeP.transform.position = pos; if(this.cube.transform.localPosition.z !...
来源: Laya_社区 发布时间: 20200223
...olorPicker.selectedColor = "#ff0033"; colorPicker.skin = skin; colorPicker.pos(100, 100); colorPicker.changeHandler = new Handler(this, this.onChangeColor, [colorPicker]); Laya.stage.addChild(colorPicker); this.onChangeColor(colorPicker); } onChangeColor(colorPicker) { console.log(colorPicker.select...
来源: Laya2.0_示例 发布时间: 20241117