大约有 1,536 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0061 秒)
...5); api_list_view.dataSource = createAPIList(); Laya.stage.addChild(api_list_view); } 2018-07-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 问题描述具体一...
来源: Laya_社区 发布时间: 20180724
... Laya.Scene3D(); //将场景加到舞台上 this.scene = scene; Laya.stage.addChild(scene); //添加方向光 var directionlight: Laya.DirectionLight = scene.getChildByName( "Directional Light" ) as Laya.DirectionLight; this.directionlight = directionlight; //加入子層人物腳色到舞台 var li...
来源: Laya_社区 发布时间: 20200917
...3"); sp.on(Event.CLICK,this, onsp); Laya.stage.addChild(sp); } private function onsp(e:Event){ console.log("监听到按钮"+e.target); console.log((e.target.getChildAt(0) as Sprite).name); console.log(e.t...
来源: Laya_社区 发布时间: 20170330
...aded)); function onLoaded(){ var aa = new Sprite(); Laya.stage.addChild(aa); var texture = new Laya.Texture(); texture.load('comp/zzw.png' ); setTimeout( function(){ aa.graphics.drawTexture(texture,0,0); }, 1000 ) } 3Q 2017-12-26 添加评论 免费...
来源: Laya_社区 发布时间: 20171226
...sePickingScene.super(this); this.camera = new Laya.Camera(0,0.1,100); this.addChild(this.camera); this.camera.clearFlag = Laya.BaseCamera.CLEARFLAG_SKY; this.skyBox = new Laya.SkyBox(); this.camera.sky = this.skyBox; this.skyBox.textureCube = Laya.TextureCube.load("skyBox/skyCube.ltc"); this.camera....
来源: Laya_社区 发布时间: 20170323
...rite=new Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); Laya.stage.addChild(sp); Tween.to(sp,{x:300,y:300,alpha:0.5},1000,null,Handler.create(this,function():void { sp.destroy(); })); Complete事件你没写错,就是那么写的 2017-06-08 0 0 分享 微博 QZONE 微信 ohkei - as3...
来源: Laya_社区 发布时间: 20170608
...e.getChildAt(0).getChildAt(0) as SkinnedMeshSprite3D; // animationNodeTemp.addChild(effect); body.addComponent(SkinAnimations); this.skinAnimation = body.getComponentByType(SkinAnimations) as SkinAnimations; this.skinAnimation._initialize(body); // var tempet:AnimationTemplet = new AnimationTemplet(...
来源: Laya_社区 发布时间: 20170819
... = ani_border.pivotX = 245; ani_border.load("swf/planet/border.swf",true); addChild(ani_border); 2018-05-29 3 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 苍蝇也是鸟 赞同来自: 只要不是在同一时间...
来源: Laya_社区 发布时间: 20180529
... { //实例UI界面 var testView:TestPageUI = new TestPageUI(); Laya.stage.addChild(testView); pie = new Sprite(); Laya.stage.addChild(pie); Laya.timer.frameLoop(1,this,onLoop); } private var curAngle:Number = 0; private function onLoop():void { pie.graphics.drawPie(300,300,100,curAngle,curAng...
来源: Laya_社区 发布时间: 20180725
...法让他不穿透,比如2d游戏中,我可以让金黄色的人物后addChild()到舞台就行了,这样黄色人物就不会被先addChild()的角色遮挡; 介绍一下如图所示的场景属性设置,摄像机是正交投影,所有人物模型朝向是自己局部坐标中的Z朝...
来源: Laya_社区 发布时间: 20190822