大约有 1,017 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0057 秒)
Laya_社区(598) Laya2.0_文档(86) Laya3.0_api(75) Laya2.0_api(62) laya_api(57) Laya2.0_示例(53) Laya_示例(49) Laya3.0_文档(37)
...hape); //加上这句正常,反之则异常 //_shape.cacheAsBitmap=true; pos(300,300); Tween.to(this,{rotation:360},3000); } override public function get width():Number{ return _shape.width; } override public function get height():Number{ return _shape.height; } } } BUG2:package ui.test { import l...
来源: Laya_社区 发布时间: 20170124
... 0, 720, 5120); //更改背景2的位置,放在背景1的上边 this.bg1.pos(0, -3840); this.bg2.pos(0, -8960); //把背景图显示在容器内 this.addChild(this.bg2); //创建一个帧循环,更新容器的位置 Laya.timer.frameLoop(1, this, this.onLoop); 补充:在游戏开始游戏中loa...
来源: Laya_社区 发布时间: 20181105
...(); text.fontSize = 30; text.color = "#ff0000"; text.text = "你好"; text.pos(100, 100); Laya.stage.addChild(text); text = new Text(); text.fontSize = 30; text.color = "#ff0000"; text.text = "你好"; text.font = "remember"; text.pos(100, 200); Laya.stage.addChild(text); } } } 或者在con...
来源: Laya_社区 发布时间: 20191211
...createText(); //设置不进行任何裁剪 t1.overflow = Text.VISIBLE; t1.pos(10, 10); var t2:Text= createText(); //设置不显示文本域外的字符像素 t2.overflow = Text.SCROLL; t2.pos(10, 110); var t3 = createText(); //设置不显示超出文本域的字符 t3.overflow = Text.HIDDEN; t3.p...
来源: Laya2.0_文档 发布时间: 20210715
...e(htmlCanvas);//使用htmlCanvas创建Texture var sp:Sprite = new Sprite().pos(0, 200);//创建精灵并把它放倒200位置 sp.graphics.drawTexture(texture);//把截图绘制到精灵上 Laya.stage.addChild(sp);//把精灵显示到舞台 也可以获取原始图片数据,分享到网上,从而...
来源: laya_api 发布时间: 20170929
...均已创建完毕,此方法只执行一次 onAwake(): void { this.tab.pos(200, 200); this.tab.labelBold = true; this.tab.labelSize = 20; this.tab.labelStrokeColor = "#000000"; this.tab.labels = "Tab 1,Tab 2,Tab 3"; this.tab.labelColors = "#32556b,#8FB299,#ff0000"; this.tab.selectedIndex = -1; } }...
来源: Laya3.0_文档 发布时间: 20241014
...b.loadImage(newBg1, x, y, singleWidth, singleHeight); sb.skin = newBg1; sb.pos(x,y); sb.size(singleWidth, singleHeight); // sp.loadImage(imgUrl, x, y, singleWidth, singleHeight); sp.skin = imgUrl; sp.pos(x,y); sp.size(singleWidth, singleHeight);你这种需求sprite就不太实用,你直接用Imag...
来源: Laya_社区 发布时间: 20180427
..., 800)); } function onStageClick() { var p = new Point(0, 0); layer.getTilePositionByScreenPos(Laya.stage.mouseX, Laya.stage.mouseY, p); layer.getScreenPositionByTilePos(Math.floor(p.x), Math.floor(p.y), p); sprite.pos(p.x, p.y); } function mapLoaded() { layer = tiledMap.getLayerByIndex(0); var radi...
来源: Laya_示例 发布时间: 20241118
...//文字滚动 // m_talkScroll = new UIScroll(610.0, 250); // m_talkScroll.pos(0, 0); // this.addChild(m_talkScroll); // this.onAction(); // this.onAction = function(){ // console.log("-------------hhhhhhhhhhh "); // } //第一种解决方法 onAction(); function onAction(){ console.log("这是第...
来源: Laya_社区 发布时间: 20171127
...均已创建完毕,此方法只执行一次 onAwake(): void { this.clip.pos(Laya.stage.width >> 1, Laya.stage.height >> 1); // 位置 this.clip.skin = "atlas/comp/clip_num.png"; // 皮肤 this.clip.interval = 1000; // 切片动画的播放时间间隔1000毫秒 this.clip.clipX = 10; //...
来源: Laya3.0_文档 发布时间: 20241014