大约有 2,479 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0064 秒)
Laya_社区(2000) Laya3.0_api(129) Laya2.0_文档(109) laya_api(84) Laya2.0_api(82) Laya_示例(36) Laya3.0_文档(24) Laya2.0_示例(15)
... laya.display.Stage; import laya.filters.ColorFilter; import laya.resource.Texture; import laya.utils.Browser; import laya.utils.Handler; import laya.webgl.WebGL; public class Main { private const ApePath:String = "res/img/monkey1.png"; private var apeTexture:Texture; public function Main() { // 不...
来源: Laya2.0_文档 发布时间: 20210715
...',Handler.create(this,onLoaded)); } private function onLoaded():void { var texture:Texture=Loader.getRes('logo.png'); var sp:Sprite=new Sprite(); sp.graphics.clear();//把上次的绘制清除 sp.graphics.drawTexture(texture); Laya.stage.addChild(sp); } 2017-05-05 0 0 分享 微博 QZONE 微信 为...
来源: Laya_社区 发布时间: 20170505
...效果,但是发现canvas绘图的bug太多 我想做几张图片(或texture)的混合效果,例如defference,试了几个方法都失败了。心累了,还请官方帮忙一下。看到底是怎么回事。 首先我试了设置Sprite的blendMode,发现没有效果, 然后我试了H...
来源: Laya_社区 发布时间: 20210627
...text":No function was found that matched the signature provided 在this.texture2D.loadImageSource(this.cav);报错 this.cav = Laya.Browser.createElement("canvas"); this.cav.width = 256; this.cav.height = 256; var cxt = this.cav.getContext("2d"); cxt.fillStyle = 'rgb(' + '220' + ',' + '5' + '...
来源: Laya_社区 发布时间: 20200714
... DrawTrianglesCmd matrix : Matrix 缩放矩阵。 DrawTrianglesCmd texture : Texture 纹理。 DrawTrianglesCmd uvs : Float32Array UV数据。 DrawTrianglesCmd vertices : Float32Array 顶点数组。 DrawTrianglesCmd x : Number X轴偏移量。 DrawTrianglesCmd y : Number Y轴偏...
来源: Laya2.0_api 发布时间: 20190513
...Templet srcBoneMatrixArr : Array 存放原始骨骼信息 Templet subTextureDic : Object 存放纹理数据 Templet TEMPLET_DICTIONARY : Object[static] Templet tfArr : Array transform数据 Templet yReverseMatrix : Matrix 反转矩阵,有些骨骼动画要反转才能显示 TempletP...
来源: laya_api 发布时间: 20170929
...nGL ES的压缩纹理有常见的如下几种实现: 1)ETC1(Ericsson texture compression) 2)PVRTC (PowerVR texture compression) 3)ATITC (ATI texture compression) 4)S3TC (S3 texture compression) 有没有好工具可以一次输出所有格式纹理 2018-01-31 添加评论 免费帖 --> ...
来源: Laya_社区 发布时间: 20180131
...eMat: Laya.StandardMaterial = new Laya.StandardMaterial(); planeMat.diffuseTexture = Laya.Texture2D.load("../../res/threeDimen/texture/layabox.png"); planeMat.albedo = new Laya.Vector4(0.9, 0.9, 0.9, 1); plane.meshRender.material = planeMat; var boxCollider = plane.addComponent(Laya.BoxCollider) as ...
来源: Laya_社区 发布时间: 20180820
...D UnityPlugin 1.7.16 在Unity5.6.5f1版本导出场景,我设置场景的TextureSetting 的 Non-PNG|JPG 目标类型导出png/jpg 会提示格式转换失败,是什么原因吗? 2018-09-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...
来源: Laya_社区 发布时间: 20180907
... laya.display.Stage; import laya.resource.HTMLCanvas; import laya.resource.Texture; import laya.ui.Image; import laya.utils.Handler; import laya.webgl.WebGL; public class LayaAirDemo { private var img:Image; public function LayaAirDemo() { Laya.init(800, 600, WebGL); Laya.stage.alignV = Stage.ALIGN_...
来源: Laya_社区 发布时间: 20170704