大约有 445 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0039 秒)
... const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.HSlider }) public hslider: Laya.HSlider; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.hslider.pos(300,...
来源: Laya3.0_文档 发布时间: 20241014
... 2017-06-14 0 2 分享 微博 QZONE 微信 fundge 赞同来自: class List extends ui.UI_ListUI { test: Array<number> = []; constructor() { super(); this.list.vScrollBarSkin = ''; this.list.itemRender = Item_List; this.list.rend...
来源: Laya_社区 发布时间: 20170614
... const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Text }) txt: Laya.Text; constructor() { super(); } onAwake(): void { this.txt.text = "第{n=1}页"; //显示文本的初始化内容 } onStart(): voi...
来源: Laya3.0_文档 发布时间: 20241014
...ex | Frames No Frames IBox Packagelaya.uiInterfacepublic interface IBox extends IComponentImplementors Box容器接口,实现了编辑器容器类型。Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By comXml : Object XML 数据。 ICompone...
来源: laya_api 发布时间: 20170929
...lare module laya.editorUI { /** * Graphics解析器 */ class GraphicParser extends laya.display.GraphicAnimation { protected _getTextureByUrl(url: string): string; static parseAnimationData(aniData: any): any; } } 2020-07-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20200707
Sprite鼠标事件不响应 public class LandLayer extends Sprite 给LandLayer 添加了鼠标事件 然而并没有响应…… 看图…… 2017-11-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 wudi1...
来源: Laya_社区 发布时间: 20171109
...s | Methods Packagelaya.filtersInterfacepublic interface IFilterActionGL extends IFilterActionImplementors ColorFilterActionGL, FilterActionGLPublic Properties PropertyDefined By typeMix : int[read-only] IFilterActionGLPublic Methods Hide Inherited Public Methods Show Inherited Public Methods...
来源: laya_api 发布时间: 20170929
复杂UI类卸载 class GameUI extends View{ container:Laya.Sprite; img1:Laya.Image; anim1:Laya.Animation; ... }, 类似这样的复杂UI类,里面包含了各种类型的组件,当需要卸载GameUI类的时候,gameUI.removeSelf();gameUI.destroy(true);gameUI = null ,用这种方式是否可行...
来源: Laya_社区 发布时间: 20161212
...stage.width; food.y = Math.random() * Laya.stage.height; } } class Segment extends Laya.Sprite { constructor(width, height) { super(); this.size(width, height); this.init(); } init() { this.graphics.drawRect(-this.height / 2, -this.height / 2, this.width + this.height, this.height, "#FF7F50"); } // ...
来源: Laya2.0_示例 发布时间: 20241119
...ya_Yan 赞同来自: 是不是多层继承,是的话在脚本内添加 //extends Laya.Script的注释就可以了 2021-12-24 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 峻郡 相关问题 看了其他引擎才发现 LAYA 真的太...
来源: Laya_社区 发布时间: 20211224