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

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

981. 3D粒子编辑模块 · LayaAir3.0文档 · LAYABOX [ 32%]

...tring): void { if (this._isInited) { return; } this._filePath = file_path; console.log("Particle3D"); //从拿到的粒子系统克隆一个 var res = Laya.loader.getRes(file_path); var particle = res.clone(); this._particle = particle; //获取这个粒子特效的所有粒子系统,用于后面...

来源: Laya3.0_文档 发布时间: 20240117

982. ts加密md5码封装 [ 31%]

...ude": [ "node_modules" ] } test: let str = Md5.Instance.get_md5("123456"); console.log(str) //len:32 //e10adc3949ba59abbe56e057f20f883emd5.ts class Md5 { private static _inst:Md5; public static get Instance():Md5 { return this._inst ||(this._inst = new Md5()); } public get_md5(str:string):string { r...

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

983. LayaAir和原生DOM交互(JavaScript-2D进阶篇(JS)-扩展模块) [ 31%]

... { function Client() { } Client.prototype.start = function () { // body... console.log("调用方法"); }; return Client; })(); console.log("我被加载进来了"); ``` 下面我们简单的讲解下这两段代码。 `var script = Laya.Browser.document.createElement("script");`创建一个script...

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

984. LayaAir和原生DOM交互(TypeScript-2D进阶篇(TS)-扩展模块) [ 30%]

... { function Client() { } Client.prototype.start = function () { // body... console.log("调用方法"); }; return Client; })(); console.log("我被加载进来了"); ``` 下面我们简单的讲解下这两段代码。 `var script:any = Laya.Browser.document.createElement("script");`创建一个scri...

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

985. conch.config.getUsedMem() 安卓包中 定时运行报错 [ 29%]

...dMem() 安卓包中 定时运行报错 Laya工程1.7.10beta,setInterval("console.log(conch.config.getUsedMem())", 1) 安卓包中报错 2018-03-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 qian 赞同来自...

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

986. 微信小游戏 · LayaAir3.0文档 · LAYABOX [ 28%]

...s.create(); this.scene3d.addChild(sp3); }); }) } printProgress(res: any) { console.log("加载进度" + JSON.stringify(res)); } } 下面重点介绍一下printProgress打印的内容,在微信开发者工具打开并编译我们导出的项目后,会打印如下日志: (图4-2) wx.loadSubp...

来源: Laya3.0_文档 发布时间: 20240528

987. 【简单跑酷--JS版】---Lv.6 终篇 [ 27%]

...type var _proto = RunGame.prototype; //初始化 _proto.init = function(){ console.log('RunGame Init'); //背景 this.bg = new Background(); this.addChild(this.bg); //地板 this.mapFloor = new MapFloor(); this.addChild(this.mapFloor); //飞行能量条 this.flyEnergy = new Hp(Hp.HP_TYPE_ENERGY); th...

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

988. laya.display.Sprite_API3.0 [ 27%]

...//给 shape 对象添加点击事件侦听。 } function onClickSprite() { console.log("点击 sprite 对象。"); sprite.rotation += 5;//旋转 sprite 对象。 } function onClickShape() { console.log("点击 shape 对象。"); shape.rotation += 5;//旋转 shape 对象。 } example import Sprite = ...

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

989. LayaAir和原生DOM交互(ActionScript-2D进阶篇(AS3)-扩展模块) [ 27%]

...(){ function Client() { } Client.prototype.start = function() { // body... console.log("调用方法"); }; return Client; })(); console.log("我被加载进来了"); ``` 下面我们简单的讲解下这两段代码。 ` var script:Object = Browser.document.createElement("script");`创建一个scrip...

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

990. 和原生Dom交互 · LayaAir3.0文档 · LAYABOX [ 26%]

... { function Client() { } Client.prototype.start = function () { // body... console.log("调用方法"); }; return Client; })(); console.log("我被加载进来了"); 下面我们简单的讲解下这两段代码。 var script:any = Laya.Browser.document.createElement("script");创建一个script标...

来源: Laya3.0_文档 发布时间: 20230629