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

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

31. matter中更换texture [ 92%]

matter中更换texture 我想在两个body碰撞的时候替换其中一个的texture,但是下述代码确不起作用. 能够确定的是bodyB.render.sprite.texture这个属性的值的确变了,但是不起作用,图片没变,好像没有更新. //事件回调---collisionStart Matter.Event...

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

32. 鼠标交互-Hold [ 92%]

... Sprite = Laya.Sprite; var Stage = Laya.Stage; var Event = Laya.Event; var Texture = Laya.Texture; var Browser = Laya.Browser; var Ease = Laya.Ease; var Handler = Laya.Handler; var Tween = Laya.Tween; var WebGL = Laya.WebGL; const HOLD_TRIGGER_TIME = 1000; const apePath = "../../res/apes/monkey2.png...

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

33. texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 [ 92%]

texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 export class Texture2dTest { private sprite3D:Laya.Sprite3D; private readonly AllPng:string[] = ["pic-001.png","output-06.png"]; private texture:Laya.Texture2D; private box; constructor(){ Laya3D.init(0, 0); Laya.s...

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

34. 画了一个封闭的曲线,获取鼠标点击处的像素,为何坐标对不上导致拿不到正确位置的Texture[ 92%]

...标点击处的像素,为何坐标对不上导致拿不到正确位置的Texture? package { import laya.display.Sprite; import laya.display.Stage; import laya.events.Event; import laya.resource.HTMLCanvas; import laya.resource.Texture; import rain.core.StageReferance; public class Main { private...

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

35. 克隆sprite [ 92%]

...什么克隆一个对象啊?  在下面的“   tempSpr2.graphics.drawTexture(tempSpr.texture, 0, 0, tempSpr.width, tempSpr.height);”中 tempSpr.texture 是空的 if (data && data.items != []) {             let tempSpr: Sprite = new Sprite();             let tempImg: Lay...

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

36. 加载-销毁Texture使用的图片资源 [ 92%]

... = "res/bg2.png", PathFly = "res/fighter/fighter.atlas"; class Loader_ClearTextureRes { constructor() { const Browser = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.cli...

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

37. Texture内存回收(ActionScript-2D进阶篇(AS3)-性能优化) [ 92%]

# Texture资源销毁 ```java package { import laya.display.Animation; import laya.display.Sprite; import laya.events.Event; import laya.events.Keyboard; import laya.utils.Stat; import laya.webgl.WebGL; public class ClearTextureResTest { private var sp:Sprite; public function ClearTextureResTest() {...

来源: Laya2.0_文档 发布时间: 20210714

38. Texture内存回收(ActionScript-2D进阶篇(AS3)-性能优化) [ 92%]

# Texture资源销毁 ```java package { import laya.display.Animation; import laya.display.Sprite; import laya.events.Event; import laya.events.Keyboard; import laya.utils.Stat; import laya.webgl.WebGL; public class ClearTextureResTest { private var sp:Sprite; public function ClearTextureResTest() {...

来源: Laya2.0_文档 发布时间: 20200929

39. 用ide打包后的图片,Texture显示不出来? [ 92%]

用ide打包后的图片,Texture显示不出来? Sprite和Image可以显示出来,Texture报错、、、说找不到图片   代码 : Laya.loader.load([{url: "comp.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); function onLoaded(){     var aa = new Sprite();     Laya.sta...

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

40. 关于bitmap的useNum属性 [ 92%]

...0 分享 微博 QZONE 微信 cuixueying 赞同来自: 这个值是指引用texture的数量,你的两个sprite引用的是同一个texture,所以最后的结果是1,这个没有问题,如果要释放texture,你首先要保证其他显示对象对他已经没有引用再去做销毁! 2017...

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