File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
GameFramework/Runtime/Debugger Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,8 @@ public DebuggerManager()
46
46
_settingMgr = GameFrameworkMode . GetModule < SettingManager > ( ) ;
47
47
Log = new LogFile ( ) ;
48
48
49
- FullRect = _settingMgr . Get < Rect > ( "DebuggerManager.FullRect" , _defaultFullRect ) ;
49
+ //FullRect = _settingMgr.Get<Rect>("DebuggerManager.FullRect", _defaultFullRect);
50
+ FullRect = _defaultFullRect ;
50
51
WindowScale = _settingMgr . Get < float > ( "DebuggerManager.WindowScale" , _defaultWindowScale ) ;
51
52
}
52
53
@@ -182,7 +183,7 @@ public void OnImGui()
182
183
183
184
public override void OnClose ( )
184
185
{
185
- _settingMgr . Set < Rect > ( "DebuggerManager.FullRect" , FullRect ) ;
186
+ // _settingMgr.Set<Rect>("DebuggerManager.FullRect", FullRect);
186
187
_settingMgr . Set < float > ( "DebuggerManager.WindowScale" , WindowScale ) ;
187
188
//关闭其他的窗口
188
189
if ( _allDebuggerWindows != null )
You can’t perform that action at this time.
0 commit comments