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

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

1. runTime使用(TypeScript-IDE篇(TS)-组件化开发相关) [ 100%]

...开时还原按钮。 this.on(Laya.Event.MOUSE_OUT,this, this.scaleBig); } private scaleBig():void { //变大还原的缓动效果 Laya.Tween.to(this, {scaleX:1,scaleY:1},this.scaleTime); } private scaleSmall():void { //缩小至0.8的缓动效果 Laya.Tween.to(this,{scaleX:0.8,scaleY:0.8},this.scal...

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

2. 多线程worker(TypeScript-2D进阶篇(TS)-游戏加载策略) [ 84%]

...er.load("res/atlas/comp.atlas",Laya.Handler.create(this,this.onLoaded)); } private onLoaded():void{ //实例UI界面 var testView:ui.test.TestPageUI = new ui.test.TestPageUI(); Laya.stage.addChild(testView); } } new LayaUISample; ``` `WorkerLoader.workerPath = "libs/worker.js";`设置worker.js的路...

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

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

...atlas/comp.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); } private function onLoaded():void { //实例UI界面 var testView:TestView = new TestView(); Laya.stage.addChild(testView); } } } ``` ​ `WorkerLoader.workerPath = "libs/worker.js";`设置worker.js的路径,这个worker.js...

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

4. 一篇手LayaAir的3D物理引擎(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 73%]

...script /* ……省略若干代码 */ /**增加圆锥形刚体碰撞器 */ private addCone(): void { //生成随机值半径和高 let raidius = Math.random() * 0.2 + 0.2; let height = Math.random() * 0.5 + 0.8; //创建圆锥形3D模型节点对象 let cone = new Laya.MeshSprite3D(Laya.PrimitiveMes...

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