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

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

1. 绘制图形 · LayaAir3.0文档 · LAYABOX [ 100%]

...m y 开始绘制的 Y 轴位置。 * @param width 矩形宽度。 * @param height 矩形高度。 * @param fillColor 填充颜色,或者填充绘图的渐变对象。 * @param lineColor (可选)边框颜色,或者填充绘图的渐变对象。 * @param lineWidth (可选)边框宽度。 *...

来源: Laya3.0_文档 发布时间: 20241014

2. 3D寻路 · LayaAir3.0文档 · LAYABOX [ 91%]

...dFromAStarMap(texture): any { var textureWidth = texture.width; var textureHeight = texture.height; var pixelsInfo = texture.getPixels(); var aStarArr = []; var index = 0; for (var w = 0; w < textureWidth; w++) { var colaStarArr = aStarArr[w] = []; for (var h = 0; h < textureHeight; h++) { var...

来源: Laya3.0_文档 发布时间: 20230303

3. 位图切片组件 · LayaAir3.0文档 · LAYABOX [ 89%]

...割每个切片的宽度 ClipWidth、竖向分割每个切片的高度 ClipHeight,从左向右,从上到下,分割组合为一个切片动画。Clip 的脚本接口参考Clip API。 一、通过LayaAir IDE创建Clip组件 1.1 创建Clip 如图1-1所示,可以在层级窗口中右键进行创...

来源: Laya3.0_文档 发布时间: 20241014

4. 精灵 · LayaAir3.0文档 · LAYABOX [ 78%]

...理:图片路径 this.sprite.pos(Laya.stage.width >> 1, Laya.stage.height >> 1); //位置:屏幕中心 this.sprite.x = Laya.stage.width/2; //xy分别设置位置 this.sprite.y = Laya.stage.height/2; this.sprite.size(512, 313); //大小 this.sprite.width = 512; //宽、高分别设...

来源: Laya3.0_文档 发布时间: 20241014

5. 陀螺仪与加速计 · LayaAir3.0文档 · LAYABOX [ 78%]

...; this.info.color = "#FFFFFF"; this.info.size(Laya.stage.width, Laya.stage.height); Laya.stage.addChild(this.info); Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, this.onDeviceorientation); } private onDeviceorientation(absolute: Boolean, rotationInfo: Laya.RotationInfo): void { this.info.text ...

来源: Laya3.0_文档 发布时间: 20230303

6. UI弹窗 · LayaAir3.0文档 · LAYABOX [ 72%]

...绍 (图5) 属性 功能 dragarea 拖动区域(格式:xywidthheight),默认值为"0,0,0,0"。 ismodal 是否是模式窗口,默认为不开启状态。 isshoweffect 是否显示弹出效果,默认为开启状态。 ispopupcenter 指定对话框是否居中弹出,默认为开...

来源: Laya3.0_文档 发布时间: 20230303

7. 按钮组件 · LayaAir3.0文档 · LAYABOX [ 71%]

...te COLUMNS: number = 2; private BUTTON_WIDTH: number = 147; private BUTTON_HEIGHT: number = 165 / 3; private HORIZONTAL_SPACING: number = 200; private VERTICAL_SPACING: number = 100; private xOffset: number; private yOffset: number; private skins: any[]; //组件被激活后执行,此时所有节...

来源: Laya3.0_文档 发布时间: 20241014

8. 树状列表组件 · LayaAir3.0文档 · LAYABOX [ 71%]

..., 300); tree.x = (Laya.stage.width - tree.width) / 2; tree.y = (Laya.stage.height - tree.height) / 2; tree.bgColor = "#d25454"; this.owner.addChild(tree); } } class Item extends Laya.Box { constructor() { super(); this.right = 0; this.left = 0; var selectBox: Laya.Clip = new Laya.Clip("resources/tre...

来源: Laya3.0_文档 发布时间: 20241014

9. 弹窗视图组件 · LayaAir3.0文档 · LAYABOX [ 69%]

...的资源),默认为false dragArea 拖动区域(格式:x,y,width,height),默认值为"0,0,0,0" isModal 是否是模式窗口,默认为false。为模式窗口时,点击弹窗空白处,可自动关闭该弹窗 isShowEffect 是否显示弹出效果,默认为开启状态。为false...

来源: Laya3.0_文档 发布时间: 20241014

10. 输入文本组件 · LayaAir3.0文档 · LAYABOX [ 65%]

.../ onAwake(): void { this.txtin.pos(Laya.stage.width >> 1, Laya.stage.height >> 1); //位置 this.txtin.size(500, 60); //大小 this.txtin.pivot(this.txtin.width/2, this.txtin.height/2); //轴心点 this.txtin.font = "宋体"; //字体 this.txtin.fontSize = 50; //字体大小 this.txtin.c...

来源: Laya3.0_文档 发布时间: 20241014