大约有 106 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...); script.src = "demo1.js"; script.onload = function():void{ //加载完成函数,开始调用模块的功能。 //new一个js中的对象 var client:any = new Laya.Browser.window.Demo1(); client.start(); } script.onerror = function():void{ //加载错误函数 } Laya.Browser.document.body.appendC...
来源: Laya3.0_文档 发布时间: 20241014
...- 32 * 2 - 32 * parseInt(10 * Math.random()); //创建一个帧循环处理函数 // Laya.timer.frameLoop(1, this, this.onLoop); } //在地板上面添加物品 _proto.addItem = function(){ } //获取当前地板上面的所有物品 _proto.getItems = function(){ return ; } _proto.onLoop = function(...
来源: Laya_社区 发布时间: 20160801
...其他模块可以通过”module1.xxx“访问这个模块导出的类和函数。 允许编辑器加载:一般需要勾选。勾选后,脚本在编辑器环境也会载入。 允许运行时加载和自动加载:一般需要勾选。勾选后,脚本会在运行时自动加载。 入口文...
来源: Laya3.0_文档 发布时间: 20241014
...events.Event.MOUSE_UP, this, this.onMouseUp); //创建一个帧循环处理函数 Laya.timer.frameLoop(1, this, this.onLoop); } _proto.onLoop = function(){ // 检测人物是否踩在地板上面了 for(var i = this.mapFloor.numChildren - 1; i > -1; i--){ var floor = this.mapFloor.getChildAt(i); ...
来源: Laya_社区 发布时间: 20160803
...piggy.q1.com/images/background.png 我盼乙卯 • 2018-05-31 13:05 回调函数返回的是false 我盼乙卯 • 2018-05-31 13:28 MiniAdpter.autoCacheFile = true不起作用,并么有缓存资源 Laya_Aaron • 2018-05-31 14:24 你是什么项目?小游戏? 我盼乙卯 • 2018-05-31 15:23...
来源: Laya_社区 发布时间: 20180531
...e = BaseUtils.rand_number( 0, 360 ); // // 计算弧度,用于sin和cos函数 // this._path_radians = Math.PI / 180 * this._path_angle ; // // 设置终点 // this._tail_pos.x = Math.floor( this._head_pos.x + this._path_length * Math.cos( this._path_radians ) ); // this._tail_pos.y = Math.floor(...
来源: Laya_社区 发布时间: 20180515