【Unity3D自学记录】Unity5之实时GI环境光

本文介绍了一种通过天空盒或时间控制环境光的方法,利用光照渐变和强度参数驱动实时全局光照(GI)系统。提供了Unity环境下的代码实现,演示如何根据一天中的时间变化调整环境光照。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


快速实时GI环境光
  快速实时GI环境光可以用天空盒直接驱动环境光输入。这在环境光每帧都会发生变化的情况下非常不理想。所以替代方法是,由当前时间来控制环境光,并转换为关照渐变和环境光强度用于驱动实时GI系统。这些都可以在光照面板中设置:

 
  更新环境光代码如下:
using System;
 
using UnityEngine;
 
using System.Collections;
 
using System.Collections.Generic;
 
[ExecuteInEditMode]
 
public class EnvironmentUpdater : MonoBehaviour {
 
public Gradient groundGradient, equatorGradient, skyGradient;
 
private TimeOfDayManager m_TimeOfDayManager;
 
void OnEnable () {
 
m_TimeOfDayManager = FindObjectOfType<timeofdaymanager> ();
 
}
 
void Update () {
 
float currentTime = m_TimeOfDayManager.time;
 
RenderSettings.ambientGroundColor = groundGradient.Evaluate(currentTime);
 
RenderSettings.ambientEquatorColor = equatorGradient.Evaluate(currentTime);
 
RenderSettings.ambientSkyColor = skyGradient.Evaluate(currentTime);
 
}
 
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

发财猫MoneyCat

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值