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

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

521. 分包项目, 加载js时报错 [ 54%]

...                var v:View = new View();             v.graphics.drawCircle(50, 50, 100, "#000000");             v.pos(100, 100);             this.addChild(v);         }     } }   然后, 报错就在Box上: Uncaught TypeError: Cannot read property ...

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

522. 分享:LayaAir实现曲线运动 [ 54%]

... public function CurveDemo() { Laya.init(800,400); ball=new Sprite(); ball.graphics.drawCircle(0,0,50,"#FF00FF"); Laya.stage.addChild(ball); ball.x=275; ball.y=200; Laya.timer.frameLoop(1,this,onFrame); } private function onFrame():void { // TODO Auto Generated method stub if (ball.x>540||ball.x&...

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

523. 如何获取animation的node节点? [ 54%]

...options.srcName].frames[i].res].h, ); // 从大切片切出小切片 skill.graphics.drawTexture(textureIns,aniProps.mc[options.srcName].frames[i].x,aniProps.mc[options.srcName].frames[i].y); // 将小切片渲染到临时精灵上 skillAniArray[i] = skill._graphics._one; // 储存渲染后的小切...

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

524. 图片遮罩大小跟设置不一致 [ 54%]

.../ ... 6quot;); var ape = new Sprite(); ape.scaleX = 0.5 ape.scaleY = 1 ape.graphics.drawTexture(t, 0, 0); Laya.stage.addChild(ape); ape.pos(200, 0);           let sp = new Sprite()           sp.graphics.drawRect(0, 0, 50, 50, '#ffff000')           ape.mask = sp })); } })(); 右边的...

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

525. Laya没有找到在ide里编辑模式下的GridEditor类 [ 54%]

...heen 赞同来自: 同样是fillText,为啥我就画不出来。。 this.graphics.fillText(index + "", p.x, p.y, "12px Arial", "0xffffff", "center"); 在debugger的时候打印出来是undefined... 如果超出数量还会报错,需要改底层才行吗? 2018-01-15 0 2 分享 微博 QZONE 微...

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

526. laya.ui.UIGroup_API3.0 [ 54%]

...IGroup RadioGroup Tab Index Constructors constructor Properties _extra _ownGraphics _scene _skinBaseUrl _url autoSize hitTestPrior mouseThrough name selectHandler tag drawtocanvCtx Accessors _isHeightSet _isWidthSet active activeInHierarchy alpha anchorX anchorY bgColor blendMode bottom cacheAs cent...

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

527. 关于纹理的显示问题 [ 54%]

...求适当调整,如果内容不变可以不用设置成true    sprite.graphics.drawTexture(texture, 0, 0,texture.width,texture.height); this.addChild(sprite);  }      LayaUISample.max.js:19468 Uncaught TypeError: Cannot read property 'width' of undefined     at Texture.moveUV (LayaUISamp...

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

528. 关于大量图片加载绘制后的内存暴增的疑问 [ 54%]

...eTexture(); //如果texture有值,进行绘制并排序 if(texture) { sp.graphics.drawTexture(texture,(num-1)*70,Math.floor((num-1)/10)*70+10); } } private function chageTexture():void { //如果图片的张数超出100,将不再执行 if(num>=100) { Laya.timer.clear(this,onLoop); return; } /...

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

529. laya.display.Sprite [ 54%]

...节点。 Sprite 默认没有宽高,默认不接受鼠标事件。通过 graphics 可以绘制图片或者矢量图,支持旋转,缩放,位移等操作。Sprite同时也是容器类,可用来添加多个子节点。 注意: Sprite 默认没有宽高,可以通过getBounds函数获取;...

来源: Laya2.0_api 发布时间: 20190513

530. 我自己绘制的矩形如何以自身中心点旋转不能实现啊 [ 54%]

...eight,WebGL); Laya.stage.bgColor="#eeffcc"; var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,300,"#000fff"); Laya.stage.addChild(sp); sp.size(200,300); sp.pivot(sp.width/2,sp.height/2); sp.pos(200,200); Laya.timer.frameLoop(1,this,onLoopRotation,[sp]); } private function onLoopRotation(sp:Sp...

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