大约有 4 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0031 秒)
...开时还原按钮。 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
...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
...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
...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