大约有 209 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
Laya_社区(60) Laya3.0_api(47) Laya2.0_api(43) laya_api(39) Laya3.0_文档(10) Laya2.0_文档(6) Laya2.0_示例(3) Laya_示例(1)
...大小,例如CheckBox。* ### 3.3 UI适配属性 `left、right、top、bottom`四个属性主要用于组件与父容器边缘距离位置适配。 `centerX、centerY`两个属性主要用于组件与父容器中心位置适配。 在游戏开发中,我们不可能把所有屏幕分辨率全部...
来源: Laya2.0_文档 发布时间: 20210715
...大小,例如CheckBox。* ### 3.3 UI适配属性 `left、right、top、bottom`四个属性主要用于组件与父容器边缘距离位置适配。 `centerX、centerY`两个属性主要用于组件与父容器中心位置适配。 在游戏开发中,我们不可能把所有屏幕分辨率全部...
来源: Laya2.0_文档 发布时间: 20210714
...,y, view 坐标设置为相对于scene的相对坐标, 即: left top right bottom centerX centerY userPanel 坐标设置为相对于view的相对坐标, 即: left top right bottom centerX centerY 现在想要获取 userPanel 的stage 全局坐标, 请教一下, 怎么获取? 附件 : --> 2021-02...
来源: Laya_社区 发布时间: 20210218
...phics _scene _skinBaseUrl _url autoSize hitTestPrior mouseThrough name tag BOTTOM MIDDLE NONE TOP drawtocanvCtx Accessors _isHeightSet _isWidthSet active activeInHierarchy align alpha anchorX anchorY bgColor blendMode bottom cacheAs centerX centerY components customRenderEnable dataSource destroyed ...
来源: Laya3.0_api 发布时间: 20231115
...观察矩阵 Matrix4x4 createOrthoOffCenter(left:Number, right:Number, bottom:Number, top:Number, znear:Number, zfar:Number, out:Matrix4x4):void[static] 计算正交投影矩阵。 Matrix4x4 createPerspective(fov:Number, aspect:Number, znear:Number, zfar:Number, out:Matrix4x4):void[static] 通...
来源: Laya2.0_api 发布时间: 20190513
...就不准了,有什么好方法吗? 有类似于 position: absolute; bottom: 0的方案吗? 现在是用Laya.stage.height - 元素高度,但这样旋屏后定位就错了。 2017-03-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20170326
...: 1121 关注: 2 人 zhongguo168a • 2017-01-16 16:25 组件有属性top,bottom,left,right这些约束条件 cuixueying • 2017-01-17 22:13 hbox本身就是排序的box,是垂直排列,如果想使用top、botton这些,可以用box容器,而非hbox、vbox zhongguo168a • 2017-01-18 14:35 ...
来源: Laya_社区 发布时间: 20170116
... boy2 = new Image(); boy2.skin = "../../res/cartoonCharacters/2.png"; boy2.bottom = 0; boy2.right = 0; boy2.on("click", this, onBoyClick); Laya.stage.addChild(boy2); //侦听点击事件,输出坐标信息 Laya.stage.on("click", this, onClick); Laya.stage.on("resize", this, onResize); })(); functi...
来源: Laya_示例 发布时间: 20241117
... let boy2 = new Image(); boy2.skin = "res/cartoonCharacters/2.png"; boy2.bottom = 0; boy2.right = 0; boy2.on("click", this, this.onBoyClick); Laya.stage.addChild(boy2); //侦听点击事件,输出坐标信息 Laya.stage.on("click", this, this.onClick); Laya.stage.on("resize", this, this.onResize);...
来源: Laya2.0_示例 发布时间: 20241117
...元素进行相对定位,而UI编辑器里提供的left、right、top、bottom的一些相对定位功能,也都是设置像素值(绝对值),导致我的定位不精准,需要在代码里进一步定位,这样UI编辑器就可有可无了! 比如美工的设计尺寸是750*1334,...
来源: Laya_社区 发布时间: 20170222