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

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

381. Laya2.3.1 unity导出的boxcollid碰撞问题 [ 52%]

...shapeOffset, scale, physicPosition); Vector3.transformQuat(physicPosition, rotation, physicPosition); 就可以了

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

382. 粒子特效加入动作挂点跟随模型动作在模型设置scale后跟随动作显示不对 [ 52%]

...置scale后跟随动作显示不对 在模型不设置scale,而是设置rotation旋转时,粒子跟随动作是没问题的。demo已经上传,小键盘4/6可以设置模型的scalez,小键盘5可以切换模型的动作。 附件 : --> u3drestest.zip 2019-12-18 添加评论 免费帖 --> ...

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

383. 如何让3D物体在xy平面上做曲线运动时其z轴旋转角度也跟着变化? [ 52%]

...hItem.angle pathItem.angle = angle; //物体旋转 pathItem.item.transform.rotate(new Laya.Vector3(0,0,dis), false, true); //物体平移 pathItem.item.transform.position = new Laya.Vector3(newPos.x, newPos.y, pathItem.item.transform.position.z); 2019-05-24 添加评论 免费帖 --> 分享 微博 Q...

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

384. 3D中摄像机绕物体旋转该如何实现? [ 52%]

...ne.addChild(new Laya.Camera(0, 0.1, 100)) as Laya.Camera; camera.transform.rotationEuler = new Laya.Vector3(-32, -75, 0); camera.transform.position =new Laya.Vector3(-8.2, 5.3, 2.2); var modelViewer = camera.addComponent(ModelViewer); modelViewer.AroundPos = plane.transform.position; */ export defau...

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

385. 3D模式下使用Tween使模型移动如何写法 [ 52%]

...1); fish.transform.localPosition = new Laya.Vector3(0,1,0); fish.transform.rotate(new Laya.Vector3(0,-Math.PI/2,0)); //移动鱼 Laya.Tween.to(fish,{x:-1},3000,Laya.Ease.linearIn,null) 这个Laya.Tween.to(fish,{x:-1},3000,Laya.Ease.linearIn,null)是不是写错了。。。应该怎么写啊。假设...

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

386. 3D模型加载帧动画的问题 [ 52%]

...载到场景scene.addChild(camera);//旋转摄像机角度camera.transform.rotate(new Laya.Vector3(-25,0,0),false,false);//移动摄像机位置camera.transform.position = new Laya.Vector3(0,5,10);//加入摄像机移动控制脚本camera.addComponent(CameraMoveScript); //添加蒙皮动画角色...

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

387. 官方案例里摄像机绕物体旋转脚本的问题 [ 52%]

...ne.addChild(new Laya.Camera(0, 0.1, 100)) as Laya.Camera; camera.transform.rotationEuler = new Laya.Vector3(-32, -75, 0); camera.transform.position =new Laya.Vector3(-8.2, 5.3, 2.2); var modelViewer = camera.addComponent(ModelViewer); modelViewer.AroundPos = plane.transform.position; */ export defau...

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

388. laya.display.Sprite_API3.0 [ 51%]

...e function onClickSprite():void { trace("点击 sprite 对象。"); sprite.rotation += 5;//旋转 sprite 对象。 } private function onClickShape():void { trace("点击 shape 对象。"); shape.rotation += 5;//旋转 shape 对象。 } } } example var sprite; var shape; Sprite_Example(); function Sp...

来源: Laya3.0_api 发布时间: 20231115

389. graphics 问题 [ 51%]

...e=new Sprite(); sp.graphics.save(); var matrix:Matrix=new Matrix(); matrix.rotate(45); matrix.translate(100,100); sp.graphics.transform(matrix); sp.graphics.drawRect(0,0,200,100,"#FF0000"); sp.graphics.restore(); Laya.stage.addChild(sp);我测试没有问题,可以把你详细的代码发下,我...

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

390. 双指旋转在真机微信小游戏里不起作用,代码写错了吗,请指教 [ 51%]

...//layaair.ldc.layabox.com/demo/?category=2d&group=Interaction&name=Rotate 这个例子。用1.7.22 LayaIDE 写了个简单的demo,然后发布到微信小游戏上去跑,发现无法旋转 不知道是我的代码写错了,还是要适配什么 附件 : --> myTest.zip 2019-01-05 添...

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