Skip to content

Commit

Permalink
Merge pull request #280 from dario-zubovic/development/v3
Browse files Browse the repository at this point in the history
v3: minor improvements
  • Loading branch information
desplesda authored Feb 4, 2025
2 parents 0320e69 + c41edfa commit e99e413
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Editor/Editors/DialogueRunnerEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Attributes/Attributes.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Yarn.Unity
namespace Yarn.Unity.Attributes
{

#nullable enable
Expand Down
3 changes: 2 additions & 1 deletion Runtime/DialogueRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -158,6 +158,7 @@ public VariableStorageBehaviour VariableStorage
}
return variableStorage;
}
set => variableStorage = value;
}

[SerializeReference] internal LineProviderBehaviour? lineProvider;
Expand Down
1 change: 1 addition & 0 deletions Runtime/Views/VoiceOverView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit e99e413

Please sign in to comment.