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

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

541. 我用as3调试的matter.js,刚体发生碰撞后不会旋转,我的代码在附件里 [ 43%]

...     Laya.stage.scaleMode = "showall";             Laya.stage.bgColor = "#ffffff";                          Stat.show();                          setup();         }         private function setup():void         {            ...

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

542. Clip属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 43%]

...放 Laya.stage.scaleMode = Stage.SCALE_SHOWALL; //背景颜色 Laya.stage.bgColor = "#232628"; //加载资源 Laya.loader.load([buttonSkin, clipSkin, bgSkin], laya.utils.Handler.create(this,onSkinLoaded)); } /***加载资源完成***/ private function onSkinLoaded(e:*=null):void { //显示背景图 ...

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

543. CheckBox属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 43%]

...式 Laya.init(600,400,Laya.WebGL); //设置舞台背景颜色 Laya.stage.bgColor = "#ffffff"; //加载资源成功后,执行onLoaded回调方法 Laya.loader.load([this.skin1,this.skin2],Laya.Handler.create(this,this.onLoaded)); } private onLoaded():void{ //创建一个CheckBox实例cb1 var cb1:Lay...

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

544. 内存优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 42%]

...Laya.stage.scaleMode = Laya.Stage.SCALE_SHOWALL; //背景颜色 Laya.stage.bgColor = "#232628"; //帧循环 Laya.timer.frameLoop(1, this, this.onFrame); } onFrame(): void { //如果创建对象时间为100帧间隔后 if (this.createTime >= 100) { //每200帧间隔创建30个雪花 for (var i: numbe...

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

545. ViewStack属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 42%]

...() { Laya.init(1334,750, WebGL); Laya.stage.scaleMode = "full"; Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("./res/atlas/ui.atlas", Handler.create(this, onLoaded)); } private function onLoaded():void { //创建一个UI实例 comp = new Compon...

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

546. 其他引擎的Demo-Example_23 [ 42%]

...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Stat.show(); // create a background texture Laya.stage.loadImage("res/pixi/laserBG.jpg"); Laya.stage.frameLoop(1, this, this.animate); } animate() { const Sprite = Laya.Sprite, Point = Laya.Point; let las...

来源: Laya2.0_示例 发布时间: 20241119

547. [0]Spine3.8.75报错:Error: Unsupported skeleton data, please export with a newer version of Spine. [ 42%]

... // Laya.stage.scaleMode = Stage.SCALE_NOSCALE;         // Laya.stage.bgColor = "#232628";         // Stat.show();         this.startFun();     }     startFun() {         this.templet = new SpineTemplet(Laya.SpineVersion.v3_8);         this.templet.loadAni(this.aniPath);   ...

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

548. laya.display.Text [ 42%]

...Bounds方法获取。设置为true,对性能有一定影响。 Sprite  bgColor : String 文本背景颜色,以字符串表示。 Text blendMode : String指定要使用的混合模式。目前只支持"lighter"。Sprite  bold : Boolean 指定文本是否为粗体字。 默认值为 false,...

来源: laya_api 发布时间: 20170929

549. 内存优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 42%]

...放 Laya.stage.scaleMode = Stage.SCALE_SHOWALL; //背景颜色 Laya.stage.bgColor = "#232628"; //帧循环 Laya.timer.frameLoop(1,this,onFrame); } private function onFrame():void { //如果创建对象时间为100帧间隔后 if(createTime>=100) { //每200帧间隔创建30个雪花 for(var i:int=0;i...

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

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

...染模式 Laya.init(1334,750, WebGL); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoad回调方法 Laya.loader.load([skin1,skin2], Handler.create(this, onLoaded)); } private function onLoaded():void { //创建一个CheckBox实例cb1 var cb1:CheckBox = ne...

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