大约有 51 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0057 秒)
Laya_社区(29) Laya2.0_示例(7) Laya_示例(7) Laya2.0_文档(3) Laya3.0_api(2) laya_api(1) Laya2.0_api(1) Laya3.0_文档(1)
.../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
...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
... 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
... 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
...于本对象绘图区域内时,才算命中,而与对象宽高和值为Rectangle对象的hitArea属性无关。如果sprite.hitArea值是HitArea对象,表示显式声明了此对象的鼠标事件响应区域,而忽略对象的宽高、mouseThrough属性。 影响对象鼠标事件响应区...
来源: Laya3.0_api 发布时间: 20231115
...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
... { 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
...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
...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
...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