大约有 326 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0048 秒)
...ate onAssetLoaded(): void { // 使用texture console.log("加载结束"); } // 加载进度侦听器 private onLoading(progress: number): void { console.log("加载进度: " + progress); } private onError(err: string):...
来源: Laya_社区 发布时间: 20240705
...一个测试代码,压根就没有功能。 class Main { constructor() { console.log(Laya.Browser.width, Laya.Browser.height); this.current = { x: 0, y: Laya.Browser.height }; // Laya.stage.bgColor = "#3F51B5"; this.sp = new Laya.Sprite(); Laya.stage.addChild(this.sp); } render() { console.log("re...
来源: Laya_社区 发布时间: 20180602
...ish.y = 200 this.addChild(_fish); Laya.timer.loop(100, this, function () { console.log(_fish.x, _fish.y, _fish.width, _fish.height, _fish.rotation); if (_fish.hitTestPoint(_fish.x, _fish.y)) { console.log("hittttttt"); } }); } } //程序入口 Laya.init(600, 400); this.onLoaded() function onLoaded()...
来源: Laya_社区 发布时间: 20180315
...计产生射线方法,通过2D坐标获取与屏幕垂直的一条射线 console.log( PanelMgr.mainCamera); PanelMgr.mainCamera.viewportPointToRay(this.pointRay, this.ray); (this.owner as Laya.Scene3D).physicsSimulation.rayCast(this.ray,this.hitresult); console.log(Laya.MouseManager.instance.mouse...
来源: Laya_社区 发布时间: 20190416
...程是:https://ldc.layabox.com/doc/?nav=zh-js-7-2-7 if( window.conch ) { console.log("i'm here 1"); window.conch.captureScreen(function(arrayBuff,width,height){ conch.saveAsPng(arrayBuff,width,height,conch.getCachePath()+"/test.png" ); console.log("i'm here 2:" + arrayBuff.byteLength + " " + width +...
来源: Laya_社区 发布时间: 20180305
... return; } console.log(url); if (MiniAdpter.autoCacheFile && MiniFileMgr.getFileInfo(url)) { console.log('from cacheFile'); this.onDownLoadCa...
来源: Laya_社区 发布时间: 20180503
...ewPort(this._mViewPortX, this._mViewPortY, Browser.width, Browser.height); console.log(`ViewPort=${this._mViewPortX},${this._mViewPortY},${Browser.width},${Browser.height}`); console.log(`Map=${this._mTiledMap.width},${this._mTiledMap.height}`); if(++this._mTest === 2){ console.log("the second call....
来源: Laya_社区 发布时间: 20180529
... onEvent('downloadOK'); //let md5 = calcmd5(fs_readFileSync(localfile)); //console.log('md5='+md5); let zip = new ZipFile(); if(zip.setSrc(localfile)){ zip.forEach((id,name,dir,sz)=>{ if(!dir){ let buf = zip.readFile(id); //console.log("update "+name); let fid = window.appcache.hashstr('/'+name);...
来源: Laya_社区 发布时间: 20180108
... code= res.code; console.log("登陆成功,获取到code") } var button = wx.createUserInfoButton( { type: 'text', ...
来源: Laya_社区 发布时间: 20180911
...谢谢? const scene = new Laya.Scene(); scene.onOpened = () => { console.log('scene onOpened'); }; scene.open(); console.log('scene', scene.active, scene.activeInHierarchy); Laya.timer.frameOnce(10, this, () => { console.log('scene 2', scene.active, scene.activeInHierarchy); }); 日...
来源: Laya_社区 发布时间: 20190218