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

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

181. 3D两个平面拼接的贴图直接会有明显的接缝 [ 56%]

...面是单个平面的创建代码   var plane: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(1 , 1, 1, 1))) as Laya.MeshSprite3D; plane.transform.position = new Laya.Vector3(0,0,0); var material: Laya.StandardMaterial = new Laya.StandardMaterial(); material.diffuseTexture = Laya.Texture2...

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

182. JS的WebGL模式下使用Laya.Video报跨域错误 [ 56%]

...s, function() { console.info(video.width + ',' + video.height); Laya.stage.addChild(video); video.play(); }); video.load(video_url); Laya版本是1.7.4Beta Chrome 58下运行报错   laya.device.js增加跨域属性后解决   附件 : --> 2017-05-08 添加评论 免费帖 --> 分享 微博 QZONE ...

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

183. 关于laya生成的canvas定位问题导致内部事件不正确 [ 56%]

...ar img = new Laya.Sprite(); img.loadImage('images/item_5.png'); Laya.stage.addChild(img); img.on(Laya.Event.MOUSE_DOWN, img, onStartDrag); function onStartDrag(){ console.log(this); clickIndex++; msgDiv.html('图片选中了' + clickIndex + '次'); // img.startDrag(); } // Laya.stage.alignH = Laya.S...

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

184. drawToCanvas转出图片与游戏内显示颜色差距过大 [ 56%]

... init() {         Laya.stage.bgColor='#ffffff';         Laya.stage.addChild(new Laya.Image('comp/img/img1.png'));         Laya.timer.once(1000, this, this.delayShow);     }     delayShow() {         let canvas = Laya.stage.drawToCanvas(Laya.stage.width, Laya.stage.height, 0, 0); ...

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

185. 2D图片在3D场景中定位问题 [ 56%]

...018-01-02 17:37 OK,摸索了一下,可以实现了 2dname = Laya.stage.addChild(new Laya.Image("res/layabox.png")); Laya.timer.frameLoop(1, this, functionname); function functionname() { camera.viewport.project(warehouse1.transform.position, camera.projectionViewMatrix, _outPos); 2dnam...

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

186. laya.d3.core.MeshSprite3D_API3.0 [ 56%]

...ildren parent scene timer transform url Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer clone contains destroy destroyChildren event frameLoop frameOnce getChildAt getChildByName getChildIndex getComponent getCompo...

来源: Laya3.0_api 发布时间: 20231115

187. laya.d3.core.particleshuriken.ShuriKenParticle3D_API3.0 [ 56%]

...articleSystem scene timer transform url Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer clone contains destroy destroyChildren event frameLoop frameOnce getChildAt getChildByName getChildIndex getComponent getCompo...

来源: Laya3.0_api 发布时间: 20231115

188. Uncaught TypeError: Cannot read property 'props' of undefined [ 56%]

...Laya3D01/Laya3D01.ls",Laya.Handler.create(null,function(scene){ Laya.stage.addChild(scene); //创建摄像机(横纵比,近距裁剪,远距裁剪) var camera= new Laya.Camera( 0, 0.1, 1000); //加载到场景 scene.addChild(camera); //移动摄像机位置 camera.transform.position=new Laya.Vect...

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

189. Spine使用filters 无效 [ 56%]

...res/spine/pantheon-s.sk"); spine.pos(200,400); spine.scale(0.5,0.5); stage.addChild(spine); //由 20 个项目(排列成 4 x 5 矩阵)组成的数组,红色     var redMat =         [             1, 0, 0, 0, 0, //R             0, 0, 0, 0, 0, //G             0, 0, 0, 0, ...

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

190. 想询问下下载导致产生的临时数据垃圾解决方案 [ 56%]

...niAdpter.AutoCacheDownFile=true var ape: Sprite = new Sprite(); Laya.stage.addChild(ape); ape.loadImage(a); 代码是这样的,这时候缓存(wxanewfiles)里是有这个图片文件的,但是临时文件夹下(wxafiles)也有,并且临时文件夹每次打开不能够重复利用导致多次...

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