大约有 2,728 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0067 秒)
Laya_社区(1131) Laya3.0_api(543) Laya2.0_api(297) laya_api(221) Laya2.0_文档(201) Laya_示例(139) Laya2.0_示例(109) Laya3.0_文档(87)
...* @author lin */ public class ZeroWXAdpter { static public function init():void { MiniAdpter.window.wx.onShow(onShow); MiniAdpter.window.wx.onHide(onHide); } static private function onShow(res):void { console.warn("小游戏回到前台", res); } static private function onHide():void { console.warn(...
来源: Laya_社区 发布时间: 20180726
...iledMap的destroy方法内 /** * 销毁地图 */ public function destroy():void { ....... //这里是销毁地图层的代码 var tLayer:MapLayer; for (i = 0; i < _layerArray.length; i++) { tLayer = _layerArray[i]; tLayer.clearAll(); } ........ }然后在MapLayer的clearAll()里面会去销毁子...
来源: Laya_社区 发布时间: 20180503
...et clip(): AnimationClip2D | null set clip(value: AnimationClip2D | null): void Defined in laya/components/AnimatorState2D.ts:82 动作。 Returns AnimationClip2D | null Defined in laya/components/AnimatorState2D.ts:86 动作。 Parameters value: AnimationClip2D | null Returns void Methods addScript...
来源: Laya3.0_api 发布时间: 20231115
... string resolveURL resolveURL(url: string, onResolve?: (url: string) => void): Promise<string> Defined in laya/resource/AssetDb.ts:59 获取真实的Url Parameters url: string Optional onResolve: (url: string) => void (url: string): void Parameters url: string Returns void Returns Promis...
来源: Laya3.0_api 发布时间: 20231115
...时才会返回信息。 Methods Static clearWatch clearWatch(id: number): void Defined in laya/device/geolocation/Geolocation.ts:96 移除watchPosition安装的指定处理器。 Parameters id: number Returns void Static getCurrentPosition getCurrentPosition(onSuccess: Handler, onError?: Handler): ...
来源: Laya3.0_api 发布时间: 20231115
...); // 成功获取位置后触发 function onSuccess(info:GeolocationInfo):void { trace('经纬度: (' + info.longitude + '°, ' + info.latitude + '°),精确度:' + info.accuracy + 'm'); if(info.altitude != null) trace('海拔:' + info.altitude + 'm' + (info.altitudeAccuracy != null ? (',...
来源: Laya2.0_文档 发布时间: 20210715
...); // 成功获取位置后触发 function onSuccess(info:GeolocationInfo):void { trace('经纬度: (' + info.longitude + '°, ' + info.latitude + '°),精确度:' + info.accuracy + 'm'); if(info.altitude != null) trace('海拔:' + info.altitude + 'm' + (info.altitudeAccuracy != null ? (',...
来源: Laya2.0_文档 发布时间: 20210715
...有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.vbox.pos(100, 100); this.vbox.bgColor = "#ffffff"; this.vbox.space = 30; this.vbox.align = "center"; } } 二、通过代码创建VBox 有时,需要用代码管理UI,创建UI_VBox类用于创建VBox组件。由...
来源: Laya3.0_文档 发布时间: 20241014
...,分别编译出一个Shader) ```typescript public function compile(): void; ``` **预编译的基本原理:** ShaderVariantCollection记录了所有的ShaderVariant着色器变种,全局有一个Shader3D.debugShaderVariantCollection负责作为ShaderVariantCollection进行记录,只有通...
来源: Laya2.0_文档 发布时间: 20210715
...eleton replaceSlotSkinByIndex(slotName:String, oldIndex:int, newIndex:int):void 替换插槽的贴图索引 replaceSlotSkinName(slotName:String, oldName:String, newName:String):void 替换插槽贴图名 setSlotSkin(slotName:String, texture:Texture):void 设置自定义皮肤 2016-09-27 0 2 分...
来源: Laya_社区 发布时间: 20160927