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

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

111. 为什么自定义shader大图正常,小图就被缩小了 [ 61%]

...2D.create(); this.iBuffer = Laya.IndexBuffer2D.create(); this.ibData = new Uint16Array(); if(vb) { vbArray = vb; } else{ vbArray = []; var texWidth = texture.width; var texHeight = texture.height; // console.log("liuyi",texWidth); //定义颜色值,取值范围0~1浮点 var red = 1; var ...

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

112. laya.utils.FontInfo [ 60%]

...y : String = ArialFontInfo  _font : String = 14px ArialFontInfo  _id : uintFontInfo  _italic : Boolean = falseFontInfo  _size : int = 14FontInfoPublic Methods  MethodDefined By  FontInfo(font:String)FontInfo  Parse(font:String):FontInfo[static] FontInfo  setFont(value:String):voidFont...

来源: Laya2.0_api 发布时间: 20190513

113. 求个arraybuffer转texture2D [ 59%]

...为空 Texture,和Texture2D如何互转? Texture2D类getPixels()返回的uint8Array按什么格式存储的 问题状态 最新活动: 2018-11-19 14:53 浏览: 829 关注: 2 人

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

114. RenderTexture的像素读取(JavaScript-3D基础(JS)-LayaAir3D之纹理) [ 59%]

...染目标的像素数据,默认renderTarget的颜色为RGBA var out = new Uint8Array(2048*2048*4); renderTargetCamera.renderTarget.getData(0, 0, 2048, 2048, out); //设置纹理的填充像素像素 tex.setPixels(out); ``` 在开始渲染后,我们调整视角就可以看到拍照的效果了。 !...

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

115. AS和JS互相通信:ExternalInterface [ 59%]

...54 浏览: 1018 关注: 2 人 ryusing • 2017-11-22 21:39 如果参数是 uint8array, 怎么传过去??

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

116. laya.resource.Texture_API3.0 [ 58%]

... getPixels getPixels(x: number, y: number, width: number, height: number): Uint8Array Defined in laya/resource/Texture.ts:395 获取Texture上的某个区域的像素点 Parameters x: number y: number width: number height: number Returns Uint8Array 返回像素点集合 getTexturePixels getTexturePi...

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

117. Proto中关于bytes类型的问题 [ 58%]

...bytes类型,如: message XYMessage { required bytes msg = 1; required uint32 channel = 2; };   想问下msg怎么赋值啊? var msgByteBuffer = new window['dcodeIO'].ByteBuffer().writeIString('aabbcc').flip(); var MsgClass:any = Root.lookup("XYMessage"); var msgInst:any = MsgClass.create({  ...

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

118. texture2d的getPixels()返回结构 [ 58%]

texture2d的getPixels()返回结构 texture2d的getPixels()返回结构Uint8Array|Float32Array 如何转换为Float32Array格式  2020-01-07 添加评论 已悬赏10元 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠...

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

119. RenderTexture的像素读取(TypeScript-3D基础(TS)-LayaAir3D之纹理) [ 58%]

...染目标的像素数据,默认renderTarget的颜色为RGBA var out = new Uint8Array(2048*2048*4); renderTargetCamera.renderTarget.getData(0, 0, 2048, 2048, out); //设置纹理的填充像素像素 tex.setPixels(out); ``` 在开始渲染后,我们调整视角就可以看到拍照的效果了。 !...

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

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

...Loader.getRes(this.AllPng[this.curStatus ? 0: 1]);//pic-001 const x2 = new Uint8Array(data); let p = new window['PNG'](x2); let getData = p.decode();//rgba数组序列 this.texture.setPixels(getData); } private onKey(e){ if(e.keyCode == 49){ this.refreshCamera(); // this.updateUITexture(data); }else...

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