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

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

1. list ,增加item ,我想在末尾增加,但是每次都给我翻倍的增加,如何解决 [ 100%]

...j.Curr_Game_ImagePath + "hall/room_bg.png"); this.roombg.pos(50,150); this.addChild(this.roombg); var button = new Sprite(); button.loadImage($mj.Curr_Game_ImagePath + "hall/room_jiesan.png"); button.pos(300, 0); this.roombg.addChild(button); button.on(Event.MOUSE_DOWN, this, function (e) { list.add...

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

2. UI-FontClip [ 99%]

...龙蛇马羊猴鸡狗猪年快乐"; TestFontClip.spaceY = 10; Laya.stage.addChild(clipnum); Laya.stage.addChild(fontClip); Laya.stage.addChild(TestFontClip); Laya.stage.addChild(TestClipNum); Laya.stage.addChild(clipnum1); } } new Font_Clip(); module laya{ import Stage=Laya.Stage; import FontClip=La...

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

3. 照相机-3D空间转2D空间 [ 99%]

...LL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; var scene = Laya.stage.addChild(new Laya.Scene()); var camera = scene.addChild(new Laya.Camera(0, 0.1, 100)); camera.transform.translate(new Laya.Vector3(0, 0.35, 1)); camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); var direction...

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

4. Sprite-新手引导 [ 99%]

...te = Laya.Sprite; // 绘制底图 gameContainer = new Sprite(); Laya.stage.addChild(gameContainer); gameContainer.loadImage("res/guide/crazy_snowball.png"); gameContainer.on(Laya.Event.CLICK, this, this.nextStep); // 引导所在容器 guideContainer = new Sprite(); Laya.stage.addChild(guideContaine...

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

5. Sprite-新手引导 [ 99%]

... gameContainer.loadImage("../../res/guide/crazy_snowball.png"); Laya.stage.addChild(gameContainer); // 引导所在容器 guideContainer = new Sprite(); // 设置容器为画布缓存 guideContainer.cacheAs = "bitmap"; Laya.stage.addChild(guideContainer); gameContainer.on("click", this, nextStep); /...

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

6. 动画-新版骨骼动画 [ 99%]

...LL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; var scene = Laya.stage.addChild(new Laya.Scene()); var camera = scene.addChild(new Laya.Camera(0, 0.1, 1000)); camera.transform.translate(new Laya.Vector3(0, 1.5, 4)); camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); var direction...

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

7. 如何将原生iframe嵌入某个节点,像addChild那样嵌入 [ 99%]

如何将原生iframe嵌入某个节点,像addChild那样嵌入 HallView.prototype.OnClickOneGou=function(){ this.frame=Laya.Browser.document.createElement("iframe"); this.frame.width=this.con.width; this.frame.height=850; this.frame.style.margin="0"; this.frame.style.padding="0"; this.frame.styl...

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

8. 官方视频教程中飞机大战 "this.addChild is not a function" [ 99%]

官方视频教程中飞机大战 "this.addChild is not a function" IDE Layabox1.7.20.2 beta 版 src/Game.js//var WebGL = laya.webgl.WebGL; //Laya.init(480, 852, WebGL); var Game = (function(){ (function Game(){ Laya.init(480,852); this.bg = BackGround(); Laya.stage.addChild(this.bg); })(); })(); s...

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

9. UI-Clip [ 99%]

...age.width - bg.width >> 1, Laya.stage.height - bg.height >> 1); Laya.stage.addChild(bg); } createTimerAnimation() { const Clip = Laya.Clip; this.counter = new Clip(clipSkin, 10, 1); Laya.stage.addChild(this.counter); this.counter.autoPlay = true; this.counter.interval = 1000; this.counter.x = (Laya....

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

10. 加载-销毁Texture使用的图片资源 [ 99%]

...ya.Event; // 创建背景 this.spBg = Sprite.fromImage(PathBg); Laya.stage.addChild(this.spBg); // 创建动画 this.aniFly = new Animation(); this.aniFly.loadAtlas(PathFly); this.aniFly.play(); this.aniFly.pos(250, 100); Laya.stage.addChild(this.aniFly); // 创建按钮 this.btn = new Sprite().size...

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