大约有 976 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0060 秒)
Laya_社区(693) Laya3.0_api(68) Laya2.0_api(59) laya_api(56) Laya2.0_文档(47) Laya_示例(27) Laya3.0_文档(16) Laya2.0_示例(10)
...as,加个延迟或者点击行为,譬如 package { import laya.display.Sprite; import 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; pub...
来源: Laya_社区 发布时间: 20170704
...ure2D和texture的话,就程序动态生成。 1.加载成texture 2.用Sprite画出来 3.sp转url; var htmlCanvas = sp.drawToCanvas(width,height,0,0) var canvas = htmlCanvas.getCanvas(); var base64 = canvas.toDataURL("image/png"); var blob = dataURLtoBlob(base64); var url = Browser.window.URL.cr...
来源: Laya_社区 发布时间: 20181221
...列,animationKey会被设为true 即animationKey为true,就使用TileAniSprite来做显示,把动画序列根据时间画到TileAniSprite上 author ... Hierarchy TileTexSet Index Properties animationTotalTime durationTimeArray gid isAnimation offX offY texture textureArray Methods addAniSprite c...
来源: Laya3.0_api 发布时间: 20231115
...| Events Packagelaya.uiClasspublic class ImageInheritanceImage Component Sprite Node EventDispatcher Object Image 类是用于表示位图图像或绘制图形的显示对象。 Image和Clip组件是唯一支持异步加载的两个组件,比如img.skin = "abc/xxx.png",其他UI组件均不支...
来源: laya_api 发布时间: 20170929
...点击Dialog之外的区域关闭弹框 纹理平铺怎么做 如何设置Sprite的宽高和点击区域? iphoneX环境下新手引导的抠图透明区域为黑色,其它机型都是正常的。 ios14系统下 blendMode='lighter' 图片异常 Texture图片能否进行翻转? matter中layaspri...
来源: Laya_社区 发布时间: 20170925
...onstants Packagelaya.d3.core.sceneClasspublic class SceneInheritanceScene Sprite Node EventDispatcher ObjectImplements ISubmit, laya.resource.ICreateResource BaseScene 类用于实现场景。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By a...
来源: laya_api 发布时间: 20170929
...不要问我能不能,因为我已经在做 - 杀意来袭 如何设置Sprite的宽高和点击区域? 救命!canvas定位后 点击区域偏移,求大大们解答 ui list 里面的元素不能点击两次 循环依赖不能运行 Circular dependency: iphoneX环境下新手引导的抠图透...
来源: Laya_社区 发布时间: 20190829
...ild.x + apeTexture.width; grayApe.y = secondChild.y; } createApe() { const Sprite = Laya.Sprite; let ape = new Sprite(); Laya.stage.addChild(ape); apeTexture = Laya.loader.getRes(apePath); ape.graphics.drawTexture(apeTexture); return ape; } } new Filters_Color();module laya { import Sprite = Laya.Sp...
来源: Laya2.0_示例 发布时间: 20241124
...s/background.png'); //创建一个bg显示对象 var bg = new laya.display.Sprite(); //将上面的texture纹理绘制到bg图像里面 bg.graphics.drawTexture(texture, 0, 0); //将bg添加到舞台 Laya.stage.addChild(bg); 我们再次刷新页面看看有什么效果 嗯 看来图片出来了...
来源: Laya_社区 发布时间: 20160722
...候,把a的纹理取出来重新绘制,但是好像没有效果 var a:Sprite = new Sprite(); var count:int = 0; for(var i:int=0; i<200; i++) { for(var j:int=0; j<100; j++) { if(count == 10000) { var htmlCanvas:HTMLCanvas = a.drawToCanvas(width,height,0,0); var texture:Texture = new Texture...
来源: Laya_社区 发布时间: 20181113