From 48a38f61ef5c91b3a9f938e801ed1e302054670c Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Tue, 10 Nov 2020 10:37:44 -0600 Subject: [PATCH] Field PostEffect::isEnabled -> enabled followup GuiScriptNotifyCtrl::onXXX->notifyOnXXX followup --- .../tools/VerveEditor/GUI/VerveEditor.gui | 42 +++++++++---------- .../tools/guiEditor/scripts/guiEditor.ed.cs | 2 +- .../guiEditor/scripts/guiEditorCanvas.ed.cs | 2 +- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Templates/BaseGame/game/tools/VerveEditor/GUI/VerveEditor.gui b/Templates/BaseGame/game/tools/VerveEditor/GUI/VerveEditor.gui index a5259e821..091288fe0 100644 --- a/Templates/BaseGame/game/tools/VerveEditor/GUI/VerveEditor.gui +++ b/Templates/BaseGame/game/tools/VerveEditor/GUI/VerveEditor.gui @@ -59,13 +59,13 @@ childMargin = "0 0"; new GuiScriptNotifyCtrl(VerveEditorGroupNotify) { - onChildAdded = "0"; - onChildRemoved = "0"; - onChildResized = "0"; - onParentResized = "1"; - onResize = "1"; - onLoseFirstResponder = "0"; - onGainFirstResponder = "0"; + notifyOnChildAdded = "0"; + notifyOnChildRemoved = "0"; + notifyOnChildResized = "0"; + notifyOnParentResized = "1"; + notifyOnResize = "1"; + notifyOnLoseFirstResponder = "0"; + notifyOnGainFirstResponder = "0"; canSaveDynamicFields = "0"; class = "VerveEditorScrollNotifyV"; className = "VerveEditorScrollNotifyV"; @@ -155,13 +155,13 @@ childMargin = "0 0"; new GuiScriptNotifyCtrl(VerveEditorTrackNotify) { - onChildAdded = "0"; - onChildRemoved = "0"; - onChildResized = "0"; - onParentResized = "1"; - onResize = "1"; - onLoseFirstResponder = "0"; - onGainFirstResponder = "0"; + notifyOnChildAdded = "0"; + notifyOnChildRemoved = "0"; + notifyOnChildResized = "0"; + notifyOnParentResized = "1"; + notifyOnResize = "1"; + notifyOnLoseFirstResponder = "0"; + notifyOnGainFirstResponder = "0"; canSaveDynamicFields = "0"; class = "VerveEditorScrollNotify"; className = "VerveEditorScrollNotify"; @@ -406,13 +406,13 @@ childMargin = "0 0"; new GuiScriptNotifyCtrl(VerveEditorTimeNotify) { - onChildAdded = "0"; - onChildRemoved = "0"; - onChildResized = "0"; - onParentResized = "1"; - onResize = "1"; - onLoseFirstResponder = "0"; - onGainFirstResponder = "0"; + notifyOnChildAdded = "0"; + notifyOnChildRemoved = "0"; + notifyOnChildResized = "0"; + notifyOnParentResized = "1"; + notifyOnResize = "1"; + notifyOnLoseFirstResponder = "0"; + notifyOnGainFirstResponder = "0"; canSaveDynamicFields = "0"; class = "VerveEditorScrollNotifyH"; className = "VerveEditorScrollNotifyH"; diff --git a/Templates/BaseGame/game/tools/guiEditor/scripts/guiEditor.ed.cs b/Templates/BaseGame/game/tools/guiEditor/scripts/guiEditor.ed.cs index 2b9a5937b..71988bf9a 100644 --- a/Templates/BaseGame/game/tools/guiEditor/scripts/guiEditor.ed.cs +++ b/Templates/BaseGame/game/tools/guiEditor/scripts/guiEditor.ed.cs @@ -46,7 +46,7 @@ function GuiEdit( %val ) //Temp fix to disable MLAA when in GUI editor if( isObject(MLAAFx) && MLAAFx.isEnabled==true ) { - MLAAFx.isEnabled = false; + MLAAFx.Enabled = false; $MLAAFxGuiEditorTemp = true; } diff --git a/Templates/BaseGame/game/tools/guiEditor/scripts/guiEditorCanvas.ed.cs b/Templates/BaseGame/game/tools/guiEditor/scripts/guiEditorCanvas.ed.cs index c19ffb316..450920e6f 100644 --- a/Templates/BaseGame/game/tools/guiEditor/scripts/guiEditorCanvas.ed.cs +++ b/Templates/BaseGame/game/tools/guiEditor/scripts/guiEditorCanvas.ed.cs @@ -544,7 +544,7 @@ function GuiEditCanvas::quit( %this ) //Temp fix to disable MLAA when in GUI editor if( isObject(MLAAFx) && $MLAAFxGuiEditorTemp==true ) { - MLAAFx.isEnabled = true; + MLAAFx.Enabled = true; $MLAAFxGuiEditorTemp = false; } }