当前位置:网站首页>Unity-Post Processing
Unity-Post Processing
2022-08-02 14:11:00 【莉萝爱萝莉】
1. 基础使用
- 在Package Manager 中安装 Post Processing
- 在 Project 中创建 Profile 配置文件
- 创建空物体,并添加 Post Process Volume 组件
- 将配置文件拖拽到 Volume 组件上,勾选 isGlobal 全局响应
- 将创建的空物体右上角定义为 Post Process Layer
- 选中主摄像机,添加 Post Process Layer 组件,并在组件中选择刚创建的 layer 层
2. 基础使用
- Ambient Occlusion 环境光遮蔽
用于增强3D游戏中的暗部效果,使画面更真实更有层次感。 - Bloom 辉光效果
给一个强光源一个外发的光晕
名称 | 效果 |
---|---|
Intensity | 强度 |
Threshold | 阈值 |
Dirtiness | 光照的效果材质 |
Chromatic Aberration 色差效果(边缘动态模糊)
Vignette 边角压暗
Grading Curves 色阶 (需点击overriding方可更改)
Auto Exposure :自动曝光,根据图像包含的亮度级别范围动态调整图像的曝光
名称 描述 Filtering 过滤器,设置直方图的上下百分比,找到稳定的平均亮度。超出此范围的值将被丢弃,不会影响平均亮度。 Minimum 设置环境光当中最小平均亮度 Maximum 设置环境光当中最大平均亮度 Exposure Compensation 曝光补偿,设置中灰色值来补偿场景的全局曝光。 Adaptation settings:
名称 描述 Type 选择适应类型。progressive的自动曝光。fix的自动曝光。 Speed Up 设置从黑暗环境到光明环境的适应速度. Speed Down 设置从光亮环境到黑暗环境的适应速度。
3. 代码操作
- 常规使用
using UnityEngine;
using UnityEngine.Rendering.PostProcessing;
public class UnityEffects : MonoBehaviour
{
void Start()
{
// 获取
var volume = GetComponent<PostProcessVolume>();
Vignette vignette;
volume.profile.TryGetSettings(out vignette);
// 修改(某一属性)值
vignette.intensity.value = 1;
vignette.intensity.Override(1);
}
}
- 纯代码创建
using UnityEngine;
using UnityEngine.Rendering.PostProcessing;
public class UnityEffects : MonoBehaviour
{
PostProcessVolume volume;
Vignette vignette;
void Start()
{
// 创建到内存中
vignette = ScriptableObject.CreateInstance<Vignette>();
vignette.enabled.Override(true);
vignette.intensity.Override(1);
}
void OnDestroy()
{
// 释放
RuntimeUtilities.DestroyVolume(volume, true, true);
}
}
4. post-process layer 设置
- Anti-aliasing 反锯齿
边栏推荐
- Software Testing Basics (Back)
- Problems related to prime numbers - small notes
- In-depth understanding of Golang's Map
- Fast advanced TypeScript
- What should I do if Windows 10 cannot connect to the printer?Solutions for not using the printer
- Redis常见面试题
- Manifest merger failed : Attribute [email protected] value=
- pygame绘制弧线
- MATLAB图形加标注的基本方法入门简介
- Detailed explanation of MATLAB drawing function plot
猜你喜欢
Redis common interview questions
Installation and configuration of Spark and related ecological components - quick recall
cmake configure libtorch error Failed to compute shorthash for libnvrtc.so
关于c语言的调试技巧
yolov5官方代码解读——前向传播
TCP三次握手、四次挥手
Flink + sklearn - use JPMML implement flink deployment on machine learning model
The SSE instructions into ARM NEON
十天学习Unity3D脚本(一)九个回调
Introduction to C language function parameter passing mode
随机推荐
3.用户上传头像
MATLAB绘图函数ezplot入门详解
Win10 computer can't read U disk?Don't recognize U disk how to solve?
关于混淆的问题
1.开发社区首页,注册
如何用硬币模拟1/3的概率,以及任意概率?
Introduction to MATLAB drawing functions ezplot explanation
7. Redis
Detailed introduction to drawing complex surfaces using the plot_surface command
5. Transaction management
第二十八章:解题技巧
求解斐波那契数列的若干方法
Spark及相关生态组件安装配置——快速回忆
Manifest merger failed : Attribute [email protected] value=
学习笔记(01):activiti6.0从入门到精通-工作流的介绍以及插件的安装
队列与栈
Mysql的锁
KiCad常用快捷键
pygame image rotate continuously
轻量化AlphaPose