Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 481 Bytes

readme_3dsmax.md

File metadata and controls

20 lines (17 loc) · 481 Bytes

3DsMax Install

  • extract module multi_script_editor to PYTHONPATH

    Example: {MAX_INSTALL_DIR}/python/multi_script_editor

  • create a menu, toolbar, etc with the following maxscript:

python.executefile("path\\to\\multi_script_editor\\managers\\run_3dsmax.py")

or

macroScript MultiScriptEditor
	category:"scripts"
	toolTip:"MultiScriptEditor"
(
	python.Execute "import multi_script_editor"
	python.Execute "multi_script_editor.show3DSMax()"
)