大约有 1,062 项符合查询结果, 库内数据总量为 31,580 项。 (搜索耗时: 0.0050 秒)
Laya3.0_api(409) Laya2.0_api(226) Laya_社区(219) laya_api(168) Laya2.0_文档(20) Laya3.0_文档(10) Laya2.0_示例(7) Laya_示例(3)
...ring search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/display/cmd/RestoreCmd" RestoreCmd Class RestoreCmd 恢复命令,和save配套使用 Hierarchy RestoreCmd Index Properties ID Methods recover ...
来源: Laya3.0_api 发布时间: 20231115
...ring search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/d3/shader/Trail/TrailShaderInit" TrailShaderInit Class TrailShaderInit Hierarchy TrailShaderInit Index Methods init Methods Static init init(): ...
来源: Laya3.0_api 发布时间: 20231115
...ring search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/display/cmd/SaveCmd" SaveCmd Class SaveCmd 存储命令,和restore配套使用 Hierarchy SaveCmd Index Properties ID Methods recover Propertie...
来源: Laya3.0_api 发布时间: 20231115
...ring search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/d3/core/trail/TrailFilter" TrailFilter Class TrailFilter TrailFilter 类用于创建拖尾过滤器。 Hierarchy TrailFilter Index Constructors ...
来源: Laya3.0_api 发布时间: 20231115
...ring search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/d3/shader/postprocess/ACES/ACESShaderLib" ACESShaderLib Class ACESShaderLib Hierarchy ACESShaderLib Index Methods init Methods Static init init(...
来源: Laya3.0_api 发布时间: 20231115
...ring search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/maths/Point" Point Class Point Point 对象表示二维坐标系统中的某个位置,其中 x 表示水平轴,y 表示垂直轴。 Hierarch...
来源: Laya3.0_api 发布时间: 20231115
...ring search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/d3/component/Animator/AnimatorResource" AnimatorResource Class AnimatorResource Hierarchy AnimatorResource Index Methods getAnimatorResource Met...
来源: Laya3.0_api 发布时间: 20231115
...不能只处理get或set,如: class A { protected _id:number = 1; public get id():number { return this._id } public set id(value:number){ this._id = vaule; } } class B extends A { public set id(value:number){ this._id = value + 1; } } class C extends A { public get i...
来源: Laya_社区 发布时间: 20161109
...le中对该事件进行监听package { import laya.events.EventDispatcher; public class Mod extends EventDispatcher { public function Mod() { super(); } private static var _instance:Mod; public static function get index():Mod { return _instance ||= new Mod(); } public function init():void { Mod.even...
来源: Laya_社区 发布时间: 20161218
...自动安装,这样只需要访问apk就可以解决了,安装apk: public static boolean install(Context context, String filePath) { Intent i = new Intent(Intent. ACTION_VIEW); File file = new File(filePath); if (file != null && file.length() > 0 && file.exists() && ...
来源: Laya_社区 发布时间: 20160104