mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
18 lines
360 B
C#
18 lines
360 B
C#
using UnityEngine;
|
|
|
|
namespace MoleMole
|
|
{
|
|
[ExecuteInEditMode]
|
|
[RequireComponent(typeof(Camera))]
|
|
[AddComponentMenu("Image Effects/PostFX")]
|
|
public class PostFX : PostFXWithResScale
|
|
{
|
|
protected override void OnEnable()
|
|
{
|
|
base.OnEnable();
|
|
internalBufferSize = InternalBufferSizeEnum.SIZE_128;
|
|
CameraResScale = CAMERA_RES_SCALE.RES_100;
|
|
}
|
|
}
|
|
}
|