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

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

101. 设置遮罩(TypeScript-LayaAir基础篇(TS)-位图) [ 86%]

...并添加到舞台 Laya.loader.load(this.Res,Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{ this.img = new Laya.Sprite(); //获取图片资源,绘制到画布 this.img.graphics.drawTexture(Laya.loader.getRes(this.Res),150,50); //添加到舞台 Laya.stage.addChild(this....

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

102. 分享一个Graphics画圆角矩形的封装 [ 86%]

分享一个Graphics画圆角矩形的封装 圆角矩形实践中用得频繁,做了一个封装分享出来,TS版本的,分2步:   1、在项目的libs目录中新建一个d.ts,写入画圆角矩形的函数声明 declare namespace laya.display {     interface Graphics {      ...

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

103. laya中的截屏在WebGL下为什么无效呢? [ 86%]

...照特效 this._shapeSnapEffect = new egret.Shape; this._shapeSnapEffect.graphics.beginFill( 0xFFFFFF ); this._shapeSnapEffect.graphics.drawRect( 0, 0, L.W_CLIP, L.H_CLIP ); this._shapeSnapEffect.graphics.endFill(); this._shapeSnapEffect.cacheAsBitmap = true; this._shapeSnapEffect.x = this._bmpSnap....

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

104. Graphics如何设置fillStyle和strokeStyle不同透明度 [ 86%]

Graphics如何设置fillStyle和strokeStyle不同透明度 请问如果实现一个填充半透明而边框不透明的圆角矩形的绘制呢? 2018-04-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 w111436...

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

105. 如何使用graphics绘画虚线 [ 85%]

如何使用graphics绘画虚线 如何使用graphics绘画虚线?类似 CanvasRenderingContext2D.setLineDash() 那种。如没有实现,能否把这个方法加上? 2017-04-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...

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

106. 鼠标交互-自定义事件 [ 85%]

... Sprite = Laya.Sprite, Event = Laya.Event; this.sp = new Sprite(); this.sp.graphics.drawRect(0, 0, 200, 200, "#D2691E"); this.sp.pivot(100, 100); this.sp.x = Laya.stage.width / 2; this.sp.y = Laya.stage.height / 2; this.sp.size(200, 200); Laya.stage.addChild(this.sp); this.sp.on(ROTATE, this, this.o...

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

107. layaAir真的没办法做涂鸦板? [ 85%]

layaAir真的没办法做涂鸦板? 我用sp.graphics.drawLines方法做了个鼠标画线,确实是连续画的时间长了,就会很卡,在平板上尤其明显,画两三条线之后就不行了,没办法解决吗?用JS原生的画线方法怎么能加载我的内容上呢,我是...

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

108. iphoneX环境下新手引导的抠图透明区域为黑色,其它机型都是正常的。 [ 85%]

... maskArea: Laya.Sprite = new Laya.Sprite(); maskArea.alpha = 0.5; maskArea.graphics.drawRect(0, 0, Laya.stage.width, Laya.stage.height, "#000000"); maskArea.name = "maskArea"; this.guideContainer.addChild(maskArea); this.interactionArea = new Laya.Sprite(); this.interactionArea.blendMode = "destinat...

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

109. 分享:改变图片皮肤,保持图片原样宽高显示 [ 85%]

...rivate function onClick():void { image.skin="bg.jpg"; } } }方法2:使用graphics.drawTexture的方式】 package { import laya.display.Sprite; import laya.events.Event; import laya.net.Loader; import laya.resource.Texture; import laya.utils.Handler; public class LayaAirDemo { private var sp:Sprit...

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

110. LayaAir 2.0 微信排行榜 离屏画布不能直接附加到组件纹理上 [ 84%]

...件纹理上 A:let texture = new Laya.Texture(sharedCanvas); backImage.graphics.drawTexture(texture)   B:backImage.texture = texture     1.7版本可以直接把共享画布赋值给组件纹理,2.0不行(A,B两种方法) 报如下错误:   value._addReference is not a function ...

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