From 92b437e34ab0409af0877e79499b2d8523fab084 Mon Sep 17 00:00:00 2001 From: Max Heimbrock <43608204+MaxHeimbrock@users.noreply.github.com> Date: Mon, 11 May 2026 10:01:04 +0200 Subject: [PATCH] Init token source component in awake --- Runtime/Scripts/TokenSource/TokenSourceComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/Scripts/TokenSource/TokenSourceComponent.cs b/Runtime/Scripts/TokenSource/TokenSourceComponent.cs index 4d28f670..dc438356 100644 --- a/Runtime/Scripts/TokenSource/TokenSourceComponent.cs +++ b/Runtime/Scripts/TokenSource/TokenSourceComponent.cs @@ -24,7 +24,7 @@ public class TokenSourceComponent : MonoBehaviour ITokenSource _tokenSource; - public void Start() + public void Awake() { if (_config == null) throw new InvalidOperationException("Token source configuration was not provided");