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

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

171. 超出文本区域的处理&滚动文本(JavaScript-LayaAir基础篇(JS)-文本) [ 68%]

...tion createTexts() { var t1 = createText(); t1.overflow = Text.VISIBLE; t1.pos(10, 10); var t2 = createText(); t2.overflow = Text.SCROLL; t2.pos(10, 110); var t3 = createText(); t3.overflow = Text.HIDDEN; t3.pos(10, 210); } function createText() { var txt = new Text(); txt.text = "Layabox是HTML5引...

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

172. laya.display.Sprite [ 68%]

...e(htmlCanvas);//使用htmlCanvas创建Texture var sp:Sprite = new Sprite().pos(0, 200);//创建精灵并把它放倒200位置 sp.graphics.drawTexture(texture);//把截图绘制到精灵上 Laya.stage.addChild(sp);//把精灵显示到舞台 也可以获取原始图片数据,分享到网上,从而...

来源: laya_api 发布时间: 20170929

173. 超出文本区域的处理&滚动文本(ActionScript-LayaAir基础篇(AS3)-文本) [ 68%]

...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

174. 导航标签组组件 · LayaAir3.0文档 · LAYABOX [ 68%]

...均已创建完毕,此方法只执行一次 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

175. 创建多个Sprite对象后,再次取出来的时候坐标全为0,0高宽跟创建时的也不一样 [ 68%]

...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

176. 区块地图-等角地图 [ 68%]

..., 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_示例 发布时间: 20241117

177. 关于类中方法的调用 [ 67%]

...//文字滚动 // 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

178. 位图切片组件 · LayaAir3.0文档 · LAYABOX [ 67%]

...均已创建完毕,此方法只执行一次 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

179. laya.map.TileAniSprite [ 67%]

...e(htmlCanvas);//使用htmlCanvas创建Texture var sp:Sprite = new Sprite().pos(0, 200);//创建精灵并把它放倒200位置 sp.graphics.drawTexture(texture);//把截图绘制到精灵上 Laya.stage.addChild(sp);//把精灵显示到舞台 也可以获取原始图片数据,分享到网上,从而...

来源: laya_api 发布时间: 20170929

180. drawToTexture 绘制函数不工作呢 [ 67%]

...a.Sprite();         copyimg.size(100,100);         copyimg.pos(0,200);         copyimg.graphics.drawTexture(texcpy,0,0,100,100);         Laya.stage.addChild(copyimg);   这样的方式复制的图片也显示不出来   2019-07-30 0 0 分享 微博 QZONE 微信 为...

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