Added Fog and other fixes

This commit is contained in:
2026-07-06 18:01:21 +03:00
parent fc837b2f9a
commit 72b48492cc
573 changed files with 397423 additions and 104 deletions
@@ -0,0 +1,21 @@
using UnityEngine;
namespace Mirza.AERO
{
// May require domain reloading to be enabled.
// Scene mode can apparently mess it up, otherwise.
// So at least hiding scene views and then playing
// will fix the updater and it will work as normal.
[ExecuteAlways]
public class CustomRenderTextureUpdater : MonoBehaviour
{
public CustomRenderTexture texture;
void Update()
{
texture.Update(1);
}
}
}