9 lines
183 B
C#
9 lines
183 B
C#
|
|
using UnityEngine;
|
||
|
|
using System.Collections;
|
||
|
|
using System.IO;
|
||
|
|
|
||
|
|
public class RenderTextureSaveToPNG : MonoBehaviour
|
||
|
|
{
|
||
|
|
public RenderTexture inputTex;
|
||
|
|
public float maskSrength;
|
||
|
|
}
|