From 67b3aedd172619bda72dfff947f8853fd815fbe9 Mon Sep 17 00:00:00 2001 From: PunishedPineapple <50609717+PunishedPineapple@users.noreply.github.com> Date: Tue, 11 Aug 2020 20:04:33 -0500 Subject: [PATCH] Temporarily disabling placement from the plugin due to uncertainty on the Actor flags offset. Just want to get a working plugin out the door ASAP for 5.3. --- WaymarkPresetPlugin/Configuration.cs | 2 +- WaymarkPresetPlugin/PluginUI.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/WaymarkPresetPlugin/Configuration.cs b/WaymarkPresetPlugin/Configuration.cs index 7603a83..f8ac542 100644 --- a/WaymarkPresetPlugin/Configuration.cs +++ b/WaymarkPresetPlugin/Configuration.cs @@ -69,7 +69,7 @@ public bool ShowLibraryIndexInPresetInfo public bool mAllowDirectPlacePreset = false; public bool AllowDirectPlacePreset { - get { return mAllowDirectPlacePreset; } + get { return false; } set { mAllowDirectPlacePreset = value; } } diff --git a/WaymarkPresetPlugin/PluginUI.cs b/WaymarkPresetPlugin/PluginUI.cs index 50dae9e..0aed01f 100644 --- a/WaymarkPresetPlugin/PluginUI.cs +++ b/WaymarkPresetPlugin/PluginUI.cs @@ -466,8 +466,8 @@ protected void DrawSettingsWindow() ImGui.Checkbox( "Show \"Filter on Current Zone\" checkbox.", ref mConfiguration.mShowFilterOnCurrentZoneCheckbox ); ImGui.Checkbox( "Show ID numbers next to zone names.", ref mConfiguration.mShowIDNumberNextToZoneNames ); ImGui.Checkbox( "Show the index of the preset within the library.", ref mConfiguration.mShowLibraryIndexInPresetList ); - ImGui.Checkbox( "Allow placement of presets directly from the library*.", ref mConfiguration.mAllowDirectPlacePreset ); - ImGui.Text( "*Please read the plugin site's readme before enabling this." ); + /*ImGui.Checkbox( "Allow placement of presets directly from the library*.", ref mConfiguration.mAllowDirectPlacePreset ); + ImGui.Text( "*Please read the plugin site's readme before enabling this." );*/ if( !mConfiguration.ShowFilterOnCurrentZoneCheckbox ) FilterOnCurrentZone = false; ImGui.Spacing(); if( ImGui.Button( "Save and Close" ) )