大约有 1,208 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0077 秒)
Laya中的宏编译要怎么用啊 flash模式下用 /*[IF-FLASH]trace("layabox")*/ h5模式下用 //[IF-SCRIPT]alert("layabox") 区域编译宏,只会在h5模式下生效 /*[IF-SCRIPT-BEGIN]trace("hello-h5")[IF-SCRIPT-END]*/ //代码直译方法,直接调用h5的方法 __JS__("alert(100...
来源: Laya_社区 发布时间: 20151106
...rict'; function DEB(str){ console.debug("[res]"+str); } class MiniFileMgr { static isLocalNativeFile(url) { for (var i = 0, sz = MiniAdpter.nativefiles.length; i < sz; i++) { if (url.indexOf(MiniAdpter.nativefiles[i]) != -1) return true; } return false; } static getFileInfo(fileUrl) { v...
来源: Laya_社区 发布时间: 20200103
...,拿就混淆代码,,这里有个文章:https://blog.csdn.net/linguifa ... 87065 2020-07-18 0 0 分享 微博 QZONE 微信 187*****978 赞同来自: *文章的意图为解决工作中遇到的问题,请开发者把技术用到正确的方向** 文章原文 https://blog.csdn.net/koljy111 .....
来源: Laya_社区 发布时间: 20190613
...ctKey; } addAniSprite (sprite) { if (this.aniSpriteArray == null) { this.aniSpriteArray = []; } this.aniSpriteArray.push(sprite); } show () { if (!this.visi...
来源: Laya_社区 发布时间: 20220627
...ading + this._charSize.height; var tCurrBitmapFont = this._currBitmapFont; if (tCurrBitmapFont) { lineHeight = this.leading + tCurrBitmapFont.getMaxHeight(); }; var startY = padding[0]; if (this._height > 0) { var tempVAlign = (this._textHeight > this._height) ? "top" : this.valign; if (tempVA...
来源: Laya_社区 发布时间: 20180417
...加载的问题。 先修改bin/libs/laya.core.js文件 1. 大约16040行 if (type==="image" || type==="htmlimage" || type==="nativeimage")return [b]this._loadImage(url);[/b] 改为: if (type==="image" || type==="htmlimage" || type==="nativeimage")return [b]this._loadImage(this._url);[/b] 再修...
来源: Laya_社区 发布时间: 20190403
URL的代码修改建议 URL.formatURL=function(url,base){ if (!url)return "null path"; //if (url.indexOf(":")> 0)return url; 这里建议是先执行customFormat 再去执行if (url.indexOf(":")> 0)return url; 因为用户可能有特殊的customFormat流程,所以应该是这两句...
来源: Laya_社区 发布时间: 20180713
...ya.Image) { let s = t.source.getPixels(t.mouseX, t.mouseY, 1, 1).join(''); if (s == '0000') return false; return true; } if (hitTest(target)) { // do hitTest action; } 通过检测像素点颜色值来判断点击区域,这里不能用 on(Laya.Event.CLICK,只能通过 on(Laya.Event.MOUSE_DOWN...
来源: Laya_社区 发布时间: 20180731
... = 0; private _package:IPackage; private _message:IMessage; constructor(){ if(!console.group){ console.group = console.log; console.groupEnd = function(){console.log("----")}; console.info = console.log; console.warn = console.log; console.error = console.log; } this._message = new Message(); this._...
来源: Laya_社区 发布时间: 20180119
... var NTS: number; var NTE: number; this.nextTurn; let i = this.turnNumber; if(i==0){ return; } this.getPlayer(); } gotoNext(){ this.turnNumber++; if(this.turnNumber>3) { this.turnNumber=0 } } public getPlayer()//电脑出牌方法 { var NTS: number; var NTE: number; this.turnNumber; if (thi...
来源: Laya_社区 发布时间: 20180626