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

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

61. HTMLCanvas Laya.stage.addChild(HTMLCanvas); 挂载到舞台报错 [ 88%]

...as(100, 100, 0, 0);//把精灵绘制到canvas上面          * var texture:Texture = new Texture(htmlCanvas);//使用htmlCanvas创建Texture          * var sp:Sprite = new Sprite().pos(0, 200);//创建精灵并把它放倒200位置          * sp.graphics.drawTexture(texture);...

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

62. Sprite-显示图片 [ 88%]

...ya.stage.addChild(ape); ape.loadImage(monkey1Path); // 方法2:使用drawTexture Laya.loader.load(monkey2Path, Laya.Handler.create(this, function () { let monkey2 = Laya.loader.getRes(monkey2Path); let ape2 = new Laya.Sprite(); Laya.stage.addChild(ape2); ape2.graphics.drawTexture(monkey2, 100, 0);...

来源: Laya2.0_示例 发布时间: 20241124

63. laya.gltf.glTFUtils_API3.0 [ 88%]

...mponentsNum getAnimationRoot getAttributeNum getBufferwithAccessorIndex getTextureConstructParams getTextureFilterMode getTextureFormat getTextureMipmap getTexturePropertyParams getTextureWrapMode getTexturewithInfo pickMeshMaterials Properties Static Extensions Extensions: {} Defined in laya/gltf/g...

来源: Laya3.0_api 发布时间: 20231102

64. 分享:截屏! [ 88%]

...Event;     import laya.resource.HTMLCanvas;     import laya.resource.Texture;     import laya.utils.Browser;     import laya.webgl.WebGL;          public class LayaAirDemo {         private var sp:Sprite ;         public function LayaAirDemo() {             //...

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

65. hBox使用问题 [ 88%]

...nction onAssetLoaded():void { for(var i:int=0;i<picAy.length;i++) { var texture:Texture= Loader.getRes(picAy); var ape:Sprite = new Sprite; //ape.x=i*(stageWidth/4) //Tween.to(ape, { x : i*(stageWidth/4) },1500,Ease.sineOut); var bl:Number=texture.width/texture.height ape.graphics.drawTexture(tex...

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

66. Laya2.0 的3d截图 [ 88%]

...     let h: number = gl.drawingBufferHeight;         let texture2d: Laya.Texture2D = new Laya.Texture2D(w,h,Laya.TextureFormat.R8G8B8A8,false,false);         texture2d.setPixels(pixels);         let tex: Laya.Texture = new Laya.Texture(texture2d);     ...

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

67. [LayaAirIDE3]在一定条件下,设置colorFilter的contrast没用 [ 87%]

...置contrast为-100后会什么都不发生: 首先给一个sprite赋予texture 然后给sprite赋予1个以上的filter 最后用代码,先读取sprite上同路径的texture,然后设置contrast为-100 发现根本没用 这几个条件:“sprite上设置了texture”,“sprite上有1个...

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

68. 代码创建精灵监听不到事件? [ 87%]

...件? var boxstr = "ui/buildsmall.png"; var box = new Laya.Sprite(); var texture = Laya.loader.getRes(boxstr); box.graphics.drawTexture(texture); var arr = {data: StorageRoom.map_storageData[0][0],tag:0}; box.on(Laya.Event.MOUSE_UP,this,this.onclick,[arr]);   var _proto = StorageUILayer.prototype;...

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

69. layaAir如何实现for循环加载多张图片,并且通过事件按比例缩小 [ 87%]

...       }         }         private function onAssetLoaded(texture:Texture):void         {             var ape:Sprite = new Sprite;             ape.x=(apesCtn._childs.length)*(stageWidth/4)             var bl:Number=texture.width/texture.height     ...

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

70. 滤镜-颜色滤镜 [ 87%]

...ya.Sprite; var Stage = Laya.Stage; var ColorFilter = Laya.ColorFilter; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var ApePath = "../../res/apes/monkey2.png"; var apeTexture; (function() { // 不支持WebGL时自动切换至Canvas Laya....

来源: Laya_示例 发布时间: 20241124