mirror of
https://github.com/ApfelTeeSaft/Slender.git
synced 2026-08-27 03:43:28 +00:00
20 lines
352 B
C#
20 lines
352 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
[ExecuteInEditMode]
|
|
[RequireComponent(typeof(Camera))]
|
|
[AddComponentMenu("Image Effects/Camera Info")]
|
|
public class CameraInfo : MonoBehaviour
|
|
{
|
|
public DepthTextureMode currentDepthMode;
|
|
|
|
public RenderingPath currentRenderPath;
|
|
|
|
public int recognizedPostFxCount;
|
|
|
|
public virtual void Main()
|
|
{
|
|
}
|
|
}
|