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

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

201. list的selectHandler属性连续点击同一个item不能重复接收事件 [ 79%]

...ame=List         list.selectEnable = true;     list.selectHandler = new Handler(this, onSelect);        function onSelect(index)     {         alert("当前选择的索引:" + index);     }      第一次点击时有事件响应:       再次点击(不要点击其...

来源: Laya_社区 发布时间: 20180507

202. 请问laya有没有类似翻页容器(pageView)的组件? [ 79%]

...uper(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMouse) } onOpened(param: any) { super.onOpene...

来源: Laya_社区 发布时间: 20170215

203. 请问用laya的tab模板创建的tab,为啥没有点击事件啊?而且tab标签点击后没有一直处于按下状态 [ 79%]

...ed2() {     Laya.class(MyBoot, "MyBootClass", MyBootPage2UI);     UI = new MyBootClass();     Laya.stage.addChild(UI); } function MyBoot() {     MyBoot.super(this);          this.Boot.selectHandler = new Laya.Handler(this, onSelect, null, false);//设置 tab 的选择项发生改变时...

来源: Laya_社区 发布时间: 20160722

204. LayaBox js版本不能重复new 新类的问题 [ 79%]

LayaBox js版本不能重复new 新类的问题 new的都是相同的类  第一个是直接new的  第二个是使用类缓存池去实例化  但是报错 报错如图片 附件 : --> 2018-03-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容...

来源: Laya_社区 发布时间: 20180303

205. 列表组件 · LayaAir3.0文档 · LAYABOX [ 79%]

...a.List; constructor() { super(); } onAwake(): void { var list: Laya.List = new Laya.List(); list.itemRender = Item; list.repeatX = 1; list.repeatY = 4; list.x = (Laya.stage.width - Item.WID) / 2; list.y = (Laya.stage.height - Item.HEI * list.repeatY) / 2; // 设置List的垂直滚动 list.scrollType...

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

206. 和创建精灵一样new Rand()出错 [ 79%]

和创建精灵一样new Rand()出错   附件 : --> 2018-01-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: linzhi321991 Rand是3D中的类,你有在index.html中引...

来源: Laya_社区 发布时间: 20180117

207. 水平布局容器组件 · LayaAir3.0文档 · LAYABOX [ 78%]

...码如下: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.HBox }) public hbox: Laya.HBox; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.hbox.pos(100,...

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

208. List组件拖动浏览时item会出现重叠的现象 [ 78%]

...aSourceMediator { constructor() { } public setUp():void { var list: List = new List(); // 渲染的item list.itemRender = ListDataSourceItem; // 设置行列显示的item个数 list.repeatX = 1; list.repeatY = 4; // list居中显示 list.x = (Laya.stage.width - ListDataSourceItem.WID) / 2; list.y = ...

来源: Laya_社区 发布时间: 20180410

209. 2.13版本3D场景遮挡UI的BUG [ 78%]

... 你打开我注释的那行代码, this.Scene3D = Laya.stage.addChildAt(new Laya.Scene3D(), 2) as Laya.Scene3D; 不在一个节点下,也会遮挡 LijiE • 2022-12-01 09:29 3D场景只能放最底下的话,就不能用2D图片做背景了 LijiE • 2022-12-01 09:31 你切换一下2.12 看一...

来源: Laya_社区 发布时间: 20221130

210. laya底层的加载为什么可以new两次 [ 78%]

laya底层的加载为什么可以new两次 laya.net.Loader.as  第222行 new HTMLImage.create(url, {onload: onload, onerror: onerror, onCreate: function(img:*):void { image = img; //增加引用,防止垃圾回收 imgCache[url] = img; }}); 这里的调用create本身就是返回一个对象了...

来源: Laya_社区 发布时间: 20180702