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

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

181. laya2.0 截图功能分享,直接截取屏幕上所有对象 [ 73%]

...戏正常可用 private static _sp: Laya.Sprite = null; private static tempTexture2D: Laya.Texture2D; private static tempTexture: Laya.Texture; /**截图 */ public static drawScreenshot(width, height, x, y) { if (!SwitchHelper.screenDraw) { return null; }  if (!this.tempTexture2D) { this.tempTextur...

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

182. 物理碰撞器(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 72%]

...var planeMat:Laya.BlinnPhongMaterial = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/threeDimen/Physics/grass.png", Laya.Handler.create(this, function(tex:Laya.Texture2D) { planeMat.albedoTexture = tex; })); //设置纹理平铺和偏移 planeMat.tilingOffset = new Laya.Vector4(10, 10, 0, ...

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

183. 物理碰撞器(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 72%]

...//新建材质 var planeMat:BlinnPhongMaterial = new BlinnPhongMaterial(); Texture2D.load("res/threeDimen/Physics/grass.png", Handler.create(null, function(tex:Texture2D):void { planeMat.albedoTexture = tex; })); //设置纹理平铺和偏移 planeMat.tilingOffset = new Vector4(10, 10, 0, 0); //设...

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

184. 设置滤镜(ActionScript-LayaAir基础篇(AS3)-位图) [ 72%]

... laya.display.Stage; import laya.filters.ColorFilter; import laya.resource.Texture; import laya.utils.Browser; import laya.utils.Handler; import laya.webgl.WebGL; public class Main { private const ApePath:String = "res/img/monkey1.png"; private var apeTexture:Texture; public function Main() { // 不...

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

185. [LayaAir3]sprite.drawToTexture( ) 无法绘制容器内容 [ 72%]

[LayaAir3]sprite.drawToTexture( ) 无法绘制容器内容  drawToTexture() 方法不能按预期工作,只能绘制背景,无法绘制出子节点内容,API文档对参数也没有详细注释,各种尝试都无解。DEMO 代码已上传,麻烦帮忙看看,感谢。 附件 : --> bug-d...

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

186. getimagedata直接调用无法获取有效像素问题 [ 72%]

...素数据都是0),看起来像是程序设计问题。 而在调用了 texture的 getpixels 得到有效数据。__proto.getPixels=function(x,y,width,height){ if (Render.isWebGL){ return RunDriver.getTexturePixels(this,x,y,width,height); }else { Browser.canvas.size(width,height); Browser.canvas....

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

187. 通过canvas的缩放来实现清晰度是什么意思呢? [ 72%]

...tandardMaterial();                     material.diffuseTexture = Texture2D.load("res/test4.png");   sphere.meshRender.material = material;   test4.png是一张1024*512的图,我想提高贴图的清晰度 有人说可以通canvas缩放来实现 具体怎么做? 不用Textu...

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

188. 2.3微信截图分享问题 [ 72%]

2.3微信截图分享问题 let textur: Laya.Texture = this.cut.drawToTexture(500, 500, 0, 0);   this.show.texture = textur此代码可以获得一个组件的纹理。并且可以正常展现到另一个组件上去。   现在有个问题。如果用微信分享怎么搞?微信那边需要...

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

189. 微信里面我加载一个服务器上的图片,如果退出微信 重新再打开load这个服务器地址图片 是从本地缓存中加载还是从新从服务器下载 [ 72%]

...译。 2.2.0beta4 发布微信小游戏,安卓设备加载场景黑屏 Texture图片能否进行翻转? 怎样获取浏览器地址传过来的GET参数 Layabox如何实现本地存储 请教下微信小游戏的内存和数据缓存? 播放背景音乐的问题 刚打开 桌面调试出现报...

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

190. texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 [ 72%]

texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 export class Texture2dTest { private sprite3D:Laya.Sprite3D; private readonly AllPng:string[] = ["pic-001.png","output-06.png"]; private texture:Laya.Texture2D; private box; constructor(){ Laya3D.init(0, 0); Laya.s...

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