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

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

51. 局部坐标转全局坐标结果与预期相差甚远 [ 82%]

...了 2018-12-19 0 4 分享 微博 QZONE 微信 LT 赞同来自: Laya.stage.addChild(this); Laya.timer.once(500,this,test); 转坐标放在后面加了个延时执行。。就没问题了。。应该是执行的时候组件还没有全部加进stage。。 2018-12-20 0 0 分享 微博 QZONE 微信 为...

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

52. 显示与切换图片(ActionScript-LayaAir基础篇(AS3)-位图) [ 82%]

...100,50 img.loadImage("res/img/monkey1.png"); //添加到舞台 Laya.stage.addChild(img); } } } ``` 在示例代码里,“`100,50`”是图片的显示坐标信息。示例代码运行效果如图2-1所示: ![图2-1](img/2-1.png) (图2-1) ### 1.3 用loadImage切换图片的示例 切换图片是...

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

53. 在sprite中设置spirte为mask,设置的mask的坐标点是基于哪个坐标定位的 [ 81%]

...相对于遮罩对象的,比如代码 var ape = new Sprite(); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); ape.pos(400,400); var sprite2 = new laya.display.Sprite(); sprite2.graphics.drawRect(0,0,50,50,"#fff9900"); ape.mask = sprite2;   你可以看下效果   2017-12-2...

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

54. 转换2D屏幕坐标系统到3D正交投影下的坐标系统位置偏差 [ 81%]

...下图一。let cube = new MeshSprite3D(PrimitiveMesh.createBox()); scene.addChild(cube); let pos = new Vector3(); let screenPos = new Vector3(); Laya.timer.frameLoop(1, this, ()=>{ camera.orthographic = true; screenPos.setValue(camera.clientWidth / 2, camera.clientHeight / 2, 0.1); //converScree...

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

55. 微信小游戏中iPhoneX的适配问题 [ 81%]

...= new Laya.Image();     bg.skin = "res/bg.png";     Laya.stage.addChild(bg); })();    在layaIDE,微信开发者工具模拟器,和iPhoneX真机上的显示效果分别如图:       附件 : --> demo.zip 2018-06-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...

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

56. Laya.stage.mouseX; Laya.stage.mouseY取到的坐标用来赋给画曲线方法的起点;在左顶点正常,越往右下角起点就越偏移了 [ 81%]

... this.down2) Laya.stage.on(Laya.Event.MOUSE_UP, this, this.up2) Laya.stage.addChild(this.ps); } down2() { this.a = Laya.stage.mouseX; this.b = Laya.stage.mouseY; console.log("鼠标点击的点" + this.a, this.b) Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.move2) } move2() { this.path.push(Laya....

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

57. 请问Laya如果获取Laya.Event.CLICK时间的点击坐标[ 81%]

...0 ); clickRect.size( Laya.stage.width, Laya.stage.height-100 ); Laya.stage.addChild( clickRect ); clickRect.on( Laya.Event.CLICK, this, changeVxVy ); } function changeVxVy( e ){ console.log( e.nativeEvent.offsetX ); console.log( e.nativeEvent.offsetY ); }   我设置了一个矩形,并给这个...

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

58. 2.5D游戏开发,求思路,求指导 [ 81%]

...考官方案例。 https://layaair.ldc.layabox.co ... World   Laya.stage.addChild(MaxUi.GameUi);   MaxUi.GameUi.addChild(tiledMap);   1、原图按照1.5倍来开发,所有逻辑坐在MaxUi.GameUi 上。 2、手势缩放时,MaxUi.GameUi.scale(2,2) 放大 或者 MaxUi.GameUi.scale(1,1) ...

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

59. hitTestPoint对象父容器rotation旋转之后检测不了碰撞 [ 79%]

...s.are.width, this.are.height, "#00ff00"); _fish.x = 300 _fish.y = 200 this.addChild(_fish); Laya.timer.loop(100, this, function () { console.log(_fish.x, _fish.y, _fish.width, _fish.height, _fish.rotation); if (_fish.hitTestPoint(_fish.x, _fish.y)) { console.log("hittttttt"); } }); } } //程序入...

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

60. 请问UI页面怎么移除 [ 79%]

...I页面怎么移除 我在login.ui里面一个按钮事件触发Laya.stage.addChild(new game());然后这个是动态事件,怎么样在login.ui函数里面先移除这个game.ui页面后再addChild进来呢。因为多次事件触发后就相当于NEW了很多进来。尝试login.remoeChild(game)...

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