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

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

11. 输入设备-指南针 [ 92%]

...hange); } function createCompass() { compassImg = new Sprite(); Laya.stage.addChild(compassImg); compassImg.loadImage(compassImgPath); compassImg.pivot(compassImg.width / 2, compassImg.height / 2); compassImg.pos(Laya.stage.width / 2, 400); } function drawUI() { var canvas = new Sprite(); Laya.stage...

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

12. timer.loop帧率高于物理帧率移动父级导致子物体本地坐标异常 [ 92%]

...ME_SLOW;         Laya.Stat.show();         this.scene = Laya.stage.addChild(new Laya.Scene3D());                  Laya.timer.loop(1, this, this.loopfun);     }     loopfun(){         this.lastT = Date.now();         let dis = 1;         if(!this.cubeP){         ...

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

13. 输入设备-指南针 [ 91%]

...pass() { const Sprite = Laya.Sprite; compassImg = new Sprite(); Laya.stage.addChild(compassImg); compassImg.loadImage(compassImgPath); compassImg.pivot(compassImg.width / 2, compassImg.height / 2); compassImg.pos(Laya.stage.width / 2, 400); } createDirectionIndicator() { const Sprite = Laya.Sprite; ...

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

14. 用Transform和直接设置xy坐标的效果不一致 [ 90%]

... "HELLO"; txt.color = "#ffffff"; txt.x = 1136 / 2, txt.y = 320; Laya.stage.addChild(txt);          txt = new Laya.Text(); txt.text = "HELLO"; txt.color = "#ffffff"; let mat = new Laya.Matrix(); mat.translate(1136 / 2, 320); txt.transform = mat; Laya.stage.addChild(txt); 2018-10-15 添加评...

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

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

...ge(); sp.name = "logo_" + nums; sb.name = "logo_bg_" + nums; userBoxSprite.addChild(sb); userBoxSprite.addChild(sp); // sb.loadImage(newBg1, x, y, singleWidth, singleHeight); sb.skin = newBg1; sb.pos(x,y); sb.size(singleWidth, singleHeight); // sp.loadImage(imgUrl, x, y, singleWidth, singleHeight); ...

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

16. 遇到一个关于父节点和子节点点击的问题 [ 89%]

...   var bigSprite = new sprite();   var smalla = new sprite(); bigSprite.addchild(smalla); var smallb = new sprite(); bigSprite.addchild(smallb); var smallc = new sprite(); bigSprite.addchild(smallc);   意思是一个大的sprite:bigSprite    里面包含三个小的sprite:smalla ,smallb ...

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

17. 自定义panel类问题 [ 89%]

...?   g_uiScroll = new UIScroll(610,127); g_uiScroll.pos(70,30); scollbg.addChild(g_uiScroll); m_talkScroll = new UIScroll(610.0, 250); m_talkScroll.pos(60, 500); this.addChild(m_talkScroll);     2017-11-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...

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

18. 关于2d内的坐标转换问题 [ 89%]

...修改a对象的显示对象层级并移动a对象到目标点 Laya.stage.addChild(a); a.pos(globalStartPoint.x,globalStartPoint.y); Laya.tween.to(a,{x:globalEndPoint.x,globalEndPoint.y},300);第三步:将a对象的显示对象层级修改为a_end对象同层级 a_end.parent.addChild(a); a.pos(a_e...

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

19. 飞机大战js源码中判断语句问题 [ 88%]

...景图。 box = new Sprite(); //把这容器添加到舞台。 Laya.stage.addChild(box); //创建背景1 bg1 = new Sprite(); //加载并显示背景图1 bg1.loadImage("res/background.png"); //把背景1添加到容器 box box.addChild(bg1); //创建背景2 bg2 = new Sprite(); //加载并显示背景...

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

20. 鼠标事件能否在有图形的区域感应,特别是子项坐标为负数时(已经找到问题) [ 88%]

...500,500,"#fff0cc"); testPan = new Sprite(); testPan.name = "testPan"; this.addChild( testPan ); testPan.pos( 300,300); testPan.graphics.drawRect(0,0,90,100,"#faaff0"); testPan.on(Event.CLICK,this,onMouseClick); testPan.width = 90; testPan.height = 100; var mcSp:Sprite = new Sprite(); mcSp.graphics.d...

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