大约有 1,536 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0054 秒)
...a.display.Sprite = new laya.display.Sprite(); spr.texture = tx; Laya.stage.addChild(spr); spr.x = 300; spr.y = 100; var color:Array = ; color.push( 0, 0, 0, 0, 255, 0, 0, 0, 0, 255, 0, 0, 0, 0, 255, 0, 0, 0, 1, 0); var filter:ColorFilter = new ColorFilter(color); spr.filters = [filter]; 附件 : ...
来源: Laya_社区 发布时间: 20170825
...; spe.size(512, 512); Laya.stage.addChild(spe); spe.graphics.drawRect(0, 0, 515, 515, "#996633", "#333333"); spe.on(Event.MOUSE_DOWN, spe, onMouseDown); Laya.stage.on(Event.MOUSE_UP, this, onMous...
来源: Laya_社区 发布时间: 20170407
...ETE, this, function(){ var roleAni = roleTemp.buildArmature(1); Laya.stage.addChild(roleAni); }) roleTemp.loadAni('res/spine/knight/effect1.sk'); SK动画已经预加载了:Laya.loader.load(['res/spine/knight/effect1.png', 'res/spine/knight/effect1.sk'], Handler.create(this, init)); 2018-03-23 添...
来源: Laya_社区 发布时间: 20180323
... 菜鸟注意 ts 1.4 添加一盏灯光 var directionLight =scene.addChild(new Laya.DirectionLight()) as Laya.DirectionLight; directionLight.ambientColor = new Laya.Vector3(0.7, 0.6, 0.6); directionLight.specularColor = new Laya.Vector3(1.0, 1.0, 0....
来源: Laya_社区 发布时间: 20161012
....Prefab; let o:Laya.Button = prefab.create(); o.zOrder = 10000; Laya.stage.addChild(o); })); 但是如果要把状态也clone出来,并没有什么方便的方法。 2019-02-14 1 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新...
来源: Laya_社区 发布时间: 20190210
...(bmd); bmp.width = 960; bmp.height = 640; var sp:Sprite = new Sprite(); sp.addChild(bmp); this.addChildAt(sp, 0); Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT; sp.addEventListener(TouchEvent.TOUCH_BEGIN, onTouchBegin); } protected function onTouchBegin(event:TouchEvent):void { log(event.to...
来源: Laya_社区 发布时间: 20160122
....URL.basePath = "https://www.youyegame.cn/h5/LayaBat/"; var zombie = scene.addChild(Laya.Sprite3D.load("nvmushi.lh")); 2018-03-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 yek_theone 赞同来自: 附件中...
来源: Laya_社区 发布时间: 20180313
...rite=new Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); Laya.stage.addChild(sp); Browser.window.setInterval(function():void { sp.x+=5; },100); 2017-06-02 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 w445015385 相关问题 发...
来源: Laya_社区 发布时间: 20170523
... // mc.y = (Laya.stage.height) / 2; Laya.stage.addChild(mc); return mc; } 但是加载完成并没有播放一遍停在最后一帧,而是无线反复循环播放;动画已经设置成图形播放一次了,影片剪辑什么...
来源: Laya_社区 发布时间: 20170804
...vElement = Laya.HTMLDivElement; var textfiled = new HTMLDivElement(); this.addChild(textfiled); textfiled.pos(10, 10); textfiled.width = 890; textfiled.style.color = "#10922a"; textfiled.style.font = "黑体"; textfiled.style.fontSize = 30; textfiled.style.valign = "middle"; var clientName = "<sp...
来源: Laya_社区 发布时间: 20190222