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

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

211. 多线程worker(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 50%]

...口如下: ```java package { import laya.net.Loader; import laya.utils.Handler; import view.TestView; import laya.net.WorkerLoader; import laya.webgl.WebGL; public class LayaUISample { public function LayaUISample() { //初始化引擎 Laya.init(600, 400,WebGL); //设置Laya提供的worker.js的...

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

212. 3D中如何限制角色的行走区域? [ 49%]

...esouLoaded (/Users/admin/layaA4/layaA4/bin/js/bundle.js:8825:123)     at Handler.__proto.runWith (/Users/admin/layaA4/layaA4/bin/js/bundle.js:2162:42)     at onComplete (/Users/admin/layaA4/layaA4/bin/js/bundle.js:43827:16) 2019-07-30 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回...

来源: Laya_社区 发布时间: 20170505

213. 用Unity插件导出的模型渲染报错 [ 49%]

...019-05-16 15:16 Laya.loader.create("model/role/1/model.lh", Laya.Handler.create(this, this.OnComplete)); private OnComplete():void { let sprite:Laya.Sprite3D = Laya.loader.getRes("model/role/1/model.lh"); this._scene.addChild(sprite); } 155*****924 • 2019-05-16 15:16 这样写...

来源: Laya_社区 发布时间: 20190516

214. 模拟石头下落过程不明抖动 [ 48%]

...all.y = -200 Laya.Tween.to( ball,{y: 1500 } ,5000,Laya.Ease.linearOut,Laya.Handler.create(this,this.removeball,[ball])); Laya.stage.addChild( ball ); } } public removeball( ball:Laya.Sprite ){ Laya.stage.removeChild(ball); // console.log("rmove ball") } public getObj():Laya.Sprite { for( let i:numbe...

来源: Laya_社区 发布时间: 20180226

215. CheckBox属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 47%]

...代码:** ```java package { import laya.ui.CheckBox; import laya.utils.Handler; import laya.webgl.WebGL; import ui.ComponentDemoUI; public class ComponentDemo { //资源路径 private var skin1:String="res/component/check.png"; private var skin2:String ="res/component/check_2.png"; public function...

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

216. LayaAir能做RPG吗?不要问我能不能,因为我已经在做 - 杀意来袭 [ 47%]

...如果设置为true,则点击空白区域可以穿透过去。” 2.Laya.Handler 我在处理技能的时候用了对象池,其中类有对handler的持有,再次使用时发现数据不对了,查找很久才发现handler调用了recover,被对象池再次生成的对象引用覆盖了如...

来源: Laya_社区 发布时间: 20161109

217. Cannot read property 'load' of null [ 47%]

...p/28.jpg", "res/img/map/29.jpg", ]; Laya.loader.load(this.skins,laya.utils.Handler.create(this, this.LoadSuccess,null,false)); } private LoadSuccess() { ViewManager.getInstance().CreateView(contant.loginId,new LoginView()); ViewManager.getInstance().ShowView(contant.loginId); } public SwictMap(index...

来源: Laya_社区 发布时间: 20171124

218. 二进制图片(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 45%]

... xhr:HttpRequest = new HttpRequest(); xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.send("res/monkey2.png","","get","arraybuffer"); } private function completeHandler(data:Object):void { //加载完成返回的data是arraybuffer; //.......这里处理...

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

219. 【简单跑酷--JS版】---Lv.3 添加地板 [ 39%]

..."res/background.png", "res/m_background.png", "res/floor.png"], laya.utils.Handler.create(this, onLoaded), laya.utils.Handler.create(this, onLoading, null, false)); 首先同样我们到runGame目录新建一个Floor.js 开始编写代码 这里 我们想一下地板有哪些功能? 1、自身从...

来源: Laya_社区 发布时间: 20160728

220. laya.ui.Tree_API3.0 [ 38%]

...ackage { import laya.ui.Tree; import laya.utils.Browser; import laya.utils.Handler; public class Tree_Example { public function Tree_Example() { Laya.init(640, 800); Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/vscroll.png", "resource/ui/vscroll$bar....

来源: Laya3.0_api 发布时间: 20231115