diff --git a/Editor/Editors/DialogueRunnerEditor.cs b/Editor/Editors/DialogueRunnerEditor.cs index af05cbb9..37630394 100644 --- a/Editor/Editors/DialogueRunnerEditor.cs +++ b/Editor/Editors/DialogueRunnerEditor.cs @@ -14,6 +14,7 @@ Yarn Spinner is licensed to you under the terms found in the file LICENSE.md. using System; using System.Reflection; using Yarn.Unity.UnityLocalization; +using Yarn.Unity.Attributes; namespace Yarn.Unity.Editor { diff --git a/Runtime/Attributes/Attributes.cs b/Runtime/Attributes/Attributes.cs index e24ee674..c0da5357 100644 --- a/Runtime/Attributes/Attributes.cs +++ b/Runtime/Attributes/Attributes.cs @@ -1,6 +1,6 @@ using System; -namespace Yarn.Unity +namespace Yarn.Unity.Attributes { #nullable enable diff --git a/Runtime/DialogueRunner.cs b/Runtime/DialogueRunner.cs index 1bd59adb..8ef45732 100644 --- a/Runtime/DialogueRunner.cs +++ b/Runtime/DialogueRunner.cs @@ -11,7 +11,7 @@ Yarn Spinner is licensed to you under the terms found in the file LICENSE.md. using UnityEngine.UIElements; using Yarn; using Yarn.Unity; - +using Yarn.Unity.Attributes; #nullable enable @@ -158,6 +158,7 @@ public VariableStorageBehaviour VariableStorage } return variableStorage; } + set => variableStorage = value; } [SerializeReference] internal LineProviderBehaviour? lineProvider; diff --git a/Runtime/Views/VoiceOverView.cs b/Runtime/Views/VoiceOverView.cs index cd154d81..a40aeabd 100644 --- a/Runtime/Views/VoiceOverView.cs +++ b/Runtime/Views/VoiceOverView.cs @@ -7,6 +7,7 @@ Yarn Spinner is licensed to you under the terms found in the file LICENSE.md. using System.Diagnostics.CodeAnalysis; using System.Threading; using UnityEngine; +using Yarn.Unity.Attributes; #nullable enable