Skip to content

Commit

Permalink
Cleanup unused variables+add preview
Browse files Browse the repository at this point in the history
  • Loading branch information
Noevain committed Sep 3, 2024
1 parent b9024f1 commit 4e24e8c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### Voice Director

Change the config variable '''CutsceneMovieVoice''' based on what content the player is currently in, changes it back when leaving.

### Preview
![UI_preview](https://raw.githubusercontent.com/noevain/VoiceDirector/master/images/preview1.png)
1 change: 0 additions & 1 deletion VoiceDirector/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public enum CutsceneMovieVoiceValue : ushort
public sealed class Plugin : IDalamudPlugin
{
[PluginService] internal static IDalamudPluginInterface PluginInterface { get; private set; } = null!;
[PluginService] internal static ITextureProvider TextureProvider { get; private set; } = null!;
[PluginService] internal static ICommandManager CommandManager { get; private set; } = null!;
[PluginService] internal static IClientState clientState { get; private set; } = null!;

Expand Down
1 change: 0 additions & 1 deletion VoiceDirector/Windows/ConfigWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public class ConfigWindow : Window, IDisposable
private CutsceneMovieVoiceValue language_sel = CutsceneMovieVoiceValue.English;
public string _filter = string.Empty;
public ContentFinderCondition _selected;
public ExcelSheet<Maps> mappies = Plugin.DataManager.GetExcelSheet<Maps>();
public ExcelSheet<ContentFinderCondition> contents = Plugin.DataManager.GetExcelSheet<ContentFinderCondition>();
public bool _error;
// We give this window a constant ID using ###
Expand Down

0 comments on commit 4e24e8c

Please sign in to comment.