大约有 28 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0035 秒)
...owser.onMiniGame) { var ctxProto:Object = __JS__("CanvasRenderingContext2D.prototype"); ctxProto.measureText1 = ctxProto.measureText; ctxProto.measureText = function(str:String):Object { return this.measureText1(str) || {width:12*(str+"").length}; }; } 2019-02-13 0 0 分享 微博 QZONE 微信 为...
来源: Laya_社区 发布时间: 20190213
...空,输出日志发现是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
...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
...下: ```javascript var Demo1=(function(){ function Client() { } Client.prototype.start = function() { // body... console.log("调用方法"); }; return Client; })(); console.log("我被加载进来了"); ``` 下面我们简单的讲解下这两段代码。 ` var script:Object = Browser.document.cr...
来源: Laya2.0_文档 发布时间: 20210715
...单代码如下: var Demo1 = (function () { function Client() { } Client.prototype.start = function () { // body... console.log("调用方法"); }; return Client; })(); console.log("我被加载进来了"); 下面我们简单的讲解下这两段代码。 var script:any = Laya.Browser.document.cre...
来源: Laya3.0_文档 发布时间: 20241014