大约有 82 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0046 秒)
...模型 var boxmesh=new Laya.BoxMesh(0.6, 0.6, 0.6); var box = new Laya.MeshSprite3D(boxmesh); scene.addChild(box); box.transform.translate(_position); box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false); var material = new Laya.StandardMaterial(); material.diffuseTexture = Laya.Texture2D....
来源: Laya_社区 发布时间: 20181126
...ort { ui } from "./../ui/layaMaxUI"; import Scene3D = Laya.Scene3D; import Sprite3D = Laya.Sprite3D; /** * 本示例采用非脚本的方式实现,而使用继承页面基类,实现页面逻辑。在IDE里面设置场景的Runtime属性即可和场景进行关联 * 相比脚本方式,继承式...
来源: Laya_社区 发布时间: 20190618
...thographic = true; camera.orthographicVerticalSize = 5; this.effRes = Laya.Sprite3D.load(resUrl); this.effRes.on(Laya.Event.HIERARCHY_LOADED, this, function(){ this.eff1 = scene.addChild( Laya.Sprite3D.instantiate(this.effRes)); this.eff1.transform.position = new Laya.Vector3(0,0,50); this.eff1.tran...
来源: Laya_社区 发布时间: 20180503
...osition = new Laya.Vector3(0,4,15); //载入并显示3D建筑 var map:Laya.Sprite3D = Laya.Sprite3D.load("New Scene.lh"); scene.addChild(map); //map.transform.localPosition = new Laya.Vector3(0,-4, -15); //控制摄像头移动 camera.addComponent(CameraMoveScript); } } new GameMain(); uni...
来源: Laya_社区 发布时间: 20170319
...lic function LayaSample() { //初始化引擎 Laya.init(1136, 640); var sp:Sprite = new Sprite(); var xhr:HttpRequest = new HttpRequest(); xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.send("res/monkey2.png","","get","arraybuffer"); } private function co...
来源: Laya_社区 发布时间: 20171011
用ide打包后的图片,Texture显示不出来? Sprite和Image可以显示出来,Texture报错、、、说找不到图片 代码 : Laya.loader.load([{url: "comp.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); function onLoaded(){ var aa = new Sprite(); Laya.sta...
来源: Laya_社区 发布时间: 20171226
WebGl下 graphics画出东西后 移动sprite 不起效果 开启 webGl 先用graphics 画出任意东西,然后移动这个sprite 不起效果 2017-07-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 6 个回复 cuixueyi...
来源: Laya_社区 发布时间: 20170711
... 个回复 Laya_XS 赞同来自: /** * <p>绘制 当前<code>Sprite</code> 到 <code>Canvas</code> 上,并返回一个HtmlCanvas。</p> * <p>绘制的结果可以当作图片源,再次绘制到其他Sprite里面,示例:</p> * * var htmlCanvas...
来源: Laya_社区 发布时间: 20180826
...erInfo; import flash.display.MovieClip; import flash.display.Sprite; import flash.display.StageAlign; import flash.display.StageScaleMode; import flash.events.Event; import flash.net.URLRequest; import flash.system.ApplicationDomain; import fla...
来源: Laya_社区 发布时间: 20170317
... * 绘制开放域数据 * @param {*} layout 用来显示开放域数据的Sprite */ function drawOpenData(layout: Laya.Sprite) { clearDrawOpenData(layout); var sp: Laya.Sprite = new Laya.Sprite(); sp.width = layout.width; sp.height = layout.height; var openDataContext = wx.getOpenDataContext(); var...
来源: Laya_社区 发布时间: 20190328