You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both simplifyWithAttributes and simplifyPoints are stable and no longer
require experimental flag. Technically pruning is still considered
experimental but it would make more sense to just remove the boolean
setting as even if pruning changes in its behavior, that change will
only concern the implementation.
@@ -234,7 +230,6 @@ var MeshoptSimplifier = (function () {
234
230
varoptions=0;
235
231
for(vari=0;i<(flags ? flags.length : 0);++i){
236
232
assert(flags[i]insimplifyOptions);
237
-
assert(this.useExperimentalFeatures||flags[i]!='Prune');// set useExperimentalFeatures to use experimental flags like Prune
238
233
options|=simplifyOptions[flags[i]];
239
234
}
240
235
@@ -267,7 +262,6 @@ var MeshoptSimplifier = (function () {
267
262
target_error,
268
263
flags
269
264
){
270
-
assert(this.useExperimentalFeatures);// set useExperimentalFeatures to use this; note that this function is experimental and may change interface in a way that will require revising calling code
assert(this.useExperimentalFeatures);// set useExperimentalFeatures to use this; note that this function is experimental and may change interface in a way that will require revising calling code
@@ -233,7 +229,6 @@ var MeshoptSimplifier = (function () {
233
229
varoptions=0;
234
230
for(vari=0;i<(flags ? flags.length : 0);++i){
235
231
assert(flags[i]insimplifyOptions);
236
-
assert(this.useExperimentalFeatures||flags[i]!='Prune');// set useExperimentalFeatures to use experimental flags like Prune
237
232
options|=simplifyOptions[flags[i]];
238
233
}
239
234
@@ -266,7 +261,6 @@ var MeshoptSimplifier = (function () {
266
261
target_error,
267
262
flags
268
263
){
269
-
assert(this.useExperimentalFeatures);// set useExperimentalFeatures to use this; note that this function is experimental and may change interface in a way that will require revising calling code
assert(this.useExperimentalFeatures);// set useExperimentalFeatures to use this; note that this function is experimental and may change interface in a way that will require revising calling code
0 commit comments