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

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

51. 官方LayaAir之灯光一节示例背景在微信里表现不一致 [ 87%]

...信息 Laya.Stat.show(); //添加3D场景 var scene = Laya.stage.addChild(new Laya.Scene()); //创建摄像机(纵横比,近距裁剪,远距裁剪) var camera:Laya.Camera = new Laya.Camera(0,0.1,100); //加载到场景 scene.addChild(camera); //移动摄像机位置 camera.transform.translat...

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

52. localRotationEulerY旋转位置错误 [ 86%]

...eneUI {     private mat1: Laya.BlinnPhongMaterial;     private newScene: Laya.Scene3D;     private arr: any;     constructor() {         super();         this.arr = [];         this.newScene = Laya.stage.addChild(new Laya.Scene3D()) as Laya.Scen...

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

53. Box绑定事件失效 [ 86%]

... QZONE 微信 S123456123456 赞同来自: 代码部分: this.room_top1 = new Laya.Box(); console.log(this.room_top1) this.room_top1.on("click",this,function(){console.log("11111111111")});   2017-11-16 0 0 分享 微博 QZONE 微信 Monica - 知识达人 赞同来自: 你输出下box的宽高,...

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

54. Laya.Tween怎么运用到3D对象上? [ 86%]

...orm.position;Laya.Tween.to(box.potOld,{     x:1     ,y:2     ,update:new Laya.Handler(box,function(){         this.transform.position = this.potOld;     }) }, ConstValue.animationTime,Laya.Ease.elasticOut,Laya.Handler.create(this, function(){     console.log("complete"); }),ConstValue....

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

55. 求助 Uncaught SyntaxError: Unexpected identifier [ 86%]

...Stat.show(); // 给舞台添加laya3d场景 var scene= Laya.stage.addChild(new Scene()) as Scene; //初始化照相机 var camera = scene.addChild(new Camera()) as Camera; camera.transform.position = new Vector3(0, 3, 3); camera.transform.rotate(new Vector3( -45, 0, 0), true, false); camera.addCompo...

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

56. 怎么实现一个Box被多次添加到一个Panel并显示。 [ 85%]

... 0 个回复被折叠 要回复问题请先登录 相关问题 两个对象new了一个相同的对象,调用第一个的一个方法,走进了第二方法里 请问LayaAir中如何使图片以圆形的方式显示? 微信关系链:LayaAir引擎针对微信小游戏好友关系链实现方...

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

57. 角色碰撞器添加复合型碰撞形状,报错Qt[a[((a[(t >> 2)] + 8) >> 2)]] is not a function [ 85%]

...= plane.addComponent(Laya.CharacterController);  let collider_shape_box = new Laya.BoxColliderShape(2.5, 0.8, 0.8); collider_shape_box.localOffset.x = -0.5;  let collider_shape:Laya.CompoundColliderShape = new Laya.CompoundColliderShape(); collider_shape.addChildShape(collider_shape_box);  charac...

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

58. 一个3D正方体模型,想给它六个面贴不同的贴图,该如何处理? [ 85%]

...六个面贴不同的贴图,该如何处理? var box = scene.addChild(new Laya.MeshSprite3D(new Laya.BoxMesh(1, 1, 1))); box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false); box.transform.translate(new Laya.Vector3(10, 10, 10)); var material = new Laya.StandardMaterial(); material.dif...

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

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

... _boll1:Laya.Sprite; constructor() { super(); //物理模块 this._boll1 = new Laya.Sprite(); this.addChild(this._boll1); this._boll1.x = 20; this._boll1.loadImage('comp/btn_close.png'); let box:laya.physics.BoxCollider = this._boll1.addComponent(laya.physics.BoxCollider); box.height = 60; box.width...

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

60. 【LIST无法拖动】参照官方实例做的 [ 85%]

...自:  private setup(json :any): void {         var list = new List();         list.itemRender = Item;         list.repeatX = 3;         list.repeatY = 3;         list.x = 50;         list.y = 100;         list.spaceX = -50;...

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