This commit is contained in:
2025-11-23 21:09:11 +08:00
parent baef0f536b
commit bd163ae8a5
32 changed files with 0 additions and 2804 deletions

View File

@@ -1,31 +0,0 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Nexus Test Script
Simple test to verify the Nexus plugin system is working
"""
import maya.cmds as cmds
def run_test():
"""Run a simple test"""
print("[Nexus Test] Running test...")
# Show confirmation dialog
result = cmds.confirmDialog(
title='Nexus Test',
message='Nexus Plugin System is working correctly!',
button=['OK'],
defaultButton='OK',
cancelButton='OK',
dismissString='OK'
)
print(f"[Nexus Test] Test completed: {result}")
return result
if __name__ == "__main__":
run_test()