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

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

261. 图片显示好奇怪 [ 74%]

... texture:Texture=Loader.getRes('logo.png'); var sp:Sprite=new Sprite(); sp.graphics.clear();//把上次的绘制清除 sp.graphics.drawTexture(texture); Laya.stage.addChild(sp); } 2017-05-05 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人...

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

262. 输入设备-贪吃蛇(重力感应) [ 74%]

... height) { Segment.super(this); Segment.prototype.init = function() { this.graphics.drawRect(-height / 2, -height / 2, width + height, height, "#FF7F50"); } // 获取关节另一头位置 Segment.prototype.getPinPosition = function() { var radian = this.rotation * Math.PI / 180; var tx = this.x + Ma...

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

263. 关于Matter的初始化问题 [ 74%]

...ainer(render) { var con = render.container; spriteCon = new Laya.Sprite(); graphicsCon = new Laya.Sprite(); render.spriteContainer = spriteCon; render.graphicsContainer = graphicsCon; con.addChild(spriteCon); con.addChild(graphicsCon); graphics = graphicsCon.graphics; } 现在con这个是undefined...

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

264. laya.display.Animation_API3.0 [ 74%]

...nu Globals "laya/display/Animation" Animation Class Animation Animation 是Graphics动画类。实现了基于Graphics的动画创建、播放、控制接口。 本类使用了动画模版缓存池,它以一定的内存开销来节省CPU开销,当相同的动画模版被多次使用时,相比...

来源: Laya3.0_api 发布时间: 20231115

265. 想用camera做一个类似照相机的功能 [ 74%]

...     this.imgSp = new Sprite();             this.imgSp.graphics.clear();             this.imgSp.cacheAs = "bitmap";             Laya.stage.addChild(this.imgSp);             this.imgSp.graphics.drawTexture(rtex); 2020-06-02 0 0 分享 微博 Q...

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

266. 关于webGL下遮罩效率问题 [ 74%]

...试试下面的例子 代码如下: var spr:Sprite = new Sprite(); spr.graphics.drawCircle(0,0,100,"#ff0000"); spr.mask = new Sprite(); Laya.stage.frameLoop(1, null, drawMask); var index:int = 0; function drawMask():void { index++; if(index > 72) index = index-72; var angle:int = index*5; spr.m...

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

267. 如何实现渐变填充对象呀? [ 74%]

...变填充对象呀? 请问LayaAir如何绘制一个渐变矩形? this.graphics.drawRect(0, 0, 500, 350, "#ffffff") drawRect(x:Number, y:Number, width:Number, height:Number, fillColor:*, lineColor:* = null, lineWidth:Number = 1):void 参数fillColor:* — 填充颜色,或者填充绘图的渐...

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

268. WebGL模式下circle出现锯齿 [ 74%]

WebGL模式下circle出现锯齿 在WebGL模式下,使用Graphics的circle画圆,会出现锯齿;在Canvas并不会出现。有什么好的解决方案? 2019-02-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个...

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

269. 画个圆角矩形就这么难? [ 73%]

...],//p1(0,0)为夹角A,(30,0)为端点p2 ];  //绘制圆角矩形 sp.graphics.drawPath(0, 0, path, { fillStyle: fillColor },{"strokeStyle":"#ffffff","lineWidth":"10"});  上面上你们官方的例子,这么写的结果???? 无语。圆角矩形多么常见的功能,为啥不提...

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

270. 输入设备-贪吃蛇(重力感应) [ 73%]

...foods.push(food); const foodSize = 40; food.size(foodSize, foodSize); food.graphics.drawRect(0, 0, foodSize, foodSize, "#00BFFF"); food.x = Math.random() * Laya.stage.width; food.y = Math.random() * Laya.stage.height; } } class Segment extends Laya.Sprite { constructor(width, height) { super(); this...

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