This commit is contained in:
2025-11-23 21:03:42 +08:00
parent f7d5b7be07
commit d849862405
12 changed files with 598 additions and 31 deletions

View File

@@ -0,0 +1,30 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
NexusLauncher Test Script
Test script - verify plugin system is working properly
"""
import maya.cmds as cmds
def run_test():
"""Run test"""
result = cmds.confirmDialog(
title='NexusLauncher Test',
message='NexusLauncher plugin system is working!\n\nPlugin system is running normally!',
button=['OK'],
defaultButton='OK',
cancelButton='OK',
dismissString='OK'
)
print("=" * 50)
print("[NexusLauncher] Test executed successfully!")
print("[NexusLauncher] Test executed successfully!")
print("=" * 50)
return result
if __name__ == "__main__":
run_test()