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

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

51. Laya2.7.1 射线提示rayCast未定义 [ 91%]

Laya2.7.1 射线提示rayCast未定义 export default class click3d extends Laya.Script3D{ constructor() { super(); //创建场景 this.scene = Laya.stage.addChild(new Laya.Scene3D()); //添加相机 this.camera = (this.scene.addChild(new Laya.Camera(0, 0.1, 100))); this.camera.transform.translate(...

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

52. 新手的伤,ReferenceError: CameraMoveScript is not defined [ 91%]

...关的链接 提交 1 个回复 p799411891 赞同来自: var camera = new Laya.Camera(0, 0.1, 1000); //加载到场景 scene.addChild(camera); //移动摄像机位置 camera.transform.position = new Laya.Vector3(0, 5, 23); //旋转摄像机角度 camera.transform.rotate(new Laya.Vector3(-17, 0, 0), ...

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

53. 物理系统之ConfigurableConstraint(JavaScript-3D基础(JS)-LayaAir3D之物理系统) [ 91%]

...置线性轴上的弹簧弹力,Unity中三个线性轴是统一的值,Laya可以分别设置。Spring 为将对象移动回限制 (Limit) 而应用的力的强度任何非 0 数值都会隐式地软化边界。 | | linearDamp | Linear Limit Damper | 阻尼系数,弹簧力的减小与约束运...

来源: Laya2.0_文档 发布时间: 20210715

54. Resources already exist,is repeated loading 加载特效报重复加载 [ 91%]

...报重复加载 export default class TransformDemo{     private scene:Laya.Scene3D;     private position:Laya.Vector3 = new Laya.Vector3(0, 0, 0);     private position1:Laya.Vector3 = new Laya.Vector3(0, 0, 0);     private rotate:Laya.Vector3 = new Laya.Vector3(0, 1, 0);     priva...

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

55. 和原生Dom交互 · LayaAir3.0文档 · LAYABOX [ 91%]

LayaAir和原生DomLayaAir之SVGLayaAir之Dom元素ImageLayaAir之Dom元素videoLayaAir之dom元素FileLayaAir之dom元素script标签LayaAir之dom元素iframeLayaAir和原生Dom 在开发项目中,开发者难免遇到dom元素支持,但是LayaAir中不支持或者支持的不完善。那么...

来源: Laya3.0_文档 发布时间: 20241014

56. WaterPrimaryMaterial的使用 [ 91%]

...terial有demo吗? 我这里怎么调都是单一色块呢?   var box: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(new Laya.PlaneMesh(10, 10))) as Laya.MeshSprite3D; // box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false); // var material: Laya.BlinnPhongMaterial = new Lay...

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

57. Maximum call stack size exceeded [ 91%]

...RangeError: Maximum call stack size exceeded     at new EventDispatcher (laya.core.js:1027)     at new Node (laya.core.js:13292)     at new Sprite (laya.core.js:13871)     at new Scene (laya.core.js:23721)     at new GameMain (bundle.js:6)     at Function.getCompInstance (laya.core.js:21...

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

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

laya底层的加载为什么可以new两次 laya.net.Loader.as  第222行 new HTMLImage.create(url, {onload: onload, onerror: onerror, onCreate: function(img:*):void { image = img; //增加引用,防止垃圾回收 imgCache[url] = img; }}); 这里的调用create本身就是返回一个对象了...

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

59. new vector2报错 [ 91%]

new vector2报错 let pos: Laya.Vector2 = new Laya.Vector2(100, 100); 直接就包了一个异常 "Laya.Vector2 is not a constructor" 这是为什么   版本1.7.20 beta 附件 : --> 2018-08-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...

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

60. SpotLight介绍(JavaScript-3D基础(JS)-LayaAir3D之灯光) [ 91%]

...象。 ```typescript //聚光灯 this.spotLight = this.scene.addChild(new Laya.SpotLight()); //设置聚光灯颜色 this.spotLight.color = new Laya.Vector3(1, 1, 0); //设置聚光灯位置 this.spotLight.transform.position = new Laya.Vector3(0.0, 1.2, 0.0); //设置聚光灯方向 var mat = this.s...

来源: Laya2.0_文档 发布时间: 20210715