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

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

641. 在UI类里调用启动类的静态函数失败了 [ 80%]

...l: "res/atlas/comp.atlas", type: Laya.Loader.ATLAS }], Laya.Handler.create(this, this.onLoaded), Laya.Handler.create(this, this.onLoading)); } static aaa(): void { } private onLoaded(): void { var info = new view.GameInfo(); info.zOrder = 99;//置最顶,这句话不写图层看不见 // info.init();...

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

642. 通过html的input类型file上传图片,然后通过FileReader获取图片数据之后设置laya的image.skin图片不显示 [ 80%]

... __proto.uploaderHandler=function (files) {              var self=this; var file=files[0];              var reader=new FileReader();               reader.onload=function () {                         this.headIcon.loadImage(this.result); 或者 this.headIcon.skin=thi...

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

643. 切换位图,点击图片距离容器的区域也会触发点击事件 [ 80%]

...距离容器的区域也会触发点击事件 function TransitionImg() { this.flag = false; //判断条件 this.img1 = "../laya/assets/comp/haoyoubang-liang.png"; //地址 this.img2 = "../laya/assets/comp/haoyuobang-hui.png"; var img = new Laya.Sprite(); //实例 img.width = 300; //宽高 img.height...

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

644. 分享:LayaAir下Loading进度条的制作(ActionScript 3.0) [ 80%]

...Arr:Array=; proArr.push(pro1,pro2); Laya.loader.load(proArr,Handler.create(this,onProLoaded)); } private function onProLoaded():void { // 将进度条显示到舞台 showProgress(); //开始预加载游戏资源 var ape1:Object={url:"apes/monkey0.png",type:Loader.IMAGE}; var ape2:Object={url:"apes/m...

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

645. [0]Timer的偶发性Bug [ 80%]

...回复 cmxStar 赞同来自: 我们项目也遇到过这bug, 改成 delete this._map[handler.key]; 2023-10-26 0 2 分享 微博 QZONE 微信 _Nodep_ 赞同来自: 嗯,合理 2023-10-26 0 0 分享 微博 QZONE 微信 开房车环游世界 赞同来自: Tween 偶尔停止 我记得当年做laya1.0...

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

646. 引擎遮罩报错 [ 80%]

...存 用了cacheAs 不起作用 zhengjiajia • 2017-09-13 20:05 @Monica: this.itemSpr.cacheAs = 'normal'; this.itemSpr.cacheAsBitmap = false; 为何这样设置 在报错的时候 发现这两个属性完全不正确呢 zhengjiajia • 2017-09-13 20:09 @Monica:this.itemSpr = new Laya.Sprite; this.it...

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

647. 多光源渲染(TypeScript-3D基础(TS)-LayaAir3D之灯光) [ 80%]

...c onUpdate(){ var seed = Laya.timer.currTimer * 0.002; for (var i = 0, n = this.lights.length; i 加载场景,并且添加多光源 ```typescript Laya.Scene3D.load("res/threeDimen/scene/MultiLightScene/InventoryScene_Forest.ls", Laya.Handler.create(this, function (scene) { //添加到场景 Laya.s...

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

648. 多光源渲染(JavaScript-3D基础(JS)-LayaAir3D之灯光) [ 80%]

...c onUpdate(){ var seed = Laya.timer.currTimer * 0.002; for (var i = 0, n = this.lights.length; i 加载场景,并且添加多光源 ```typescript Laya.Scene3D.load("res/threeDimen/scene/MultiLightScene/InventoryScene_Forest.ls", Laya.Handler.create(this, function (scene) { //添加到场景 Laya.s...

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

649. unity里导出的骨骼动画无法读取 [ 80%]

...错   __proto._getAvatarOwnersByClip=function(clipIndex){ var frameNodes=this._clips[clipIndex]._nodes; var frameNodesCount=frameNodes.length;   其中frameNodes为空   附件是骨骼动画fbx文件   Unity 5.6.0f3  laya1.7.13 附件 : --> new.rar 2018-01-16 添加评论 免费帖 --> 分享 ...

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

650. 分享:Sprite 转换成3D贴图(Texture2D)的方法,如果有更好的方法,请告诉我。 [ 80%]

...t type="text/javascript"> function convertCanvasToImage(canvas,callback,thisObj) { var image = new Image(); image.onload = function() { console.log("图片已经加载"); callback(image,thisObj) }; console.log("图片加载中...") image.src = canvas.toDataURL("image/png"); return image; } </s...

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