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

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

341. 音频-播放演示 [ 81%]

...ite; let btn = new Sprite(); Laya.stage.addChild(btn); btn.size(w, h); btn.graphics.drawRect(0, 0, w, h, "#FF7F50"); btn.graphics.fillText(labelText, w / 2, 8, "24px SimHei", "#FFFFFF", "center"); return btn; } // 播放音效 onPlaySound() { console.log("播放音效"); Laya.SoundManager.playSound(...

来源: Laya2.0_示例 发布时间: 20241118

342. laya.d3.graphics.VertexElementUsage [ 81%]

...| Index | Frames No Frames VertexElementUsageConstants Packagelaya.d3.graphicsClasspublic class VertexElementUsageInheritanceVertexElementUsage Object ... Public Constants ConstantDefined By  AGEADDSCALE0 : int = 21[static] VertexElementUsage  BINORMAL0 : int = 4[static] VertexElementUsage...

来源: laya_api 发布时间: 20170929

343. 分享:DrawToCanvas内存释放问题! [ 81%]

...unction CreateBtn(xx:int,yy:int):Sprite { var btn:Sprite=new Sprite(); btn.graphics.drawRect(0,0,200,50,"#FF0000"); btn.pos(100,400); var text:Text=new Text(); text.text="Draw"; btn.addChild(text); Laya.stage.addChild(btn); btn.size(200,50); return btn; } //点击DrawToCanvas按钮,进行截屏 pr...

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

344. 音频-播放演示 [ 81%]

... w = 110; var h = 40; var button = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); return button; } function onPlayMusic(e) { console.log("播放音乐"); Sou...

来源: Laya_示例 发布时间: 20241118

345. 显示对象的mask缩放为0时遮罩效果不生效 [ 81%]

...testSp = new Laya.Sprite(); testSp.width = 200; testSp.height = 50; testSp.graphics.clear(); testSp.graphics.drawRect(0, 0, testSp.width, testSp.height,'#FF0000'); let tmpMask = new Laya.Sprite(); tmpMask.width = testSp.width; tmpMask.height = testSp.height; tmpMask.graphics.clear(); tmpMask.graphic...

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

346. 环形进度条 [ 81%]

...个环形图片的Image,作为底板 在上方放一个Box,在Box上用graphic画扇形 Box内部有一个同样的环形图片作为Box的mask 2017-12-11 0 3 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 您好,看了您的问题,有如下解决方法 组件中Graphics 中的Pie 组...

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

347. Laya2.0绘制扇形遮罩,显示到部分角度时显示会有部分缺失(demo已上传) [ 81%]

... = 0 Laya.timer.loop(100, this, () => { if (r >= 360) r = 0; r++; sp.graphics.clear(true); sp.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); sp2.graphics.clear(true); sp2.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); }) 附件 : --> test.zip 2019-07-01 添加评论 免费帖 --> 分享 微博 QZO...

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

348. 水漫填充算法(floodfill) [ 81%]

...法或算法。 有没有四元数右乘三维向量的算法? 现在的graphics 填充色透明度还不可以设置吗? 或者说和背景混合呢? 使用setsubpixel函数对图片进行纹理像素填充,安卓端微信不正常 关于graphics.fillTexture,该api只能填充矩形的,...

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

349. Sprite.loadImage();问题 [ 81%]

...链接 提交 2 个回复 Monica - 知识达人 赞同来自: 应该是sp.graphics.clear(); 2017-10-19 0 2 分享 微博 QZONE 微信 laya21126 赞同来自:         /**          * 初始化 地图          */         public function initMap(texture:Texture, bgID:int):void{ ...

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

350. 骨骼动画-Spine事件 [ 81%]

...lSprite); mLabelSprite.x = mStartX; mLabelSprite.y = mStartY; mLabelSprite.graphics.clear(); mLabelSprite.graphics.fillText(tEventData.name, 0, 0, "20px Arial", "#ff0000", "center"); Tween.to(mLabelSprite, { y:mStartY - 200 }, 1000, null,Handler.create(this,playEnd)) } function playEnd() { mLabelSpr...

来源: Laya_示例 发布时间: 20241118