From 0de32e49b52d633cbe58955747baf2ba52ad01e0 Mon Sep 17 00:00:00 2001 From: Axel Antoine Date: Thu, 16 Oct 2025 14:07:21 +0200 Subject: [PATCH] add permissive flag to js simplification --- js/meshopt_simplifier.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/meshopt_simplifier.d.ts b/js/meshopt_simplifier.d.ts index 4284bb61d..68a450113 100644 --- a/js/meshopt_simplifier.d.ts +++ b/js/meshopt_simplifier.d.ts @@ -1,6 +1,6 @@ // This file is part of meshoptimizer library and is distributed under the terms of MIT License. // Copyright (C) 2016-2025, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) -export type Flags = 'LockBorder' | 'Sparse' | 'ErrorAbsolute' | 'Prune' | 'Regularize'; +export type Flags = 'LockBorder' | 'Sparse' | 'ErrorAbsolute' | 'Prune' | 'Regularize' | 'Permissive'; export const MeshoptSimplifier: { supported: boolean;