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

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

41. LayaRender渲染含有多个part的Body存在Bug [ 54%]

.../2, h/2); sp.graphics.fillTexture(text, 0, 0, w, h); partA = Matter.Bodies.rectangle(x, y, w, h, { isStatic:true, layaSprite:sp, });  sp = new Laya.Sprite(); w = size/5, h=size; sp.pivot(w/2, h/2); sp.graphics.fillTexture(text, 0, 0, w, h); partB = Matter.Bodies.rectangle(x, y, w, h, { isStatic:tru...

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

42. 人物行走图动画 [ 53%]

...tion = laya.display.Animation; var Stage     = laya.display.Stage; var Rectangle = laya.maths.Rectangle; var Loader    = laya.net.Loader; var Browser   = laya.utils.Browser; var Handler   = laya.utils.Handler; var WebGL     = laya.webgl.WebGL; var AniConfPath = "res/1.json"; Laya.load...

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

43. Animation 使用疑问 [ 48%]

...       this.aniBody.play(0, loopPlay, key);         var bound: Laya.Rectangle = this.aniBody.getBounds();         this.aniBody.pivot(bound.width / 2, bound.height / 2);         if (direction < 0) {             this.aniBody.scaleX = -1;         } else {             t...

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

44. 【简单跑酷--JS版】---Lv.5 玩家踩地板 [ 39%]

... var Loader = laya.net.Loader; var Animation = laya.display.Animation; var Rectangle = laya.maths.Rectangle; var Event = laya.events.Event; var Pool = laya.utils.Pool; var Browser = laya.utils.Browser; var Stat = laya.utils.Stat; var SoundManager = laya.media.SoundManager; var Pool = laya.utils.Pool...

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

45. laya.d3.core.scene.Scene3D_API3.0 [ 38%]

...于本对象绘图区域内时,才算命中,而与对象宽高和值为Rectangle对象的hitArea属性无关。如果sprite.hitArea值是HitArea对象,表示显式声明了此对象的鼠标事件响应区域,而忽略对象的宽高、mouseThrough属性。 影响对象鼠标事件响应区...

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

46. LayaAir能做RPG吗?不要问我能不能,因为我已经在做 - 杀意来袭 [ 37%]

...map.viewPortY;             }             var t: any = new Laya.Rectangle(0, 0, this.width, this.height);             if (this.x + t.width / 2 < 0 || this.x - t.width / 2 > Laya.Browser.width || this.y < 0 || this.y - t.height > Laya.Browser.height) {             ...

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

47. runTime使用(ActionScript-IDE篇(AS3)-组件化开发相关) [ 37%]

... { import laya.display.Sprite; import laya.events.Event; import laya.maths.Rectangle; import laya.ui.Button; import laya.ui.Image; import laya.utils.Tween; /** *ImageRunTime逻辑类 * @author mengjia * */ public class ImageRunTime extends Button { //缩放时间100毫秒 public var scaleTime:int = ...

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

48. 2D性能优化 · LayaAir3.0文档 · LAYABOX [ 34%]

...aya.Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调用。 设置容器的autoSize为true。 var sp=new Laya.Sprite(); sp.auto...

来源: Laya3.0_文档 发布时间: 20241014

49. 图集动画(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 34%]

...mport laya.display.Animation; import laya.display.Stage; import laya.maths.Rectangle; import laya.net.Loader; import laya.utils.Browser; import laya.utils.Handler; import laya.webgl.WebGL; public class HelloLayabox { private const AniConfPath:String = "../../../../res/role.atlas"; private var roleAn...

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

50. 3D中摄像机绕物体旋转该如何实现? [ 33%]

...max: number) { this.min = min; this.max = max; } } /// <summary> /// Rectangle area on plane. /// </summary> class PlaneArea { /// <summary> /// Center of area. /// </summary> public center: Transform3D; /// <summary> /// Width of area. /// </summary> public width...

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