增加调试标志位

This commit is contained in:
ww-rm
2025-11-02 12:24:17 +08:00
parent 50219946ec
commit 10b691d897
4 changed files with 7 additions and 2 deletions

View File

@@ -27,6 +27,8 @@ namespace SpineViewer.ViewModels.MainWindow
_preferenceViewModel = new(this);
}
public bool IsDebug => App.IsDebug;
public string Title => $"SpineViewer - v{App.Version}";
/// <summary>

View File

@@ -153,7 +153,7 @@ namespace SpineViewer.ViewModels.MainWindow
public uint MaxFps
{
get => _renderer.MaxFps;
set => SetProperty(_renderer.MaxFps, value, v => _renderer.MaxFps = value);
set => SetProperty(_renderer.MaxFps, value, v => _renderer.MaxFps = _wallpaperRenderer.MaxFps = value);
}
public float Speed