30 lines
699 B
Python
30 lines
699 B
Python
#!/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() |