大约有 1,625 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0076 秒)
Laya_社区(663) Laya3.0_api(364) Laya2.0_api(194) laya_api(158) Laya2.0_文档(80) Laya_示例(58) Laya3.0_文档(54) Laya2.0_示例(54)
...阵数组的偏移。 Returns void Static getURLVerion getURLVerion(url: string): string Defined in laya/d3/utils/Utils3D.ts:482 获取URL版本字符。 Parameters url: string Returns string Static mulMatrixByArray mulMatrixByArray(leftArray: Float32Array, leftOffset: number, rightArray: Float32Arr...
来源: 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
... 加载结束回调。根据url类型不同分为2种情况:1. url为String类型,也就是单个资源地址,如果加载成功,则回调参数值为加载完成的资源,否则为null;2. url为数组类型,指定了一组要加载的资源,如果全部加载成功,则回调...
来源: Laya_社区 发布时间: 20180502
...Image; import laya.utils.Handler; public class addPic { private var picUrl:String; private var pic:Sprite; private var picX:int; private var picY:int; public function addPic(str:String, x:int, y:int) { picUrl = str; picX = x; picY = y; Laya.loader.load(picUrl, Handler.create(this, showBgImg)); } pri...
来源: Laya_社区 发布时间: 20170522
...lic function JSDemo() { //初始化引擎 Laya.init(0, 0); var BrowserInfo:String = __JS__('"Console Log:浏览器高:" + window.innerHeight + " 浏览器宽:"+ window.innerWidth'); trace(BrowserInfo); } } } ``` 以上两种方式从运行的结果上看,是完全一致的,如图2所...
来源: Laya2.0_文档 发布时间: 20210715
...们也解决了,直接贴代码吧 // 各种浏览器兼容 var hidden:String = "hidden", state:String = "visibilityState", visibilityChange:String = "visibilitychange"; var document:* = window.document; if (typeof document.hidden !== "undefined") { visibilityChange = "visibilitychange"; state = "...
来源: Laya_社区 发布时间: 20171011
...nt.ts:34 是否可以在IDE环境中运行 Optional scriptPath scriptPath: string Inherited from Component.scriptPath Defined in laya/components/Component.ts:35 Static CULLINGMODE_ALWAYSANIMATE CULLINGMODE_ALWAYSANIMATE: number = 0 Defined in laya/d3/component/Animator.ts:53 裁剪模式_始终播...
来源: Laya3.0_api 发布时间: 20231102
...che(this._url+"#"+name); this._isPlaying=true; this.index=((typeof start=='string'))? this._getFrameByLabel(start):start; this.loop=loop; if (this._frames && this._frames.length > 1 && this.interval > 0){ this.timerLoop(this.interval,this,this._frameLoop,null,true); } } __proto...
来源: Laya_社区 发布时间: 20161006
... present in the dictionary. System.Collections.Generic.Dictionary`2[System.String,System.Collections.Generic.List`1[System.String]].get_Item (System.String key) (at /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.Collections.Generic/Dictionary.cs:150) 附件是可复现问题的U3d项...
来源: Laya_社区 发布时间: 20181218
...) * @param progress 加载进度回调(可选) */ static open(url: string, closeOther: boolean = true, param: any = null, complete: Handler = null, progress: Handler = null): Promise<Scene> { Scene.showLoadingPage(); return Scene.load(url, Handler.create(null, this._onSceneLoaded, [close...
来源: Laya3.0_文档 发布时间: 20241014