From a17dac4d082709f400a7cc75763a7c4cd3c44fa0 Mon Sep 17 00:00:00 2001 From: BoatFloater <111416210+BoatFloater@users.noreply.github.com> Date: Sun, 8 Mar 2026 09:54:13 +0900 Subject: [PATCH] expose BasisInteractableObject.RequiresUpdateLoop externally with protected set --- .../Interactions/BasisInteractableObject.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Basis/Packages/com.basis.framework/Interactions/BasisInteractableObject.cs b/Basis/Packages/com.basis.framework/Interactions/BasisInteractableObject.cs index 110549e94..a3f1cb77c 100644 --- a/Basis/Packages/com.basis.framework/Interactions/BasisInteractableObject.cs +++ b/Basis/Packages/com.basis.framework/Interactions/BasisInteractableObject.cs @@ -114,8 +114,7 @@ public bool HasState(BasisInputState state, BasisInputKey Key) /// Flag indicating whether this object requires an update loop /// while being influenced by inputs. /// - [NonSerialized] - internal bool RequiresUpdateLoop = false; + public bool RequiresUpdateLoop { get; protected set; } = false; #region Interaction Events