大约有 553 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)
Laya_社区(253) Laya3.0_api(90) Laya2.0_api(84) laya_api(67) Laya2.0_文档(30) Laya2.0_示例(11) Laya_示例(10) Laya3.0_文档(8)
...新的 Sprite 对象用于加载并显示此图片。 Sprite fromParentPoint(point:Point):Point 将父容器坐标系坐标转换到本地坐标系。 Sprite fromStagePoint(point:Point):Point 将Stage坐标系坐标转换到本地坐标系。 Sprite getBounds():Rectangle 获取本对象在...
来源: Laya2.0_api 发布时间: 20190513
...undSphere cloneTo(destObject:*):void 克隆。 BoundSphere createfromPoints(points:Vector.<Vector3>, out:BoundSphere):void[static] 从顶点队列生成包围球。 BoundSphere createFromSubPoints(points:Vector.<Vector3>, start:int, count:int, out:BoundSphere):void[static] 从...
来源: Laya2.0_api 发布时间: 20190513
...void { //创建盒型MeshSprite3D let point = [{ x: 0, z: 0 }, { x: -2, z: 2 }]; var box = this.newScene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(0.75, 0.5, 0.5))) as Laya.MeshSprite3D; //...
来源: Laya_社区 发布时间: 20201120
...ics = this._mask.graphics; g.clear(); if (w == 0 || h == 0) return; var points: any[] = []; points.push(0, h); points.push(0, 0); points.push(this._index, 0); points.push(this._index, h); // points.push(0, h); g.drawPoly(0, 0, points, "#FFFFFF"); this._fguiPro.value = Math.floor(this._index / w *...
来源: Laya_社区 发布时间: 20221117
...题的。具体表现在MouseManger.initEvent中的两行代码: this._point.setTo(e.pageX || e.clientX,e.pageY || e.clientY); this._stage._canvasTransform.invertTransformPoint(this._point); 问题1: 如果包含canvas的div并不是充满整个document.body,且div本身可以滚动(canvas...
来源: Laya_社区 发布时间: 20170701
...g 在laya.webgl.js里搜索函数用于划线的函数:createLine2 由于points没做判断 导致使用时: p1x=points[0]; p1y=points[1]; p2x=points[2]; p2y=points[3];出错,界面表现为卡帧严重,console显示: Uncaught...
来源: Laya_社区 发布时间: 20170411
... 与内容相关的链接 提交 5 个回复 Victor 赞同来自: transformPoint(globalPoint:Laya.Point,localSp:Laya.Sprite):Laya.Point{ return localSp.globalToLocal(globalPoint,true); }globalPoint: 绿色框的坐标 -- 舞台中央坐标(Laya.stage.width*.5,Laya.stage.height*.5) localSp:黑框...
来源: Laya_社区 发布时间: 20180502
...true; var num:int = 0; var offsetArr:Array = [0, 0]; var point:Point = new Point(this.x, this.y); Laya.stage.timerLoop(speed, this, shakeObject); function shakeObject(args:Array=null, frameNum:uint=1, frameTime:uint=0):void{ var count:int = (num++) % 4; ...
来源: Laya_社区 发布时间: 20170823
...之成单位长度。 Returns void Static createPlaneBy3P createPlaneBy3P(point0: Vector3, point1: Vector3, point2: Vector3, out: Plane): void Defined in laya/d3/math/Plane.ts:56 通过三个点创建一个平面。 Parameters point0: Vector3 第零个点 point1: Vector3 第一个点 point2: Vector3...
来源: Laya3.0_api 发布时间: 20231115
...constructor(){ super(); this.rotation = new Laya.Vector3(0, 0.01, 0); this.point = new Laya.Vector2(); this.ray = new Laya.Ray(new Laya.Vector3(),new Laya.Vector3()); //1.开启第四个参数 let config3D = new Laya.Config3D(); config3D.isAlpha = true; Laya3D.init(0, 0, config3D); Laya.stage.scaleM...
来源: Laya_社区 发布时间: 20200903