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

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

141. [LayaAir 2.0] 如何用代码为Spirte添加2d物理特性 [ 52%]

...t rigid:Laya.RigidBody = panel.addComponent(Laya.RigidBody); rigid.type = 'static'; } 产生的效果是boll1会自由落体,但不会与挡板发生物理碰撞而是直接穿过挡板(如图1),请问要如何修改代码。 图1   附件 : --> 2019-04-28 添加评论 免费帖 --> 分享 ...

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

142. 性能测试-卡通人物2 [ 52%]

....text = Stat.FPS.toString(); } } } class Character extends Sprite { public static WIDTH: number = 110; public static HEIGHT: number = 110; private speed: number = 5; private bloodBar: Sprite; private animation: Animation; private nameLabel: Text; constructor(images: Array) { super(); this.createAnim...

来源: Laya_示例 发布时间: 20241119

143. BoxCollider 调用destroy报错 [ 51%]

....gravityScale = 0; rigidBody.allowRotation = false; rigidBody.type = "static"; addComponentIntance(rigidBody); boxColl = new BoxCollider(); boxColl.label = "enemy"; boxColl.restitution = 1; boxColl.friction = 0; addComponentIntance(boxColl); kura • 2018-12-10 16:57 var reg:Laya...

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

144. config.jsh中无法使用confirm [ 51%]

.../////////////////////////java////////////////////////////////////// public static void showError(){ Log.e("showerror","show"); new AlertDialog.Builder(MainActivity.my_activity).setTitle("error" ).setMessage("加载游戏失败,可能由于您的网络不稳定,...

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

145. 【Native BUG】Native下对根结点设置filter,无法更新到每个子节点,web是ok的 [ 51%]

...er的时候仍然无效。只有手动设置color才能生效。   public static setGray(node: Laya.Node, set: boolean) {             for (var i = 0; i < node.numChildren; i++) {                 let sprite = node.getChildAt(i) as Laya.Sprite;                 if (sprite) { ...

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

146. 绘画圆角矩形的工具,直接用,不用自己去算 [ 51%]

... * @param borderWidth 边框大小 * @return DrawPathCmd 对象 */ public static function drawRoundRect(graghics:Graphics, x:Number, y:Number, width:Number, height:Number, roundRadius:Number, fillColor:String, borderColor:String = null, borderWidth:Number = 0):DrawPathCmd { var paths:Array = []; pat...

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

147. 性能测试-卡通人物2 [ 51%]

....text = Stat.FPS.toString(); } } } class Character extends Sprite { public static WIDTH: number = 110; public static HEIGHT: number = 110; private speed: number = 5; private bloodBar: Sprite; private animation: Animation; private nameLabel: Text; constructor(images: Array) { super(); this.createAnim...

来源: Laya2.0_示例 发布时间: 20241119

148. Animation创建和销毁的问题 [ 51%]

...,比如Texture,默认为false          */         public static function clearRes(url:String, forceDispose:Boolean = false):void { Loader.clearRes清理你把里面的第二个参数设置成false试试 如果还是不行的话你就把资源清理方法改用一下这个方法!还...

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

149. 1.1.0-1.3.0版本IDE发布UI组件的runtime属性在swf运行时的问题 [ 51%]

...布成swf运行会报错 报错类:laya.ui.View 报错方法:protected static function getCompInstance(json:Object):Component 见附件 [故障] exception, 信息=TypeError: Error #1010: 术语尚未定义,并且无任何属性。 求务必在下个版本解决这个问题,不然没法发布...

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

150. laya底层的加载为什么可以new两次 [ 51%]

...接使用 <code>new HTMLImage<code> 。 **</p> */ public static var create:Function = function(src:String, def:* = null):HTMLImage { return new HTMLImage(src, def); } tobe • 2018-07-02 17:35 @Laya_Aaron:额,这里第一句话是 创建一个实例,new HTMLImage.create()的话...

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