ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Send to 3ds Max

by cb109 ST3 Win

:telephone_receiver: MAXScript support and remote code execution in 3ds Max from Sublime.

Details

Installs

  • Total 4K
  • Win 4K
  • Mac 44
  • Linux 12
Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5
Windows 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 2 0 1 0 2 1 0 0 0 1 0 1 2 2 0 0 2 2 0 1 0 0 1 1 5 1 0 1
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime 3ds Max

Sends MAXScript/Python files or selected lines to 3ds Max.

Benefit from Sublime as an editor without having to enter 3ds Max everytime you want to evaluate some code. Best used on a split- or two-monitor setup.

The plugin works by iterating all opened windows and searching for Autodesk 3ds Max to find the MAXScript Listener handle, that then gets pasted the code or import command. 3ds Max is found and communicated with automatically. You can choose which one to talk to if there are multiple running instances of 3ds Max.

A lot of people have contributed their work to make this tool better, I want to thank all contributors and encourage you to check out their websites at the bottom of this page!

How to install using Sublime Package Control

If you don't have Package Control installed, get it here: Package Control

  1. In Sublime start Package Control -> Install Package
  2. Search for Send to 3ds Max and hit Enter to install

How to install manually

  1. Download the repository
  2. In Sublime Text go to Preferences -> Browse Packages
  3. Create a folder named Send to 3ds Max
  4. Extract the contents to the folder
  5. Restart Sublime

Sublime Text Version

Support for Sublime Text 2 has been dropped with 0.11.0 and as such only ST3 is supported moving forward. If you really still have to use ST2 you can try to install an older version from Package Control or checkout a version tag manually.

How to setup in Sublime

There are four available commands:

  • send_file_to_max: Execute the current file. Allowed file types are: *.ms, *.mcr, *.py
  • send_selection_to_max: Execute the current selection. No selection will execute the line where the cursor is. Selecting something on a single line will execute exactly that selection, so it is possible to select small snippets. Selecting something over multiple lines will execute these full lines for quickly executing certain blocks of code.
  • select_max_instance: If you have multiple instances running, this command lets you choose which one to communicate with. Your choice is remembered until Sublime is closed.
  • open_max_help: Open the MAXScript online documentation and search for your currently selected text.

Note: You must work with actual files that have been saved to disk, so that it can detect whether you are working with MAXScript or Python code by looking at the file extension.

To set shortcuts for the commands, edit your Key Bindings - User file and bind to any key you like (I mimic the MAXScript Listener keys here):

{ "keys": ["ctrl+e"], "command": "send_file_to_max" },
{ "keys": ["shift+enter"], "command": "send_selection_to_max"},
{ "keys": ["ctrl+shift+e"], "command": "select_max_instance" },
{ "keys": ["f1"], "command" : "open_max_help"}

Formatting of Inline Comments

Some people prefer inline comments to start at the beginning of each line (I know I do), others like to have them indented to the first non-empty character of each line:

Error: language “maxscript” is not supported
# This is the default formatting.
-- function foobar = (
--   LayerManager....
--   for obj in objects do
--     obj.wirecolor + ...
-- )

# Though you may prefer the comments to be indented.
-- function foobar = (
  -- LayerManager....
  -- for obj in objects do
    -- obj.wirecolor + ...
-- )

It's a matter of taste and as such there is no right or wrong. If you prefer the comments to be indented, please remove the following block from Comments.tmPreferences:

<dict>
    <key>name</key>
    <string>TM_COMMENT_DISABLE_INDENT</string>
    <key>value</key>
    <string>yes</string>
</dict>

Hope you like it!

Contributing

If you want to contribute, please fork this repository, add your changes and submit a pull request for the develop branch. Please try to adhere to PEP8 and remember: commit early, commit often, make each commit do only one thing and use meaningful commit messages. Thanks :)

Original authors: * Christoph Bülter * Johannes Becker

Contributors: * Christian Deiß * Daniel Santana * Ettore Pancini * Johan Boekhoven * Luca Faggion * Rogier van Etten * Ross Garfoot