大约有 1,536 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0061 秒)
... Laya.Sprite3D.load("DoorShelf/shelf.lh"); this.scene.addChild(shelf0); shelf0.transform.translate(new Laya.Vector3(-4,1.2,35)); var shelf3 = Laya.Sprite3D.load("DoorShelf/shelf.lh"); this.scene.addChild(shelf3); ...
来源: Laya_社区 发布时间: 20180301
... Bg = new Sprite(); Bg.loadImage("../laya/assets/bg_back.png"); Laya.stage.addChild(Bg); Bg.on(Laya.Event.MOUSE_DOWN, this, function(){ // 创建Video元素 var videoElement = Laya.Browser.createElement("video"); Laya.Browser.document.body.appendChild(videoElement); // 设置Video元素地样式和...
来源: Laya_社区 发布时间: 20180119
... { var sp = new Sprite(); Laya.stage.addChild(sp); //画矩形 sp.graphics.drawRect(20, 20, 100, 50, "#ffff00"); } })(); ``` 代码运行效果: ![图片](img/2.png) (图2) 示例中...
来源: Laya2.0_文档 发布时间: 20210715
...i=0; i<3; i++){ var ball = myscene.addChild(sp.clone()); ball.name = i.toString(); } console.log("add finished: ", myscene.numChildren); for(v...
来源: Laya_社区 发布时间: 20200723
...EARFLAG_SKY; this.m_sceneCamera.addComponent(CameraMoveScript); this.stage.addChild(this.m_scene); this.m_scene.addChild(this.m_sceneCamera); 在destory的时候 this.stage.removeChild(this.m_scene); this.m_sceneCamera.removeAllComponent(); this.m_scene.destroy(); this.m_scene = null; 只会这个Ca...
来源: Laya_社区 发布时间: 20171012
...e(rankTexture, 0, 0, rankTexture.width, rankTexture.height); this._content.addChild(sprite); sprite.pos(40, 190);报:this.bitmap activeResource is not a function 2019-09-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 ...
来源: Laya_社区 发布时间: 20190920
...this._rootSp.hitArea = new Laya.Rectangle(0, 0, 10000, 10000) this._rootSp.addChild(this.firstSp); Laya.stage.addChild(this._rootSp); } private MouseWheel(e: Laya.Event) { let xs = this.firstSp.scaleX; if (e.delta > 0) { xs = xs * 1.2; } else { xs /= 1.2; } this.firstSp.scale(xs, xs); } } new G...
来源: Laya_社区 发布时间: 20190314
...ateQuad(1,1)) let b:Laya.MeshSprite3D=a.clone() as Laya.MeshSprite3D scene.addChild(a) scene.addChild(b) 附件 : --> 2019-09-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 如果升级...
来源: Laya_社区 发布时间: 20190925
...lBarSkin="comp/vscroll.png"; panel.width=300; panel.height=300; Laya.stage.addChild(panel); panel.addChild(img); panel.vScrollBar.min=1; panel.vScrollBar.max=500; panel.vScrollBar.value=panel.vScrollBar.max; Laya.timer.frameLoop(12,this,onLoop); } private function onLoop():void { trace(panel.vScroll...
来源: Laya_社区 发布时间: 20161103
...同来自: var p:HTMLIframeElement = new HTMLIframeElement(); Laya.stage.addChild(p); p.href = "http://10.10.20.5:8899/test.html"; p.y = 200;参考下以上方式! 2017-05-22 0 6 分享 微博 QZONE 微信 189*****192 赞同来自: 可以加载出来了 加载 画布上面div 上面 目前 ifr...
来源: Laya_社区 发布时间: 20170522