19 lines
360 B
C#
19 lines
360 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace BF
|
|
{
|
|
public class PostEffectContext
|
|
{
|
|
public RenderTexture src;
|
|
public RenderTexture dest;
|
|
|
|
public PostEffectContext() { }
|
|
public PostEffectContext(RenderTexture src, RenderTexture dest)
|
|
{
|
|
this.src = src;
|
|
this.dest = dest;
|
|
}
|
|
}
|
|
}
|