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

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

641. 文本-自动换行 [ 66%]

... Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createText(); } private createText(): void { var txt: Text = new Text(); txt.text = "Layabox是HTML5引擎技术提供商与优秀的游戏发行商,面向AS/JS/TS开发者提供HTML5开发技术方案!"; txt.width = 300; txt.fontSize = ...

来源: Laya_示例 发布时间: 20241125

642. Sprite-根据数据绘制路径 [ 66%]

...eMode = "showall"; Laya.stage.bgColor = "#232628"; this.drawPentagram(); } private drawPentagram(): void { var canvas: Sprite = new Sprite(); Laya.stage.addChild(canvas); var path: Array = []; path.push(0, -130); path.push(33, -33); path.push(137, -30); path.push(55, 32); path.push(85, 130); path.pu...

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

643. [LayaAir3]Laya3.0 中设置舞台背景透明无效 [ 66%]

...";                 this.Show();             }           private iframe: any = Laya.Browser.document.createElement("iframe");     private _view: HTMLDivElement = document.createElement("div");           public Show(): void {         Laya.Browser.document.body.appendChild...

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

644. 循环添加一组按钮事件无法正常使用 [ 66%]

...行,单独给文本添加啦同一组事件,可以正常执行     private function addEgg():void         {             trace("addEgg");             for(var i:int = 0; i<eggLoc.length; i++)             {                 //trace(eggLoc[i][1]+"  "...

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

645. 怎么实现同一个工程内分包? [ 66%]

... { if (stage) init(); else addEventListener(Event.ADDED_TO_STAGE, init); } private function init(e:Event = null):void { removeEventListener(Event.ADDED_TO_STAGE, init); this.stage.scaleMode = StageScaleMode.NO_SCALE; this.stage.align = StageAlign.TOP_LEFT; IFlash.setSize(1000, 600); //2D项目中设...

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

646. 文本-自动换行 [ 66%]

... Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createText(); } private createText(): void { var txt: Text = new Text(); txt.text = "Layabox是HTML5引擎技术提供商与优秀的游戏发行商,面向AS/JS/TS开发者提供HTML5开发技术方案!"; txt.width = 300; txt.fontSize = ...

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

647. 3D粒子特效第一次卡顿最终解决方案 [ 66%]

...原理:lh预加载完成后,对材质进行检索,预编译shader。 private loadEffectComplete():void{         var effect:Laya.Sprite3D = Laya.loader.getRes("res/effect/2/Conventional/bullet.lh");         this.compileShader(effect);         //===========放心使用吧...

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

648. Android替换游戏启动logo看不到设置的图片 [ 66%]

...port laya.utils.Handler; import view.TestView; public class LayaUISample { private var dd:*; public function LayaUISample() { //初始化引擎 Laya.init(600, 400); //判断是否在加速器端 __JS__("if(window.conch)") { //获取loadingview的实例 dd=__JS__("window.loadingView"); 通过loading...

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

649. this.bitmap.activeResource is not a function [ 66%]

this.bitmap.activeResource is not a function //开放域层级 private static _openZone:Laya.Sprite; //开放域纹理 private static _openZoneTexture:Laya.Texture; public static openZone(vx:number=0,vy:number=0,scaleX:number=1,scaleY:number=1) { if(!this._openZone) { //开放域 this._openZone = n...

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

650. Sprite-缓存为静态图像 [ 66%]

... = "showall"; Laya.stage.bgColor = "#232628"; Stat.show(); this.setup(); } private setup(): void { var textBox: Sprite = new Sprite(); // 随机摆放文本 var text: Text; for (var i: number = 0; i < 1000; i++) { text = new Text(); text.fontSize = 20; text.text = (Math.random() * 100).toFixed(0); t...

来源: Laya_示例 发布时间: 20241125