大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0075 秒)
Laya_社区(2450) Laya3.0_api(673) Laya2.0_api(357) laya_api(289) Laya2.0_文档(271) Laya_示例(157) Laya2.0_示例(116) Laya3.0_文档(25)
Sprite graphics的显示比例问题 function createCharacter(skin) { var character = new Laya.Sprite(); character.loadImage(skin, 0, 0, 200, 200, Laya.Handler.create(this, function () {console.log('KO!~'); })); character.graphics.drawLine(0, 200, 200, 0, "#ff0000", 1); character.graphics.drawLine(...
来源: Laya_社区 发布时间: 20170828
...维码真机调试也是如此。 TypeError: this.cxt.fillText is not a function this.cxt.fillText(text, this.cav.width / 2, this.cav.height); ^^ TypeError: this.cxt.fillT...
来源: Laya_社区 发布时间: 20200409
...取器 * @param {头像Url} headUrl * @param {显示头像Img} showImg */ function getWXHead(headUrl, showImg){ if(headCache[headUrl] != undefined){ showImg.skin = (headCache[headUrl]); }else{ // 创建请求 let httpRequest = new Laya.HttpRequest(); httpRequest.once(Laya.Event.COMPLETE, this, (data...
来源: Laya_社区 发布时间: 20190430
...xture2D.load("res/threeDimen/Physics/grass.png", Laya.Handler.create(this, function(tex:Laya.Texture2D) { planeMat.albedoTexture = tex; })); //设置纹理平铺和偏移 planeMat.tilingOffset = new Laya.Vector4(10, 10, 0, 0); //设置材质 plane.meshRenderer.material = planeMat; //平面添加物...
来源: Laya2.0_文档 发布时间: 20210715
...); Texture2D.load("res/threeDimen/Physics/grass.png", Handler.create(null, function(tex:Texture2D):void { planeMat.albedoTexture = tex; })); //设置纹理平铺和偏移 planeMat.tilingOffset = new Vector4(10, 10, 0, 0); //设置材质 plane.meshRenderer.material = planeMat; //平面添加物理碰...
来源: Laya2.0_文档 发布时间: 20210714
...oPage2(): void { my.redirectTo({ url: "/subpackage1/page2/index", success: function () { console.log("success") }, fail: function (err) { console.log("2222", err) } }) } ``` 注意:在加载资源的时候,分包文件夹名称前也需要加“ / ” #### 2.2 资源分包 资源分包适合页...
来源: Laya2.0_文档 发布时间: 20210715
...过方法: TextTexture.as 替换这两个函数 public function discard():void { Laya.stage.setGlobalRepaint(); this.destroy(); } public static function getTextTexture(w:int, h:i...
来源: Laya_社区 发布时间: 20190515
...2.6\libs\iflash\src\iflash\events\EventManager.as 找到方法 public function acceptSystemMouseEvent(event:*):void { _currentSysEvent = event; event.preventDefault(); //添加这句话即可,再发布即可。 2016-09-19 2 1 分享 微博 QZONE 微信 q12647 赞同来自: cuixuey...
来源: Laya_社区 发布时间: 20160831
...值也看过了,为3 请问有什么问题吗? 代码如下: private function startDemoTest():void { var bmd:BitmapData = new BitmapData(960, 640, false, 0xcccccc); var bmp:Bitmap = new Bitmap(bmd); bmp.width = 960; bmp.height = 640; var sp:Sprite = new Sprite(); sp.addChild(bmp); this.addChil...
来源: Laya_社区 发布时间: 20160122
...代码如下 var interactionArea; var ape; var mouseX = 0; _proto.onInit = function(){ this.guaSpr.cacheAs = "bitmap"; ape = new Sprite(); this.guaSpr.addChild(ape); ape.loadImage("WBSign/img_guakaituceng.png"); ape.on(Event.MOUSE_MOVE, this, onMouseMove); interactionArea = new Sprite(); interaction...
来源: Laya_社区 发布时间: 20170615