• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 11 项符合查询结果, 库内数据总量为 30,724 项。 (搜索耗时: 0.0024 秒)

1. 代码模式的快捷键设置(JavaScript-IDE篇(JS)-代码模式基础) [ 100%]

... Indent/outdent line | | Home | 转到行首 Go to beginning of line | | End | 转到行尾 Go to end of line | | `Ctrl+Home` | 转到文件开头 Go to beginning of file | | `Ctrl+End` | 转到文件末尾 Go to end of file | | `Ctrl+↑ / ↓` | 向上/向下滚动行 Scroll line up/down | | `Alt+...

来源: Laya2.0_文档 发布时间: 20210715

2. 代码模式的快捷键设置(TypeScript-IDE篇(TS)-代码模式基础) [ 100%]

... Indent/outdent line | | Home | 转到行首 Go to beginning of line | | End | 转到行尾 Go to end of line | | `Ctrl+Home` | 转到文件开头 Go to beginning of file | | `Ctrl+End` | 转到文件末尾 Go to end of file | | `Ctrl+↑ / ↓` | 向上/向下滚动行 Scroll line up/down | | `Alt+...

来源: Laya2.0_文档 发布时间: 20210715

3. 代码模式的快捷键设置(ActionScript-IDE篇(AS3)-代码模式基础) [ 99%]

... Indent/outdent line | | Home | 转到行首 Go to beginning of line | | End | 转到行尾 Go to end of line | | `Ctrl+Home` | 转到文件开头 Go to beginning of file | | `Ctrl+End` | 转到文件末尾 Go to end of file | | `Ctrl+↑ / ↓` | 向上/向下滚动行 Scroll line up/down | | `Alt+...

来源: Laya2.0_文档 发布时间: 20210714

4. JSONP跨域读取数据(TypeScript-LayaAir基础篇(TS)-数据与通信) [ 82%]

...tp = require("http"); var sever = http.createServer(function(req,res){ res.end("LayaSample.onComplete()"); }); sever.listen(9090) ``` ```javascript res.end("LayaSample.onComplete()"); ``` 这句话的意思是服务器回传给客户端LayaSample.onComplete()并且执行这个函数。 通过几行...

来源: Laya2.0_文档 发布时间: 20210715

5. JSONP跨域读取数据(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 82%]

...tp = require("http"); var sever = http.createServer(function(req,res){ res.end("LayaSample.onComplete()"); }); sever.listen(9090) ``` ```javascript res.end("LayaSample.onComplete()"); ``` 这句话的意思是服务器回传给客户端LayaSample.onComplete()并且执行这个函数。 通过几行...

来源: Laya2.0_文档 发布时间: 20210715

6. JSONP跨域读取数据(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 81%]

...tp = require("http"); var sever = http.createServer(function(req,res){ res.end("LayaSample.onComplete()"); }); sever.listen(9090) ``` ```javascript res.end("LayaSample.onComplete()"); ``` 这句话的意思是服务器回传给客户端LayaSample.onComplete()并且执行这个函数。 通过几行...

来源: Laya2.0_文档 发布时间: 20210714

7. 寻路系统(JavaScript-3D基础(JS)-LayaAir3D之高级应用) [ 80%]

...is.pointCount].x,this.path[this.nextPathIndex++ % this.pointCount].z, this.endPoint); //开始于结束点数据 var start = this.graph.grid[this.startPoint.x][this.startPoint.z]; var end = this.graph.grid[this.endPoint.x][this.endPoint.z]; //生成路径 this._everyPath = window.astar.search(this.g...

来源: Laya2.0_文档 发布时间: 20210714

8. 寻路系统(TypeScript-3D基础(TS)-LayaAir3D之高级应用) [ 80%]

...is.pointCount].x,this.path[this.nextPathIndex++ % this.pointCount].z, this.endPoint); //开始于结束点数据 var start = this.graph.grid[this.startPoint.x][this.startPoint.z]; var end = this.graph.grid[this.endPoint.x][this.endPoint.z]; //生成路径 this._everyPath = (window as any).astar.sear...

来源: Laya2.0_文档 发布时间: 20210715

9. 寻路系统(ActionScript-3D基础(AS3)-LayaAir3D之高级应用) [ 80%]

...x(path[nextPathIndex % pointCount].x,path[nextPathIndex++ % pointCount].z, endPoint); //开始于结束点数据 var start:Object = graph.grid[startPoint.x][startPoint.z]; var end:Object = graph.grid[endPoint.x][endPoint.z]; //生成路径 _everyPath = Browser.window.astar.search(graph, start, end, ...

来源: Laya2.0_文档 发布时间: 20210714

10. AS3与JS混合编码(ActionScript-2D进阶篇(AS3)-扩展模块) [ 75%]

...lic class require { public function require(path:String) { } } /*[IF-FLASH-END]*/ } ``` ​ 项目的启动类Main.as代码如下: ```java package { public class Main { public var http:Object = require('http'); public var net:Object = require('net'); public var url:Object = require('url'); public ...

来源: Laya2.0_文档 发布时间: 20210715