大约有 174 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0039 秒)
Laya_社区(129) Laya2.0_文档(18) laya_api(7) Laya2.0_示例(7) Laya3.0_文档(5) Laya3.0_api(3) Laya_示例(3) Laya2.0_api(2)
...t rigid:Laya.RigidBody = panel.addComponent(Laya.RigidBody); rigid.type = 'static'; } 产生的效果是boll1会自由落体,但不会与挡板发生物理碰撞而是直接穿过挡板(如图1),请问要如何修改代码。 图1 附件 : --> 2019-04-28 添加评论 免费帖 --> 分享 ...
来源: Laya_社区 发布时间: 20190428
....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
....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
.../////////////////////////java////////////////////////////////////// public static void showError(){ Log.e("showerror","show"); new AlertDialog.Builder(MainActivity.my_activity).setTitle("error" ).setMessage("加载游戏失败,可能由于您的网络不稳定,...
来源: Laya_社区 发布时间: 20180116
...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
... * @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
....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
...,比如Texture,默认为false */ public static function clearRes(url:String, forceDispose:Boolean = false):void { Loader.clearRes清理你把里面的第二个参数设置成false试试 如果还是不行的话你就把资源清理方法改用一下这个方法!还...
来源: Laya_社区 发布时间: 20180424
...布成swf运行会报错 报错类:laya.ui.View 报错方法:protected static function getCompInstance(json:Object):Component 见附件 [故障] exception, 信息=TypeError: Error #1010: 术语尚未定义,并且无任何属性。 求务必在下个版本解决这个问题,不然没法发布...
来源: Laya_社区 发布时间: 20160918
...接使用 <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