Add LiteGraph.Canvas.LowQualityRenderingZoomThreshold setting (#2412)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Chenlei Hu
2025-02-03 17:28:07 -08:00
committed by GitHub
parent 90914a40ba
commit 98c197e8b1
9 changed files with 50 additions and 1 deletions

View File

@@ -734,5 +734,18 @@ export const CORE_SETTINGS: SettingParams[] = [
defaultValue: false,
type: 'boolean',
versionAdded: '1.8.8'
},
{
id: 'LiteGraph.Canvas.LowQualityRenderingZoomThreshold',
name: 'Low quality rendering zoom threshold',
tooltip: 'Render low quality shapes when zoomed out',
type: 'slider',
attrs: {
min: 0.1,
max: 1,
step: 0.01
},
defaultValue: 0.6,
versionAdded: '1.9.1'
}
]