• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0075 秒)

1931. Sprite graphics的显示比例问题 [ 69%]

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

1932. 3D文本纹理demo问题 [ 69%]

...维码真机调试也是如此。  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

1933. 微信头像请求方式 [ 69%]

...取器 * @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

1934. 物理碰撞器(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 69%]

...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

1935. 物理碰撞器(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 69%]

...); 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

1936. 淘宝创意互动分包指南(TypeScript-小游戏适配文档-淘宝创意互动) [ 69%]

...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

1937. native上文本有多余线 [ 69%]

...过方法: TextTexture.as 替换这两个函数         public function discard():void {             Laya.stage.setGlobalRepaint();             this.destroy();         }                  public static function getTextTexture(w:int, h:i...

来源: Laya_社区 发布时间: 20190515

1938. iphone自带浏览器页面怎么锁定 [ 69%]

...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

1939. LayaBox如何多点触摸? [ 69%]

...值也看过了,为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

1940. 刮刮卡效果实现 [ 69%]

...代码如下 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