大约有 159 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0034 秒)
...Utils 是工具类。 Public Properties PropertyDefined By parseXMLFromString : Function[static] 将字符串解析成 XML 对象。 UtilsPublic Methods MethodDefined By bind(fun:Function, scope:*):Function[static] 给传入的函数绑定作用域,返回绑定后的函数。 Utils fit...
来源: Laya2.0_api 发布时间: 20190513
...Utils 是工具类。 Public Properties PropertyDefined By parseXMLFromString : Function[static] 将字符串解析成 XML 对象。 UtilsPublic Methods MethodDefined By bind(fun:Function, scope:*):Function[static] 给传入的函数绑定作用域,返回绑定后的函数。 Utils fit...
来源: laya_api 发布时间: 20170929
... Utils Class Utils Utils 是工具类。 Hierarchy Utils Index Methods fromStringColor getBaseName getFileExtension getGID parseInt replaceFileExtension toAngle toHexColor toRadian Methods Static fromStringColor fromStringColor(value: string): number Defined in laya/utils/Utils.ts:40 Parameters valu...
来源: Laya3.0_api 发布时间: 20231115
...试面板。 开启debug模式后 1.编译代码将增加int,uint,Number,String的类型判断,都将被翻译成if(!__DEBUGTYPE__(判断对象,判断类型))debugger,如果检测对象非指定类型,即会中断程序运行,并在检测到问题的代码处自动断点。 2.编译代码将...
来源: Laya_社区 发布时间: 20151203
...获取。设置为true,对性能有一定影响。 Sprite blendMode : String指定要使用的混合模式。目前只支持"lighter"。Sprite bottom : Number 从组件底边到其内容区域底边之间的垂直距离(以像素为单位)。 UIComponent cacheAs : String 指定显示对象...
来源: Laya2.0_api 发布时间: 20190513
...matrix:Array):ColorFilter 设置矩阵数据 ColorFilter setColor(color:String):ColorFilter 设置滤镜色 ColorFilterConstructor DetailColorFilter()Constructorpublic function ColorFilter(mat:Array = null) 创建一个 ColorFilter 实例。 Parameters mat:Array (default = null) — (可选)...
来源: Laya2.0_api 发布时间: 20190513
...锁,如果true为不能使用自动释放机制。 Optional name name: string Inherited from Resource.name Defined in laya/resource/Resource.ts:105 名称。 url url: string Inherited from Resource.url Defined in laya/resource/Resource.ts:107 获取资源的URL地址。 uuid uuid: string Inherited...
来源: Laya3.0_api 发布时间: 20231115
...序入口 class Main{ //需要切换的图片资源路径 private monkey1:string = "res/img/monkey1.png"; private monkey2:string = "res/img/monkey2.png"; //切换状态 private flag:boolean = false; private img:Laya.Sprite; constructor() { //初始化引擎 Laya.init(1334,750); ...
来源: Laya_社区 发布时间: 20180226
...串 */ public static urlEncode(param:any, key?:any, encode:boolean = true):string{ if (param == null) return ''; var paramStr = ''; var t = typeof (param); if (t == 'string' || t == 'number' || t == 'boolean') { paramStr += '&' + key + '=' + ((encode == null || encode) ? encodeURIComponent(param...
来源: Laya_社区 发布时间: 20170628
...部分支持,我们汇总了下,供大家参考:变量名 nodeName:string nodeValue:string textContent:string value:* childNodes:Array attributes:Array nodeType:Number firstChild 方法: getElementsByTagName(name:string):Array getAttribute(name:string):string针对以上的情况,我们不...
来源: Laya_社区 发布时间: 20170329