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

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

401. 材质-BlinnPhong-法线贴图 [ 78%]

...onster2.transform.rotate(this.rotation); }); }class BlinnPhong_NormalMap { private scene:Laya.Scene; private rotation:Laya.Vector3 = new Laya.Vector3(0, 0.01, 0); private normalMapUrl:any = ["../../res/threeDimen/staticModel/lizardCal/rock_norm.png", "../../res/threeDimen/staticModel/lizardCal/lizar...

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

402. swf在layaairts里播放的问题,播放不了,swf在群文件star.swf [ 78%]

...= Laya.Handler;     export class Loader_MultipleType {         private ROBOT_DATA_PATH: string = "res/swf/star.swf"; private ROBOT_DATA_PATHS: string = "res/swf/star.json";         private ROBOT_TEXTURE_PATH: string = "res/swf/star.png";         constructor() {      ...

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

403. 预加载结束之后还是报lose skin [ 78%]

预加载结束之后还是报lose skin private loadRes():void{ Laya.loader.load("./res/atlas/comp.atlas",Laya.Handler.create(this, this.onAssetLoaded),Laya.Handler.create(this, this.onLoading, null, false)); } private onLoading(progress: number): void { console.log("加载进度: " + progress); } ...

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

404. 分享:SWF LABEL标签的使用! [ 78%]

...ya.ani.swf.MovieClip; import laya.events.Event; public class SwfLabelUse { private var mc:MovieClip; public function SwfLabelUse() { Laya.init(600,600); Laya.stage.bgColor="#EEFFCC"; mc=new MovieClip(); mc.load("output/AAA.swf"); mc.on(Event.LOADED,this,onLoaded); Laya.stage.addChild(mc); } private ...

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

405. 请问如何释放atlas和他的png资源 [ 78%]

... 很头疼 得不到名字啊! 请问这个有什么规律吗 坐等! private function clickFun():void { url = "res/CH/atlas/MORNUI_Z_Gongneng.atlas"; Laya.loader.load(url,new Handler(this,hh)); //trace( Laya.loader.getRes(url) ); } private function hh():void { Laya.stage.addChild(new Image("MOR...

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

406. 2D物理-桥 [ 78%]

..."../Main"; export class Physics_Physics_Bridge { Main: typeof Main = null; private ecount = 30; private label: Label; constructor(maincls: typeof Main) { this.Main = maincls; Laya.Config.isAntialias = true; Laya.init(1200, 700, WebGL); Stat.show(); Physics.enable(); PhysicsDebugDraw.enable(); Laya.s...

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

407. image.drawToCanvas方法获取的一直是空的png [ 78%]

...rt laya.utils.Handler; import laya.webgl.WebGL; public class LayaAirDemo { private var img:Image; public function LayaAirDemo() { Laya.init(800, 600, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor...

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

408. 文本-Overflow [ 77%]

...Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createTexts(); } private createTexts(): void { var t1: Text = this.createText(); t1.overflow = Text.VISIBLE; t1.pos(10, 10); var t2: Text = this.createText(); t2.overflow = Text.SCROLL; t2.pos(10, 110); var t3: Text = this.createText(); t3.ov...

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

409. Mac下LayaAirIDE1.7.20版本声音预加载失败,但windows下同个版本加载正常 [ 77%]

...败,但windows下同个版本加载正常 Mac下的AS3代码如下:   private function init():void {         var assetArr:Array=[             {url:"res/sound/music_gameplay.mp3", type:Loader.SOUND},             {url:"res/sound/button.mp3", type:Loader.SOUND},       ...

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

410. 绘制三角形、多边形及根据数据绘制图案(TypeScript-LayaAir基础篇(TS)-矢量图) [ 77%]

...ya.Stage;        export class Sprite_DrawShapes {         private sp: Sprite;            constructor()         {             Laya.init(500, 300);             this.drawSomething();         }            private drawSometh...

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