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

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

671. LayaAir IDE 语言包的使用? [ 64%]

...Stage; import laya.display.Text; import laya.net.Loader; import laya.utils.Handler; import laya.webgl.WebGL; public class Main { public function Main() { Laya.init(640, 960, WebGL); Laya.stage.scaleMode = Stage.SCALE_FULL; Laya.stage.bgColor = "#eeffcc"; Laya.loader.load("lang.lang",Handler.create(t...

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

672. 请问laya的List除了用selectBox,还有什么方式可以自定义列表项选中状态下的表现吗 [ 64%]

...生List之后,重写changeCellState方法来,并且同时配合renderHandler来实现?   2017-03-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 可以参考下:把img换成你...

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

673. LayaNative 2.8.0 加载的TTF字体不生效,附复现工程。 [ 64%]

...答。           Laya.loader.load("fonts/OPPOSANS-H.ttf", Laya.Handler.create(this, (success) => {             console.log("2.8.0 字体加载是否成功:", success);             Laya.Text.defaultFont = "OPPOSANS-H";         }), null, Laya.Loade...

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

674. 计时器-延迟调用 [ 64%]

... = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.st...

来源: Laya2.0_示例 发布时间: 20241119

675. 在开启webgl模式下,每次运行texture类的getPixels方法内存都会增加 [ 64%]

...le Main { import Sprite = Laya.Sprite import Texture = Laya.Texture import Handler = Laya.Handler export class MaskDemo { private Res: string; private img: Laya.Image; constructor() { //Laya.init(400, 640, Laya.WebGL); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" Laya.Stat.show() //资源...

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

676. BlinnPhong材质详解(TypeScript-3D基础(TS)-模型材质详解) [ 64%]

...反射贴图 Laya.Texture2D.load("res/threeDimen/texture/earth.png", Laya.Handler.create(this, function(texture) { //设置材质纹理 material.albedoTexture = texture; })); earth2.meshRenderer.material = material; ``` ![](img/4.png)(图4) ##### 法线贴图 **Normal maps(法线贴图)**是一个...

来源: Laya2.0_文档 发布时间: 20210714

677. LIST renderHandler的ITEM高度自定义后,设置content变更其内部容器大小不生效 [ 64%]

LIST renderHandler的ITEM高度自定义后,设置content变更其内部容器大小不生效 ViewActivityLimitedTask.prototype.initComp = function() { this.list_view.vScrollBarSkin = ""; this.list_view.scrollBar.elasticBackTime = ListConst.elasticBackTime; this.list_view.scrollBar.elasticDistanc...

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

678. sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale [ 64%]

...ion;Laya.Tween.to(box.potOld,{     x:1     ,y:2     ,update:new Laya.Handler(box,function(){         this.transform.position = this.potOld;     }) }, ConstValue.animationTime,Laya.Ease.elasticOut,Laya.Handler.create(this, function(){     console.log("complete"); }),ConstValue.animation...

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

679. list图片路径没问题.为什么图片就是不显示.啊啊啊也,求解答 [ 64%]

...].amount}); } } this.otherItem_list.array = data; this.otherItem_list.mouseHandler = new Handler(this,otherItem_listRender); fengjingmeng • 2018-03-21 16:44 你这个是list的逻辑,item的更新逻辑呢。item拿到数据后你做了什么处理? z624697 • 2018-03-21 16:46 现在是我将...

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

680. 关于多个小动画打包到一个图集动画的问题 [ 64%]

...10:59 //加载图集 Laya.loader.load("res/atlas/hero.json",Laya.Handler.create(this,onLoaded),null,Laya.Loader.ATLAS) //先把四张小图拿出来 var hero_down1=Laya.loader.getRes("hero/hero_down1.jpg"); var hero_down2=Laya.loader.getRes("hero/hero_down2.jpg"); var h...

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