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

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

1. oppo CanvasRenderingContext2D 并没有实现 drawImage;报错; [ 100%]

...ht; this._width=width; this._height=height; this._setWarpMode(/*laya.webgl.WebGLContext.TEXTURE_WRAP_S*/0x2802,this._wrapModeU); this._setWarpMode(/*laya.webgl.WebGLContext.TEXTURE_WRAP_T*/0x2803,this._wrapModeV); this._setFilterMode(this._filterMode); var gl=LayaGL.instance; WebGLContext.bindTextur...

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

2. 关于要自定shader的同学 [ 84%]

...per(0, 0) var _vlen = 8 * Laya.CONST3D2D.BYTES_PE this.position = [2, Laya.WebGLContext.FLOAT, false, _vlen, 0] this.texcoord = [2, Laya.WebGLContext.FLOAT, false, _vlen, 2 * Laya.CONST3D2D.BYTES_PE] this.color = [4, Laya.WebGLContext.FLOAT, false, _vlen, 4 * Laya.CONST3D2D.BYTES_PE] } }// 关于修...

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

3. 如何获取webgl模式下屏幕上的像素值 [ 79%]

...进去应该是因为 var canRead=(gl.checkFramebufferStatus(/*laya.webgl.WebGLContext.FRAMEBUFFER*/0x8D40)===/*laya.webgl.WebGLContext.FRAMEBUFFER_COMPLETE*/0x8CD5); if (!canRead){ gl.bindFramebuffer(/*laya.webgl.WebGLContext.FRAMEBUFFER*/0x8D40,null); return null; };   canRead为false,这个要...

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

4. viewportPointToRay产生的射线始终有偏差,是为什么? [ 79%]

...tor2; import Vector3 = Laya.Vector3; import Vector4 = Laya.Vector4; import WebGLContext = Laya.WebGLContext; export class SceneScript extends Script { private _originPosition:Vector3 = new Vector3(0, -1, 1); private _phasorSpriter3D:PhasorSpriter3D; private _color:Vector4 = new Vector4(1, 0, 0, 1); ...

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

5. 分享一个Shader版的CoolDown实现 [ 73%]

...         super(vs, ps, "coolDownShader");         }     } import WebGLContext = laya.webgl.WebGLContext;     import Value2D = laya.webgl.shader.d2.value.Value2D;     import CONST3D2D = laya.webgl.utils.CONST3D2D;     export class coolDownShaderValue extends Value2D {         publ...

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

6. 让 CylinderMesh 支持椎体 [ 67%]

...fer=new VertexBuffer3D(vertexDeclaration,this._numberVertices,/*laya.webgl.WebGLContext.STATIC_DRAW*/0x88E4,true); this._indexBuffer=new IndexBuffer3D(/*laya.d3.graphics.IndexBuffer3D.INDEXTYPE_USHORT*/"ushort",this._numberIndices,/*laya.webgl.WebGLContext.STATIC_DRAW*/0x88E4,true); this._vertexBuff...

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

7. 物理引擎,我按照官方例子做的,不知道那里写错了,总是报这个错,大神帮我看下 [ 60%]

... } 会报错: Uncaught TypeError: Cannot read property '_color' of null at WebGLContext2D.__proto.stroke (laya.js:17440) at RenderContext._drawLine (laya.js:4738) at GraphicsGL.__proto._renderAll (laya.js:987) at RenderSprite3D.__proto._graphics (laya.js:5234) at RenderSprite3D.RenderSprite._initRen...

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

8. WebGL 绘制图形报错 [ 60%]

WebGL 绘制图形报错 问题是WebGLContext2D的fillRect报错 代码如下: Laya.init(1136, 640, WebGL ); var mask :Sprite = new Sprite(); mask.graphics.save(); mask.graphics.drawRect( 0, 0, Laya.stage.width, Laya.stage.height, 0xff0000 ); mask.graphics.restore(); mask.x = 0; mask.y = 0; Laya...

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

9. Cannot read property 'toDefault' of undefined报错是什么原因 [ 46%]

...ame === "tlj"){ isRotate = !isRotate; } // this.phasorSpriter3D.begin(Laya.WebGLContext.LINES, state); // //绘出射线 // this.phasorSpriter3D.line(this.ray.origin.x, this.ray.origin.y, this.ray.origin.z, 1.0, 0.0, 0.0, 1.0, 0, -1, 0, 1.0, 0.0, 0.0, 1.0); // this.phasorSpriter3D.end(); } var Stage...

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

10. 请问,如何获得StandardMaterial,为什么transformUV始终是null [ 43%]

...on, false);     if (debugModel) {         phasorSpriter3D.begin(Laya.WebGLContext.LINES, camera);         Tool.linearModel(layaMonkey, phasorSpriter3D, color, vertex1, vertex2, vertex3);         phasorSpriter3D.end();     } }); (function loadUI() {     var curStateIndex = 0;     ...

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