大约有 1,309 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0051 秒)
Laya_社区(1120) Laya2.0_文档(69) Laya3.0_文档(50) Laya2.0_示例(27) Laya_示例(24) Laya3.0_api(17) laya_api(1) Laya2.0_api(1)
...+= delta; var distance_percent:Number = (cur_time / play_time) * (1 - Math.log(cur_time / play_time)); ani.x = startX + (endX - startX) * distance_percent ani.y = startY + (endY - startY) * distance_percent var speed:Number = -Math.log(cur_time / play_time) ani.interval = (35 / speed) > 60 ? 60 :...
来源: Laya_社区 发布时间: 20180115
... var camera = scene.getChildByName("Main Camera"); console.log("test====================:" + Laya.version) } } 问题一: 小米note3:正常 华为p30:报错 问题二: 摄像机在场景中导出了,也能获...
来源: Laya_社区 发布时间: 20190925
...代码如下: ```javascript loadTaskA.onProgressUpdate(res => { console.log('sub1Name 下载进度', res.progress) console.log('sub1Name 已经下载的数据长度', res.totalBytesWritten) console.log('sub1Name 预期需要下载的数据总长度', res.totalBytesExpectedToWrite) } ); ``` 如果...
来源: Laya2.0_文档 发布时间: 20210714
...dex是选中项的下标 // _proto_.onSelect = function(index){ // console.log("index",index); // } _proto_.onMouse = function(e,index){ if(e.type == Laya.Event.CLICK){ //console.log(e.type,index); if(this.selectedIndex !== index){ if(this.selectedIndex!==-1){ //之前选中的列表项的选中状...
来源: Laya_社区 发布时间: 20170805
...代码如下: ```javascript loadTaskA.onProgressUpdate(res => { console.log('sub1Name 下载进度', res.progress) console.log('sub1Name 已经下载的数据长度', res.totalBytesWritten) console.log('sub1Name 预期需要下载的数据总长度', res.totalBytesExpectedToWrite) } ); ``` 如果...
来源: Laya2.0_文档 发布时间: 20210715
...代码如下: ```javascript loadTaskA.onProgressUpdate(res => { console.log('sub1Name 下载进度', res.progress) console.log('sub1Name 已经下载的数据长度', res.totalBytesWritten) console.log('sub1Name 预期需要下载的数据总长度', res.totalBytesExpectedToWrite) } ); ``` 如果...
来源: Laya2.0_文档 发布时间: 20210715
...回复 layabox 赞同来自: 目前截图给到的信息量太少,仅从log上看,可能是联服务器出的问题。 如果是根本就联不上,那检查你们服务器或者是用户客户端的网络问题。 如果仅是新版本拉取不稳定,当客户端或者服务器网络...
来源: Laya_社区 发布时间: 20181005
...例如: a.ts module proto{ export function msg1(){ console.log("msg1"); } } b.ts module proto{ export function msg2(){ console.log("msg2"); } } 然后再main.ts里面. function dispatchMsg(name: string){ let fun = proto[name]; fun(); } disp...
来源: Laya_社区 发布时间: 20190604
...(list); list.array = effList; } function updateItem(cell, index) { console.log(cell.dataSource); cell.setImg(cell.dataSource); } function onSelect(index) { console.log("当前选择的索引:" + index); } 我想实现的效果是 设置每个特效宽高都为80 * 80 然后一排显示...
来源: Laya_社区 发布时间: 20170627
...nChangeColor(colorPicker); } function onChangeColor(colorPicker) { console.log(colorPicker.selectedColor); } })();module laya { import Stage = Laya.Stage; import ColorPicker = Laya.ColorPicker; import Browser = Laya.Browser; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_C...
来源: Laya_示例 发布时间: 20241125