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

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

231. laya.components.CommonScript_API3.0 [ 70%]

...ors awaked destroyed enabled hideFlags id isSingleton Methods _initialize _setOwner destroy hasHideFlag onAdded onAwake onDestroy onDisable onEnable onLateUpdate onPostRender onPreRender onReset onStart onUpdate Constructors constructor new CommonScript(): CommonScript Overrides Component.constructo...

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

232. laya.d3.core.VRCamera [ 70%]

... replaceChild(newNode:Node, oldNode:Node):Node 替换子节点。 Node ResetProjectionMatrix():voidBaseCamera setChildIndex(node:Node, index:int):Node 设置子节点的索引位置。 Node timerLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true, jumpFrame:B...

来源: laya_api 发布时间: 20170929

233. laya.physics.joint.WeldJoint [ 70%]

...blic Methods MethodDefined By destroy():void 销毁组件 Component onReset():void 重置组件参数到默认值,如果实现了这个函数,则组件会被重置并且自动回收到对象池,方便下次复用 如果没有重置,则不进行回收复用 此方法为虚方法,使用...

来源: Laya2.0_api 发布时间: 20190513

234. 分享:图集资源做位图文本的工具类(知道fontclip组件的可以略过了,之前一直没注意到这个组件) [ 70%]

... this._align = align; this._padding = padding; } /** * 字间距 */ public set padding(v: number){ if(v === this._padding){return;} this._padding = v; if(this.text){ this.createFnt(this.text); } } public get padding(): number{ return this._padding; } /** * 文本内容 */ public set text(v: string) ...

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

235. laya.ui.Image [ 69%]

...e(如果父节点手动设置为false,则不会更改)。 Sprite mouseThrough : Boolean = false 鼠标事件与此对象的碰撞检测是否可穿透。碰撞检测发生在鼠标事件的捕获阶段,此阶段引擎会从stage开始递归检测stage及其子对象,直到找到命中的...

来源: laya_api 发布时间: 20170929

236. laya.ui.Slider [ 69%]

...e(如果父节点手动设置为false,则不会更改)。 Sprite mouseThrough : Boolean = false 鼠标事件与此对象的碰撞检测是否可穿透。碰撞检测发生在鼠标事件的捕获阶段,此阶段引擎会从stage开始递归检测stage及其子对象,直到找到命中的...

来源: Laya2.0_api 发布时间: 20190513

237. laya.d3.core.particleShuriKen.ShurikenParticleRenderer [ 69%]

...tmapIndex : int 获取光照贴图的索引。 BaseRender lightmapScaleOffset : Vector4 获取光照贴图的缩放偏移。 BaseRender material : BaseMaterial 返回第一个实例材质,第一次使用会拷贝实例对象。 BaseRender materials : Vector.<BaseMaterial> 获取潜拷贝...

来源: Laya2.0_api 发布时间: 20190513

238. laya.d3.core.Camera [ 69%]

... replaceChild(newNode:Node, oldNode:Node):Node 替换子节点。 Node ResetProjectionMatrix():voidBaseCamera setChildIndex(node:Node, index:int):Node 设置子节点的索引位置。 Node timerLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true, jumpFrame:B...

来源: laya_api 发布时间: 20170929

239. laya.d3.core.SkinnedMeshRenderer [ 68%]

...tmapIndex : int 获取光照贴图的索引。 BaseRender lightmapScaleOffset : Vector4 获取光照贴图的缩放偏移。 BaseRender  localBounds : Bounds 获取局部边界。 SkinnedMeshRenderer material : BaseMaterial 返回第一个实例材质,第一次使用会拷贝实例对象。 B...

来源: Laya2.0_api 发布时间: 20190513

240. 重写X Y在android studio里运行会变成00 [ 68%]

...0; xSprite.y = 200; 5 然后再XSprite这个类里将XY复写比如 public set x(val: number) { this._x = val; } public get x(): number { return this._x; } public set y(val: number) { this._y = val; } public get y(): number { return this.__y; } 然后运行 会发现坐标显示正常 但是打包...

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