mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-16 00:54:54 +00:00
Field PostEffect::isEnabled -> enabled followup
GuiScriptNotifyCtrl::onXXX->notifyOnXXX followup
This commit is contained in:
parent
6ee6d7c717
commit
48a38f61ef
3 changed files with 23 additions and 23 deletions
|
|
@ -59,13 +59,13 @@
|
||||||
childMargin = "0 0";
|
childMargin = "0 0";
|
||||||
|
|
||||||
new GuiScriptNotifyCtrl(VerveEditorGroupNotify) {
|
new GuiScriptNotifyCtrl(VerveEditorGroupNotify) {
|
||||||
onChildAdded = "0";
|
notifyOnChildAdded = "0";
|
||||||
onChildRemoved = "0";
|
notifyOnChildRemoved = "0";
|
||||||
onChildResized = "0";
|
notifyOnChildResized = "0";
|
||||||
onParentResized = "1";
|
notifyOnParentResized = "1";
|
||||||
onResize = "1";
|
notifyOnResize = "1";
|
||||||
onLoseFirstResponder = "0";
|
notifyOnLoseFirstResponder = "0";
|
||||||
onGainFirstResponder = "0";
|
notifyOnGainFirstResponder = "0";
|
||||||
canSaveDynamicFields = "0";
|
canSaveDynamicFields = "0";
|
||||||
class = "VerveEditorScrollNotifyV";
|
class = "VerveEditorScrollNotifyV";
|
||||||
className = "VerveEditorScrollNotifyV";
|
className = "VerveEditorScrollNotifyV";
|
||||||
|
|
@ -155,13 +155,13 @@
|
||||||
childMargin = "0 0";
|
childMargin = "0 0";
|
||||||
|
|
||||||
new GuiScriptNotifyCtrl(VerveEditorTrackNotify) {
|
new GuiScriptNotifyCtrl(VerveEditorTrackNotify) {
|
||||||
onChildAdded = "0";
|
notifyOnChildAdded = "0";
|
||||||
onChildRemoved = "0";
|
notifyOnChildRemoved = "0";
|
||||||
onChildResized = "0";
|
notifyOnChildResized = "0";
|
||||||
onParentResized = "1";
|
notifyOnParentResized = "1";
|
||||||
onResize = "1";
|
notifyOnResize = "1";
|
||||||
onLoseFirstResponder = "0";
|
notifyOnLoseFirstResponder = "0";
|
||||||
onGainFirstResponder = "0";
|
notifyOnGainFirstResponder = "0";
|
||||||
canSaveDynamicFields = "0";
|
canSaveDynamicFields = "0";
|
||||||
class = "VerveEditorScrollNotify";
|
class = "VerveEditorScrollNotify";
|
||||||
className = "VerveEditorScrollNotify";
|
className = "VerveEditorScrollNotify";
|
||||||
|
|
@ -406,13 +406,13 @@
|
||||||
childMargin = "0 0";
|
childMargin = "0 0";
|
||||||
|
|
||||||
new GuiScriptNotifyCtrl(VerveEditorTimeNotify) {
|
new GuiScriptNotifyCtrl(VerveEditorTimeNotify) {
|
||||||
onChildAdded = "0";
|
notifyOnChildAdded = "0";
|
||||||
onChildRemoved = "0";
|
notifyOnChildRemoved = "0";
|
||||||
onChildResized = "0";
|
notifyOnChildResized = "0";
|
||||||
onParentResized = "1";
|
notifyOnParentResized = "1";
|
||||||
onResize = "1";
|
notifyOnResize = "1";
|
||||||
onLoseFirstResponder = "0";
|
notifyOnLoseFirstResponder = "0";
|
||||||
onGainFirstResponder = "0";
|
notifyOnGainFirstResponder = "0";
|
||||||
canSaveDynamicFields = "0";
|
canSaveDynamicFields = "0";
|
||||||
class = "VerveEditorScrollNotifyH";
|
class = "VerveEditorScrollNotifyH";
|
||||||
className = "VerveEditorScrollNotifyH";
|
className = "VerveEditorScrollNotifyH";
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ function GuiEdit( %val )
|
||||||
//Temp fix to disable MLAA when in GUI editor
|
//Temp fix to disable MLAA when in GUI editor
|
||||||
if( isObject(MLAAFx) && MLAAFx.isEnabled==true )
|
if( isObject(MLAAFx) && MLAAFx.isEnabled==true )
|
||||||
{
|
{
|
||||||
MLAAFx.isEnabled = false;
|
MLAAFx.Enabled = false;
|
||||||
$MLAAFxGuiEditorTemp = true;
|
$MLAAFxGuiEditorTemp = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -544,7 +544,7 @@ function GuiEditCanvas::quit( %this )
|
||||||
//Temp fix to disable MLAA when in GUI editor
|
//Temp fix to disable MLAA when in GUI editor
|
||||||
if( isObject(MLAAFx) && $MLAAFxGuiEditorTemp==true )
|
if( isObject(MLAAFx) && $MLAAFxGuiEditorTemp==true )
|
||||||
{
|
{
|
||||||
MLAAFx.isEnabled = true;
|
MLAAFx.Enabled = true;
|
||||||
$MLAAFxGuiEditorTemp = false;
|
$MLAAFxGuiEditorTemp = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue