大约有 2,482 项符合查询结果, 库内数据总量为 31,671 项。 (搜索耗时: 0.0065 秒)
Laya_社区(720) Laya3.0_api(672) Laya2.0_api(367) laya_api(298) Laya_示例(150) Laya2.0_示例(114) Laya2.0_文档(107) Laya3.0_文档(54)
...本直接项目中设置,Laya.stage.screenMode /**不更改屏幕。*/ public static const SCREEN_NONE:String = "none"; /**自动横屏。*/ public static const SCREEN_HORIZONTAL:String = "horizontal"; /**自动竖屏。*/ public static const SCREEN_VERTICAL:String = "vertical";2、加速器版本...
来源: Laya_社区 发布时间: 20160922
...Classes | Index | Frames No Frames Laya3DMethods PackageTop LevelClasspublic class Laya3DInheritanceLaya3D Object Laya3D 类用于初始化3D设置。 Public Methods MethodDefined By Laya3D() 创建一个 Laya3D 实例。 Laya3D _getMaterialTexturePath(path:String, urlVersion:String, ma...
来源: laya_api 发布时间: 20170929
...Frames Particle2DProperties | Methods | Events Packagelaya.particleClasspublic class Particle2DInheritanceParticle2D Sprite Node EventDispatcher Object Particle2D 类是2D粒子播放类 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By alpha...
来源: laya_api 发布时间: 20170929
...ames No Frames MoreGameProperties | Methods | Events Packagelaya.uiClasspublic class MoreGameInheritanceMoreGame View Scene Sprite Node EventDispatcher Object 游戏中心插件 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By active : Boole...
来源: Laya2.0_api 发布时间: 20190513
...,使用Android Studio打开项目,在类JSBridge中添加下列函数: public static String testString(String value) { Log.d("JSBridge", "java: " + value); return "LayaBox"; } public static double testNumber(double value) { Log.d("JSBridge", "java: " + value); return 512; } public static boolean...
来源: Laya3.0_文档 发布时间: 20250422
AppStore提审被据 碰到这个描述:This app invokes the non-public selector "SimulateCrash". It would be appropriate to remove this selector use before resubmitting for review. 查了下,应该是libJavaScriptCore.a和libbmalloc.a包含了,这个如何解决呢? 2018-02-17 添加评论...
来源: Laya_社区 发布时间: 20180217
....x = 100; 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
...a.display.Sprite; import laya.display.Stage; public class Sprite_DrawShapes { private var sp:Sprite; public function Sprite_DrawShapes() { Laya.init(500, 300); ...
来源: Laya2.0_文档 发布时间: 20210715
...触发,下面给出大概的代码 @Override public void onActivityStarted(Activity activity) { //这是切入事件 ConchJNI.RunJS("xxx"); } @Override public void onActivityStopped(Activity activity)...
来源: Laya_社区 发布时间: 20201226
...import flash.events.Event; import flash.net.Socket; public class TestWebSocket extends Sprite { public var s:Socket; public function TestWebSocket() { s = new Socket(); ...
来源: Laya_社区 发布时间: 20160810