大约有 1,852 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0055 秒)
Laya_社区(1125) Laya3.0_api(242) Laya2.0_文档(103) Laya2.0_示例(94) Laya_示例(91) Laya2.0_api(82) laya_api(76) Laya3.0_文档(39)
...实现根据它的父节点的宽高来实现100%填充 就是设置HBox.width=100%,然后HBox会根据父节点的width来自动调节,现在UI里面提供的HBox.width=0好像只支持根据子节点的宽来计算。 2017-08-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...
来源: Laya_社区 发布时间: 20170831
...{ export class Sprite_Guide { private width = 750; private height = 1334; constructor() { Laya3D.init(this.width, this.height); Laya.stage.setScreenSize(this.w...
来源: Laya_社区 发布时间: 20200119
... Class Size Hierarchy Size Index Constructors constructor Accessors height width fullScreen Constructors constructor new Size(width: number, height: number): Size Defined in laya/d3/utils/Size.ts:33 创建Size实例 Parameters width: number 宽度 height: number 高度 Returns Size Accessors height ...
来源: Laya3.0_api 发布时间: 20231115
使用高度图的时候 Cannot read property 'width' of undefined var terrainSprite = Laya.MeshTerrainSprite3D.createFromMeshAndHeightMap(terrain.meshFilter.sharedMesh, texture, 45.58879852294922, -45.58879852294922); //报错:Cannot read property 'width' of undefinedDemo见附件。 附件 :...
来源: Laya_社区 发布时间: 20170601
...问题 this.initMask = function () { this.mask = new Sprite(); this.mask.width = this.width; this.mask.height = this.height; this.mask.scrollRect = new Rectangle(); this.mask.scrollRect.setTo(0, 0, this.width, this.height); this.mask.optimizeScrollRect = true; this.addChild(this.mask); } this.initCo...
来源: Laya_社区 发布时间: 20161118
screenMode 设置成vertical后,width和hight获取问题 横向拉伸浏览器,变大的是Laya.stage.clientHeight,而不是laya.stage.clientWidth, 2017-07-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复...
来源: Laya_社区 发布时间: 20170714
...法完成缓动后的回调怎么写,Tween.to(beginbox,{x:-Laya.Browser.width},1000,null,aaa,0,false);aaa是一个测试方法 2017-01-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 zhpr613 赞同来自: cuix...
来源: Laya_社区 发布时间: 20170104
...d Hierarchy DrawEllipseCmd Index Properties fillColor height lineColor lineWidth percent width x y ID Methods getBoundPoints recover Properties fillColor fillColor: any Defined in laya/display/cmd/DrawEllipseCmd.ts:27 填充颜色,或者填充绘图的渐变对象。 height height: number Defined ...
来源: Laya3.0_api 发布时间: 20231115
...形 Hierarchy DrawRectCmd Index Properties fillColor height lineColor lineWidth percent width x y ID Methods getBoundPoints recover Properties fillColor fillColor: any Defined in laya/display/cmd/DrawRectCmd.ts:31 填充颜色,或者填充绘图的渐变对象。 height height: number Defined in l...
来源: Laya3.0_api 发布时间: 20231115
...。 1.代码层 //获取真机分辨率 x 2,实际尺寸 var SCREEN_WIDTH = Laya.Browser.clientWidth*2; var SCREEN_HEIGHT = Laya.Browser.clientHeight*2; //引擎自带适配方案 Laya.init(SCREEN_WIDTH,SCREEN_HEIGHT, Laya.WebGL); Laya.stage.scaleMode =Laya.stage.SCALE_FIXED_WIDTH; Laya.stage.a...
来源: Laya_社区 发布时间: 20200423