大约有 21 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
...标原点上。 ```typescript //创建一个空节点用来放置各模型 sprite3D = scene.addChild(new Laya.Sprite3D()); //正方体 var box = sprite3D.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(0.5, 0.5, 0.5))); box.transform.position = new Laya.Vector3(2.0, 0.25, 0.6); box.trans...
来源: Laya2.0_文档 发布时间: 20210715
...标原点上。 ```typescript //创建一个空节点用来放置各模型 sprite3D = scene.addChild(new Laya.Sprite3D()); //正方体 var box = sprite3D.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(0.5, 0.5, 0.5))); box.transform.position = new Laya.Vector3(2.0, 0.25, 0.6); box.trans...
来源: Laya2.0_文档 发布时间: 20210714
...标原点上。 ```typescript //创建一个空节点用来放置各模型 sprite3D = scene.addChild(new Sprite3D()) as Sprite3D; //正方体 var box:MeshSprite3D = sprite3D.addChild(new MeshSprite3D(PrimitiveMesh.createBox(0.5, 0.5, 0.5))) as MeshSprite3D; box.transform.position = new Vector3(2.0, ...
来源: Laya2.0_文档 发布时间: 20210715
...场景编辑器中直接查看显示效果。 基础显示组件包括:Sprite、Button、CheckBox、Clip、ColorPicker、ComboBox、FontClip、HScrollBar、HSlider、Image、Label、TextArea、TextInput、Radio、ProgressBar、Slider、VSlider、ScrollBar、VScrollBar、WXOpenDataViewer。 > *Tips...
来源: Laya2.0_文档 发布时间: 20200609
...场景编辑器中直接查看显示效果。 基础显示组件包括:Sprite、Button、CheckBox、Clip、ColorPicker、ComboBox、FontClip、HScrollBar、HSlider、Image、Label、TextArea、TextInput、Radio、ProgressBar、Slider、VSlider、ScrollBar、VScrollBar、WXOpenDataViewer。 > *Tips...
来源: Laya2.0_文档 发布时间: 20200609
...组件、基础显示组件,因为这几种组件,其实都是继承于Sprite,都具有显示列表节点的特性,可以挂接延伸子节点,所以,我们又把这些组件统称为节点组件。 而组件是指继承于**Component**类的组件,比如物理组件,虽然之前其...
来源: Laya2.0_文档 发布时间: 20210714
...原本示例代码,去掉了示例代码的旋转摄像机 //加载拖尾 Sprite3D.load('LayaScene_tst/Conventional/Sphere.lh',Handler.create(this,function(sp:Sprite3D):void{ //将加载的拖尾添加给示例盒子 box.addChild(sp); //为了体现效果,我们移动盒子和摄影机观察效果...
来源: Laya2.0_文档 发布时间: 20210715
...示例代码,去掉了示例代码的旋转摄像机 //加载拖尾 Laya.Sprite3D.load('LayaScene_tst/Conventional/Sphere.lh',Laya.Handler.create(this,function(sp){ //将加载的拖尾添加给示例盒子 box.addChild(sp); //为了体现效果,我们移动盒子和摄影机观察效果 Laya.time...
来源: Laya2.0_文档 发布时间: 20210715
...示例代码,去掉了示例代码的旋转摄像机 //加载拖尾 Laya.Sprite3D.load('LayaScene_tst/Conventional/Sphere.lh',Laya.Handler.create(this,function(sp){ //将加载的拖尾添加给示例盒子 box.addChild(sp); //为了体现效果,我们移动盒子和摄影机观察效果 Laya.time...
来源: Laya2.0_文档 发布时间: 20210715
...景模型.ls,基本都是由多个物体模型与材质构成,外层是Sprite3D容器,内部才是真正的模型MeshSprite3D或SkinnedMeshSprite3D。并且还可能会有多个层次嵌套。 #### 获取子对象模型网格 在编写游戏逻辑时,有的模型需要被修改,或者是...
来源: Laya2.0_文档 发布时间: 20210714