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

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

41. 飞机大战出现的问题注册了类New的时候报错未定义 [ 53%]

...类 Laya.regClass(BackGround,"BackGround",_super); var _proto = BackGround.prototype; _proto.onLoop = function(){ //背景容器每帧向下移动一像素 this.y +=1; //如果背景图到了下面不可见的位置,立即调整位置到最上边 if(this.bg1.y+this.y>=852){ this.bg1.y-=852*2; }...

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

42. IOS Native工程,apploader.js报错 [ 52%]

...空,输出日志发现是setSkinMesh这个函数报错。 ConchGraphics.prototype.setSkinMesh = function (ib, vb, eleNum, iStart, texture, mat) { var img = texture.source; var _ = conch.bf; if (ib.conch_id === undefined || !ib._upload) { ib.conch_id = CanvasRenderingContext2D.ID++; ib.conchRef = n...

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

43. putimagedata 不起作用 [ 51%]

...mageData) { console.log(imageData) var data = imageData.data, copy = Array.prototype.slice.apply(data, [0]), w = imageData.width, h = imageData.height, i = 0, l = data.length, x, y, d for (i; i < l; i += 4) { if (data[i]!== 0) { console.log(data[i]) } x = i / 4 % w y = Math.ceil(i / 4 / w) - 1 d ...

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

44. HttpRequest详解(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 50%]

...nsion, 'HttpRequestExtension', _super); var __proto = HttpRequestExtension.prototype; __proto.send = function (url, data, method, responseType, headers) { (method === void 0) && (method = "get"); (responseType === void 0) && (responseType = "text"); _super.prototype.send.call(this, url, data, method...

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

45. laya接入fairyGUI的时候资源加载方式? [ 49%]

...therLoadData); } for (var i = 0; i < loadData.length; i++) { if (Object.prototype.toString.call(loadData[i]) === "[object Object]") { loadData[i].priority = this.priority; } } Laya.loader.load(loadData, Laya.Handler.create(this, this.onComplete, [resKey, otherLoadData, complete, progress, loadDat...

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

46. 用npm的protobuf导出的ts代码。然后用import { } from "" 运行到这里没反应,不继续执行,也不报错。 [ 47%]

...otoArea.decode(buffer); console.log("test"); console.log(`buffer = ${Array.prototype.toString.call(buffer)}`); }  然后用import {testProto} from "MyModule" 导入import {testProto} from "MyModule"; // 程序入口 class GameMain{ constructor() { Laya.init(600,400, 0x000000); console.log("start");...

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

47. SVG渐变精灵的扩展脚本继承了多个精灵, 在safari环境下重叠了渲染 [ 43%]

...ext, "effect.GradientText", _super);         let _proto = GradientText.prototype;         _proto.init = function () {             switch (this.style) {                 case style.VERTICAL:                     gradientStyle = VERTICAL_GRADIENT + '>';           ...

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

48. 在父sprite中添加子sprite ,移动父Sprite 子sprite为什么不动? [ 41%]

....class(IsLand,"IsLand",laya.display.Sprite); // 原型 var _proto = IsLand.prototype; // 初始化 _proto.init = function(){ // 球体 this.ball = new Sprite(); // 城堡 this.tower = new Sprite(); // 飞艇 this.aeroboat = new Sprite(); // 山 this.mountain = new Sprite(); // 雕像 this.statue = n...

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

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

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

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

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

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

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