大约有 423 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0041 秒)
... const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({type:Laya.VSlider}) public vslider: Laya.VSlider; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.vslider.pos(300,300...
来源: Laya3.0_文档 发布时间: 20241014
... 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
... = $.timer(0, 500); } //一个 View @createView(TEST_PAGE) class HelloView extends VmViewBase<HelloViewModel> { //绑定 viewModel 的 hello$ 的值到 lbHello.text @vmBindLabel('hello$') lbHello: Laya.Label; }现实中的应用:绑定 List 和 Tab 现实中的应用:登录页面 附件...
来源: Laya_社区 发布时间: 20180128
... 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
...类似如下代码: module ui.coreUI { export class TestUI extends View{ // do something... } } 我在其它包的类中通过 import TestUI = ui.coreUI.TestUI ; 方式引入类 定义时报错: "Uncaught ReferenceError: ui is not defined" ...
来源: Laya_社区 发布时间: 20170424
...直接在后面添加,无效,得到的提示:[ts] Classes can only extend a single class; 3,关于锚点找到锚点设置无效的问题了,我在构造函数设置的,没效果,但是如果在延迟两帧以后设置就可以了,用不了button,只能用this和super;
来源: Laya_社区 发布时间: 20180905
... 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