大约有 113 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0035 秒)
Laya2.0_api(36) laya_api(33) Laya_社区(31) Laya2.0_示例(4) Laya_示例(3) Laya2.0_文档(3) Laya3.0_api(2) Laya3.0_文档(1)
...; } private updateItem(cell: Item, index: number): void { cell.setImg(cell.dataSource); } private onSelect(index: number): void { console.log("当前选择的索引:" + index); } } import Box = Laya.Box; import Image = Laya.Image; class Item extends Box { public static WID: number = 373; public st...
来源: Laya_示例 发布时间: 20241123
...8-03-23 0 2 分享 微博 QZONE 微信 hepengwei 赞同来自: 赋值是用dataSource属性 2018-04-12 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 b456410 相关问题 LayaAir3D UnityPlugin 使用须知-版本更新-问题解答(最...
来源: Laya_社区 发布时间: 20180323
List列表的问题 List的通过array和dataSource属性赋值又有何不同,哪个性能更高,为啥我赋值完后半天列表才显示出来,有哪里要注意的吗? 2018-05-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...
来源: Laya_社区 发布时间: 20180518
List组件拖动浏览时item会出现重叠的现象 module list.datasource { import List = laya.ui.List; export class ListDataSourceMediator { constructor() { } public setUp():void { var list: List = new List(); // 渲染的item list.itemRender = ListDataSourceItem; // 设置行列显示的item...
来源: Laya_社区 发布时间: 20180410
....array = data; } function updateItem(cell, index) { cell.label.text = cell.dataSource.lb; cell.input.text = cell.dataSource.value; // cell.setImg(cell.dataSource); } function onSelect(index) { console.log("当前选择的索引:" + index); } })();这段代码直接复制到官网的例子里面执...
来源: Laya_社区 发布时间: 20180312
...); easeFunctionsList.array = data; } renderList(item) { item.setLabel(item.dataSource); } onEaseFunctionChange(list) { const Tween = Laya.Tween, Ease = Laya.Ease; character.pos(100, 50); tween && tween.clear(); tween = Tween.to(character, { x: 350, y: 250 }, duration, Ease[list.selectedItem]); } cre...
来源: Laya2.0_示例 发布时间: 20241123
...nctionsList.array = data; } function renderList(item) { item.setLabel(item.dataSource); } function onEaseFunctionChange(list) { character.pos(100, 50); tween && tween.clear(); tween = Tween.to(character, { x: 350, y: 250 }, duration, Ease[list.selectedItem]); } function createDurationCrontroller() {...
来源: Laya_示例 发布时间: 20241123
...der); function onImgListRender(box: Laya.Box) { let model = box.dataSource; let panel = box.getChildByName('panel') as Laya.Panel; let img = panel.getChildByName('img') as Laya.Image; img.skin = model; let reset = function () { let source ...
来源: Laya_社区 发布时间: 20180514
...ist.array = effList; } function updateItem(cell, index) { console.log(cell.dataSource); cell.setImg(cell.dataSource); } function onSelect(index) { console.log("当前选择的索引:" + index); } 我想实现的效果是 设置每个特效宽高都为80 * 80 然后一排显示3个 界...
来源: Laya_社区 发布时间: 20170627
...lText.pos(0, 0); this.delText.width = 130; this.delText.height = 80; } get dataSource(){ return super.dataSource; } set dataSource(value) { super.dataSource = value; if (!value) return; this.LmsgTime.changeText(value.msgTime.text); this.LmsgTitle.changeText(value.msgTitle.text); this.redHot.visible ...
来源: Laya2.0_示例 发布时间: 20241123