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

大约有 2,482 项符合查询结果, 库内数据总量为 31,671 项。 (搜索耗时: 0.0065 秒)

681. 求详细的打包教程 [ 80%]

...本直接项目中设置,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

682. Laya3D [ 80%]

...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

683. laya.particle.Particle2D [ 80%]

...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

684. laya.ui.MoreGame [ 80%]

...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

685. 二次开发 · LayaAir3.3 · 引擎文档 · LAYABOX [ 80%]

...,使用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

686. AppStore提审被据 [ 80%]

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

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

....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

688. 绘制圆形与扇形(ActionScript-LayaAir基础篇(AS3)-矢量图) [ 79%]

...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

689. Android用java原生的切出事件没用 [ 79%]

...触发,下面给出大概的代码           @Override         public void onActivityStarted(Activity activity) {             //这是切入事件             ConchJNI.RunJS("xxx");         }        @Override         public void onActivityStopped(Activity activity)...

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

690. LayaFlash把socket转成webSocket后监听不到connect事件(已解决) [ 79%]

...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