大约有 110 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0055 秒)
... 2017-02-25 12:24 你说的这6张图片是通过loader加载的,还是image图片通过skin方式自己加载的? anran • 2017-02-25 12:26 @Laya_XS:是image图片通过skin方式自己加载的 anran • 2017-02-25 12:28 @Laya_XS:这6张单独的图片在IDE里有一个unpack.json,是不是...
来源: Laya_社区 发布时间: 20170225
...方法获取。设置为true,对性能有一定影响。 Sprite bar : Image[read-only] 获取进度条对象。 ProgressBar bg : Image[read-only] 获取背景条对象。 ProgressBar blendMode : String指定要使用的混合模式。目前只支持"lighter"。Sprite bottom : Number 从组...
来源: Laya2.0_api 发布时间: 20190513
...方法获取。设置为true,对性能有一定影响。 Sprite bar : Image[read-only] 获取进度条对象。 ProgressBar bg : Image[read-only] 获取背景条对象。 ProgressBar blendMode : String指定要使用的混合模式。目前只支持"lighter"。Sprite bottom : Number 从组...
来源: laya_api 发布时间: 20170929
...ocumentationAll Packages | All Classes | Index | Frames No Frames AdvImageProperties | Methods | Events Packagelaya.uiClasspublic class AdvImageInheritanceAdvImage Image UIComponent Sprite Node EventDispatcher Object 广告插件 Public Properties Hide Inherited Public Properties Show Inher...
来源: Laya2.0_api 发布时间: 20190513
...mg\5.gif)(图5) **示例代码:** ```typescript package { import laya.ui.Image; import laya.ui.Panel; import laya.utils.Handler; public class PanelTest { public function PanelTest() { //初始化引擎 Laya.init(800,600); //预加载所需资源 Laya.loader.load("res/atlas/comp.atlas",Handler.crea...
来源: Laya2.0_文档 发布时间: 20210715
...l.png"; //将panel添加到stage上 Laya.stage.addChild(panel); //实例化Image组件 var img: Laya.Image = new Laya.Image(); //给image添加皮肤 img.skin = "comp/image.png"; //将image添加到panel组件中 panel.addChild(img); } } new PanelTest(); ```
来源: Laya2.0_文档 发布时间: 20210715
...ex: number): void { let img_rule = cell.getChildByName("img_rule") as Laya.Image; img_rule.skin = cell.dataSource let text_info = cell.getChildByName("text_des") as Laya.Text; let i18n = Laya.loader.getRes("config/i18n.json"); text_info.text = i18n[`tips_text$text_i18n$${1101 + index}`][ConfigInfo.l...
来源: Laya_社区 发布时间: 20181112
...l.png"; //将panel添加到stage上 Laya.stage.addChild(panel); //实例化Image组件 var img = new Laya.Image(); //给image添加皮肤 img.skin = "comp/image.png"; //将image添加到panel组件中 panel.addChild(img); } ```
来源: Laya2.0_文档 发布时间: 20210715
...复 cuixueying 赞同来自: 先对3张图片进行预加载,然后使用image组件对其中一张图片进行load显示,切换显示即修改image的skin属性。 2017-01-09 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Todo 相...
来源: Laya_社区 发布时间: 20170109
...ex: number): void { let img_rule = cell.getChildByName("img_rule") as Laya.Image; img_rule.skin = cell.dataSource let text_info = cell.getChildByName("text_des") as Laya.Text; let i18n = Laya.loader.getRes("config/i18n.json"); text_info.text = i18n[`tips_text$text_i18n$${1101 + index}`][ConfigInfo.l...
来源: Laya_社区 发布时间: 20180724