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

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

791. iPhone6 webgl渲染下sprite.loadimage加载不出canvas.toDateUrl [ 71%]

iPhone6 webgl渲染下sprite.loadimage加载不出canvas.toDateUrl $("#ewm").qrcode({render:"canvas",width:parseInt(1136*0.3),height:parseInt(1136*0.3),correctLevel:0,text:textDz});//生成二维码图案 var t = new Texture(); t.load($("#ewm canvas")[0].toDataURL()); ewmSprit.graphics.drawTexture(...

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

792. 物理刚体(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 71%]

...script //新建一个球体模型并添加到舞台上 var sphere:Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(PrimitiveMesh.createSphere(1))) as Laya.MeshSprite3D; //新建一个球形的碰撞盒 var sphereShape:Laya.SphereColliderShape = new Laya.SphereColliderShape(1); //给球添加...

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

793. 想用camera做一个类似照相机的功能 [ 71%]

...as any))), Texture.DEF_UV);             this.imgSp = new Sprite();             this.imgSp.graphics.clear();             this.imgSp.cacheAs = "bitmap";             Laya.stage.addChild(this.imgSp);             this.imgSp.graphics.drawT...

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

794. 微信小游戏中iPhoneX的适配问题 [ 71%]

...景往上挪动一下? 测试下 kezhiyu • 2018-06-04 14:33 能否用sprite做下测试。像这样 var ape = new Sprite(); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); // 方法2:使用drawTexture Laya.loader.load("../../res/apes/monkey2.png", Han...

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

795. 在一个sprite3D上添加子物体camera ,也能够看到其他的物体。。。请问如何在摄像机中只看到一个想看到的sprite3D对象呢? [ 71%]

在一个sprite3D上添加子物体camera ,也能够看到其他的物体。。。请问如何在摄像机中只看到一个想看到的sprite3D对象呢? 2017-08-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回...

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

796. 问个关于die的问题 [ 71%]

...交 1 个回复 cuixueying 赞同来自: 用TimeLine的方式即可 var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); Laya.stage.addChild(sp); var timeLine:TimeLine=new TimeLine(); timeLine.to(sp,{x:50,y:50},1000).to(sp,{x:30,y:30},1000); timeLine.play(); 2017-06-15 0 2 分享...

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

797. timer.loop帧率高于物理帧率移动父级导致子物体本地坐标异常 [ 71%]

...(!this.cubeP){             this.cubeP = this.scene.addChild(new Laya.Sprite3D());             this.cube = this.cubeP.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1, 1, 1)));             let rigidbody = this.cube.addComponent(Laya.Rigidbody3D);             rigid...

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

798. 游戏加载进度失效 [ 71%]

...rogress*100)+"%"; } onLoaded() { this.cacheAnimation(); var waterBg = Laya.Sprite.fromImage("res/bg.png"); Laya.stage.addChild(waterBg); //创建背景 this.bg = []; this.bg[0] = new BackGround("res/bg1.png", 0.1); this.bg[0].pos(0, 0); Laya.stage.addChild(this.bg[0]); this.bg[1] = new BackGround("r...

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

799. laya生成的layaContainer div想用appendChild方法添加到某div下,但是针对sprite距离位置并没有变化 [ 70%]

...layaContainer div想用appendChild方法添加到某div下,但是针对sprite距离位置并没有变化   showModal() {          Laya.init(800, 500, WebGL);         Laya.stage.bgColor = "#ffffff";     console.log(Laya.Render._mainCanvas);     Laya.Render._mainCanvas....

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

800. 如何添加对象到DialogManager层以上 [ 70%]

如何添加对象到DialogManager层以上 例如我 Laya.stage.addChild(Sprite) 一个显示对象。但是dialogmanager自己有层级交换,一会儿刚addChild的Sprite就到dialogManager下一层了 有什么办法解决吗 2019-01-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...

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