This commit is contained in:
2025-11-24 08:27:50 +08:00
parent 6940f17517
commit e76152945e
104 changed files with 10003 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
from ngSkinTools2.api import plugin
from ngSkinTools2.api.python_compatibility import Object
def suspend_updates(target):
return SuspendUpdatesContext(target)
class SuspendUpdatesContext(Object):
def __init__(self, target):
self.target = target
def __enter__(self):
plugin.ngst2Layers(self.target, suspendUpdates=True)
def __exit__(self, _type, value, traceback):
plugin.ngst2Layers(self.target, suspendUpdates=False)