laya 产生影子2

本文介绍如何在Laya3D场景中加载资源,并通过DirectionLight设置软阴影,调整阴影距离、分辨率和级联模式。同时,演示了使物体接收和投射阴影的方法。
摘要由CSDN通过智能技术生成

var resPath = "res/LayaScene_GameScene/Conventional/GameScene.ls"
        Laya.Scene3D.load(resPath,Laya.Handler.create(this,function(scene) {
            //加载完成获取到了Scene3d
            Laya.stage.addChild(scene);
            //获取摄像机
            var camera = scene.getChildByName("MainCamera");
            //添加光照
             this.directionLight = new Laya.DirectionLight()
            //this.directionLight = scene.addChild(new Laya.DirectionLight());
            //设置灯光颜色
            this.directionLight.shadow = true
            this.directionLight.color = new Laya.Vector3(1, 1, 1);
            scene.addChild(this.directionLight)

            var mat = this.directionLight.transform.worldMatrix;
            mat.setForward(new Laya.Vector3(-1.0, -1.0, -1.0));
            this.directionLight.transform.worldMatrix = mat;
            this.d

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值