大约有 52 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0047 秒)
...类 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
...空,输出日志发现是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
...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
...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
...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
...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
...ext, "effect.GradientText", _super); let _proto = GradientText.prototype; _proto.init = function () { switch (this.style) { case style.VERTICAL: gradientStyle = VERTICAL_GRADIENT + '>'; ...
来源: Laya_社区 发布时间: 20180824
....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
...: ```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
...: ```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