Files
MRFishingMaster/Assets/TrueClouds/Scripts/CloudCamera3D.cs
2026-02-28 14:04:34 +08:00

19 lines
409 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using UnityEngine;
using Debug = UnityEngine.Debug;
namespace TrueClouds
{
class CloudCamera3D: CloudCamera
{
[ImageEffectOpaque]
private void OnRenderImage(RenderTexture source, RenderTexture destination)
{
RenderClouds(source, destination);
}
}
}