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

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

1. 资源加载 · LayaAir3.0文档 · LAYABOX [ 100%]

...url, Laya.Loader.IMAGE).then((res: Laya.Texture) => { let sp = new Laya.Sprite(); sp.texture = res; this.owner.addChild(sp); }); } } 常用类型如下: 引擎全局变量 类型标识字符串 类型说明 Laya.Loader.TEXT text 文本类型 Laya.Loader.JSON json JSON类型 Laya.Loader.XML xml ...

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

2. 精灵 · LayaAir3.0文档 · LAYABOX [ 98%]

精灵(Sprite)一、概述二、IDE中使用2.1 创建精灵2.2 基础属性2.3 Sprite的特有属性2.4 其它属性2.5 脚本控制属性三、代码中使用3.1 创建Sprite3.2 显示图片3.3 基础属性3.4 其它属性精灵(Sprite) 一、概述 游戏中Sprite精灵是在屏幕中能...

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

3. 通用发布 · LayaAir3.0文档 · LAYABOX [ 91%]

...egClass() export class Script extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Scene3D }) scene3d: Laya.Scene3D; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { //We...

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

4. 微信小游戏 · LayaAir3.0文档 · LAYABOX [ 90%]

...egClass() export class Script extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Scene3D }) scene3d: Laya.Scene3D; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { //...

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

5. UI组件详解 · LayaAir3.0文档 · LAYABOX [ 89%]

...每一个UI组件都有这样的相对布局属性。而基础显示对象Sprite等就没有相对布局,只有绝对布局。 (图3-1) 在相对布局中,UI组件(如按钮,文本框等)的位置是相对于它们的父节点来确定的。这种布局带来了极大的灵活性,并...

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

6. 使用二进制图片 · LayaAir3.0文档 · LAYABOX [ 87%]

...eader(); reader.readAsDataURL(imgBlob); reader.onload = (e)=> { let sp1:Sprite = new Sprite(); //加载Base64图片数据 sp1.loadImage(e.target.result as string); this.owner.addChild(sp1); } }); 上述代码中,用 Laya.loader.fetch 加载图片二进制数据,根据自定义的规则,可...

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

7. 2D性能优化 · LayaAir3.0文档 · LAYABOX [ 87%]

...1.3 资源卸载1.4 关于滤镜、遮罩二、渲染优化方式2.1 优化Sprite2.2 优化DrawCall2.3 优化Canvas2.4 CacheAs2.5 文字描边2.6 跳过文本排版,直接渲染三、减少CPU使用量3.1 减少动态属性查找3.2 性能消耗的回收3.3 获取显示对象边界的做法3.4 根...

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

8. 输入文本组件 · LayaAir3.0文档 · LAYABOX [ 75%]

...export class TextInputControl extends Laya.Script { //declare owner : Laya.Sprite3D; @property( { type : Laya.TextInput } ) public txtin: Laya.TextInput; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake():...

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

9. 多行输入文本组件 · LayaAir3.0文档 · LAYABOX [ 75%]

... export class TextAreaControl extends Laya.Script { //declare owner : Laya.Sprite3D; @property( { type : Laya.TextArea } ) public txtarea: Laya.TextArea; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake():...

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

10. 组件属性的代码使用 · LayaAir3.0文档 · LAYABOX [ 73%]

...方式 LayaAir分为2D节点与3D节点类型,当设置为2D节点Laya.Sprite时,不能将3D节点作为其属性值。当设置为3D节点Laya.Sprite3D时,不能将2D节点作为其属性值。 1.1 2D节点的使用 首先,如动图1-1所示,将场景中已经添加好的2D节点Sprite拖...

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