大约有 233 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0040 秒)
... var mapDiv; // 包含百度地图的div容器 ``` ### 二、接着是构造函数: ```java Laya.init(1, 1); // 使用高精度位置 Laya.Geolocation.enableHighAccuracy = true; Laya.Geolocation.watchPosition(Laya.Handler.create(this, updatePosition), Laya.Handler.create(this, onError)); // ...
来源: Laya2.0_文档 发布时间: 20210715
...tils.ClassUtils.createByJson(uiData, this, this)生成变量,附加脚本构造函数能触发,但owner不会被调用。看laya.core.js里代码,owner是undefined。 具体效果可以看附件 附件 : --> UIDemo.zip AniTest.zip 2018-06-07 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20180607
...var mapDiv:*; // 包含百度地图的div容器 ``` ### 二、接着是构造函数: ```java public function WatchPosition() { Laya.init(1, 1); init(); // 使用高精度位置 Geolocation.enableHighAccuracy = true; Geolocation.watchPosition(Handler.create(this, updatePosition), H...
来源: Laya2.0_文档 发布时间: 20210715
...n) { var textureArr:Array = (atlasJson.meta.image as String).split(","); //构造加载图片信息 if (atlasJson.meta && atlasJson.meta.image) { //带图片信息的类型 var toloadPics:Array = atlasJson.meta.image.split(","); var split:String = url.indexOf("/") >= 0 ? "/" : "\\"; var i...
来源: Laya_社区 发布时间: 20180830
...2D与3D线上示例。 我们只需要在实例化Main类的时候,传入构造方法的参数,就可以切换为2D示例效果。 index.ts修改后的代码如下所示: ```typescript import { Main } from "./Main"; new Main(false); ``` 再次编译运行后,效果如下图所示: ![10](im...
来源: Laya2.0_文档 发布时间: 20210715
...scope 使用Gyroscope.instance获取唯一的Gyroscope引用,请勿调用构造函数。 listen()的回调处理器接受两个参数: function onOrientationChange(absolute:Boolean, info:RotationInfo):void absolute: 指示设备是否可以提供绝对方位数据(指向地球坐标系),...
来源: Laya3.0_api 发布时间: 20231115
...rivate mapDiv; // 包含百度地图的div容器 ``` ### 二、接着是构造函数: ```typescript class WatchPosition { constructor() { Laya.init(1, 1); this.init(); // 使用高精度位置 Laya.Geolocation.enableHighAccuracy = true; Laya.Geolocation.watchPosition(Laya.Handler.create(this, ...
来源: Laya2.0_文档 发布时间: 20210714
...求。 你可以尝试一次删掉两个点试试 更好的方法是自己构造样条曲线,然后通过drawLines来画。给你 一个参考代码 export class CatmullRomSpline { private points: number[]; constructor(points: number[]) { if (points.length < 4 || points.length % 2 !== 0) { t...
来源: Laya_社区 发布时间: 20241008
...| 说明 | | -------------- | ---------------------------------------- | | 构造函数传参 | 立即连接 比如 new Socket(“192.168.1.2”,8899);注意这里的host参数没有ws前缀。 | | connect方法 | 传递url和端口号,连接服务器;socket.connect(“192.168.0.1.2”,8989);...
来源: Laya2.0_文档 发布时间: 20210714
...类,每个一行代码。上网查 升级了webpack也没用。 写了构造函数也没用 bundle编译出来的代码是这样的: (() => { var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __name = (target, value) => __d...
来源: Laya_社区 发布时间: 20230608