大约有 406 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)
射线检测报错,outHitInfo.sprite3D=null; 代码: class SceneScript extends Laya.Script{ private ray : Laya.Ray; private hit: Laya.RaycastHit; private phasorSprite3D:Laya.PhasorSpriter3D; private camera : Laya.Camera; private scene: Laya.Scene; public _load(owner : any):void{ this.scene ...
来源: Laya_社区 发布时间: 20181020
如何移动sprite3d 新建了个空场景,场景里添加了一个sprite3d对象pos,然后将模型和相机作为pos的子对象添加进去,使用pos.transform.translate移动pos,发现并没有用 2018-01-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...
来源: Laya_社区 发布时间: 20180125
...ort { ui } from "./../ui/layaMaxUI"; import Scene3D = Laya.Scene3D; import Sprite3D = Laya.Sprite3D; /** * 本示例采用非脚本的方式实现,而使用继承页面基类,实现页面逻辑。在IDE里面设置场景的Runtime属性即可和场景进行关联 * 相比脚本方式,继承式...
来源: Laya_社区 发布时间: 20190618
...: Laya.loader.create("res/1.lh",Handler.create(this,onModelOK),null,Sprite3D); private function onModelOK():void { //添加3D场景 var scene:Scene = new Scene(); Laya.stage.addChild(scene); ...
来源: Laya_社区 发布时间: 20180116
怎么创建多个相同资源的多个Sprite3D 我在代码中反复调用了15次 var effect:Laya.Sprite3D = Laya.Sprite3D.load("res/h5/LayaScene_Effect/Effect.lh"),并且给每个特效设置不同的位置。但是最后这15次调用都是对同一个资源对象进行操作 2018-03-28 添...
来源: Laya_社区 发布时间: 20180328
...); camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); Laya.Sprite3D.load( "res/test_mesh2.lh", Laya.Handler.create(this, function (sprite: Laya.Sprite3D): void { var clonesprite: Laya.Sprite3D = sprite.clone() as Laya.Sprite3D; scene.addChild(clonesprite) as Laya.Sprite3D; clonesprit...
来源: Laya_社区 发布时间: 20220721
Laya.Sprite3D如何设置位置 var layaMonkey: Laya.Sprite3D = Laya.Sprite3D.load("res/skinModel/LayaMonkey/LayaMonkey.lh"); this.scene.addChild(layaMonkey); 简单的加载了官方的事例资源,猴子是加载出来了,但是使用了下面两种方法都没有成功改变它的位置。...
来源: Laya_社区 发布时间: 20180604
...着窗口的缩放,渐变成黑色 export class Texture2dTest { private sprite3D:Laya.Sprite3D; private readonly AllPng:string[] = ["pic-001.png","output-06.png"]; private texture:Laya.Texture2D; private box; constructor(){ Laya3D.init(0, 0); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stag...
来源: Laya_社区 发布时间: 20220815
...mera; private directionlight: Laya.DirectionLight; private character: Laya.Sprite3D; private monster_character: Laya.Sprite3D; private translateW: Laya.Vector3 = new Laya.Vector3(0, 0, 0.2); private translateS: Laya.Vector3 = new Laya.Vector3(0, 0, -0.2); private translateA: Laya.Vector3 = new Laya....
来源: Laya_社区 发布时间: 20200917
LayaAir引擎 重复使用Laya.Sprite3D.load加载同一个lh类型的资源,发现第二次加载到的资源是无效的 Laya.Sprite3D.load(path, Laya.Handler.create(this, this.loadCompleted)); public loadCompleted(sp:Laya.Sprite3D):void { this._loaded = true; ...
来源: Laya_社区 发布时间: 20200609