Fix Gemini stuff

This commit is contained in:
DeMuenu
2026-03-26 23:01:38 +01:00
parent a3f95883be
commit 79ad33c5f3
4 changed files with 12 additions and 7 deletions

View File

@@ -85,7 +85,7 @@ public static class LightUpdaterPreview
static void PushFromBehaviour(LightUpdater src)
{
int max = Mathf.Max(1, src.maxLights);
int max = Mathf.Max(1, LightUpdater.maxLights);
EnsureArrays(src, max);
var c = _cache[src];

View File

@@ -1,5 +1,5 @@
// Assets/Lighting/Scripts/LightUpdater.Editor.cs
#if UNITY_EDITOR
#if !COMPILER_UDONSHARP && UNITY_EDITOR
using UnityEngine;
public partial class LightUpdater