大约有 70 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0058 秒)
...下例子。 ```java package { import laya.events.Event; import laya.net.HttpRequest; import laya.utils.Browser; public class Main { public function Main() { //初始化引擎 Laya.init(500,500); var httpreq:HttpRequest = new HttpRequest(); httpreq.on(Event.COMPLETE,this,this.completeHandler); httpr...
来源: Laya2.0_文档 发布时间: 20210715
...re图片能否进行翻转? IDE1.7.8 json图集加载问题 TypeScript下HttpRequest发送Post请求有Bug? ios14系统下 blendMode='lighter' 图片异常 matter中layasprite怎么改变图片大小? laya怎么跨域加载图片 unity到导出场景加载时抛异常,不知所措 构建iOS工...
来源: Laya_社区 发布时间: 20180928
...库无智能提示 layaAir TS项目如何引用protoBuf库? TypeScript下HttpRequest发送Post请求有Bug? 问题状态 最新活动: 2017-11-20 20:09 浏览: 6105 关注: 4 人 WLDragon • 2017-11-20 19:44 script标签的顺序吗?编译的时候会不会又覆盖掉? ymsdandan • 2017-11-...
来源: Laya_社区 发布时间: 20171120
...FF字体要怎么加载呢? IDE1.7.8 json图集加载问题 TypeScript下HttpRequest发送Post请求有Bug? 富文本下划线绘制bug Animation 的createFrames 使用已经加载的图集缓存动画失败 微信小游戏与加载图片时不会触发erroe事件 打包出来后的APP打开加载...
来源: Laya_社区 发布时间: 20180622
...的语言服务(2.1.5)。可能出现不一致的编译错误 TypeScript下HttpRequest发送Post请求有Bug? 谷歌浏览器播放mp3出现The AudioContext was not allowed to start. 2.2-2.3版本 ani动画,序列帧动画最后一帧和第一帧衔接出现卡顿 发布H5后通过网页打开出...
来源: Laya_社区 发布时间: 20180306
...eo; constructor() { //初始化引擎 Laya.init(500,500); var httpreq:Laya.HttpRequest = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,this.completeHandler); httpreq.on(Laya.Event.ERROR,this,this.errorHandler); httpreq.send("demo1.js"); } private completeHandler(e:any):void{ var script...
来源: Laya3.0_文档 发布时间: 20241014
...eo; constructor() { //初始化引擎 Laya.init(500,500); var httpreq:Laya.HttpRequest = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,this.completeHandler); httpreq.on(Laya.Event.ERROR,this,this.errorHandler); httpreq.send("demo1.js"); } private completeHandler(e:any):void{ var script...
来源: Laya2.0_文档 发布时间: 20210715
...rome里面 听不见声音 Texture图片能否进行翻转? TypeScript下HttpRequest发送Post请求有Bug? laya3D动画无法播放 将list里的scrollBar设置mouseWheelEnable=false后过一段时间设置mouseWheelEnable=true;无法滚动 laya怎么跨域加载图片 发布到vivo平台后,...
来源: Laya_社区 发布时间: 20200529
...teHandler()); /** * 作用是将一个Http的消息组装成一个完成的HttpRequest或者HttpResponse,那么具体的是什么 * 取决于是请求还是响应, 该Handler必须放在HttpServerCodec后的后面 */ pipeline.addLast("httpObjectAggregator", new HttpObjectAggregator(8192)); //用...
来源: Laya_社区 发布时间: 20170209
...```typescript //初始化引擎 Laya.init(500,500); var httpreq = new Laya.HttpRequest(); httpreq.on(Laya.Event.COMPLETE,this,completeHandler); httpreq.on(Laya.Event.ERROR,this,errorHandler); httpreq.send("demo1.js"); function completeHandler(e){ var script = Laya.Browser.document.createElement("scr...
来源: Laya2.0_文档 发布时间: 20210714