start.py 864 B

123456789101112131415161718192021222324
  1. # coding:utf-8
  2. #!/usr/bin/python
  3. #
  4. # Copyright (c) Contributors to the Open 3D Engine Project.
  5. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  6. #
  7. # SPDX-License-Identifier: Apache-2.0 OR MIT
  8. #
  9. #
  10. # -------------------------------------------------------------------------
  11. # DCCsi\\Tools\\DCC\\Maya\\start.py
  12. """DccScriptingInterface (DCCsi)
  13. The DCCsi bootstraps tools like Maya with additional code access and extensions.
  14. This module starts up maya in the DCCsi managed synthetic environment context.
  15. """
  16. ###########################################################################
  17. # Main Code Block, runs this script as main (testing)
  18. # -------------------------------------------------------------------------
  19. if __name__ == '__main__':
  20. """Run this file as main"""
  21. print('Maya.Start() not implemented')