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

Motion​Builder

by matthewkapfhammer WinLinux ALL

Send selected Python code snippets or whole files from SublimeText to MotionBuilder via telnet.

Details

Installs

  • Total 116
  • Win 109
  • Mac 0
  • Linux 7
May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 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
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
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
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 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

MotionBuilderSublime

A Sublime Text 2/3 plugin.

Send selected Python code snippets or whole files from SublimeText to MotionBuilder via telnet.


Installation

Easy Install

You can install this plugin directly from Sublime Package Control:

https://packagecontrol.io/packages/MotionBuilder

Note: Due to current naming policies, the listed package name is MotionBuilder - not MotionBuilderSublime.

Manual Install

  1. clone this repo into the SublimeText2/3 -> Preference -> Browse Packages directory:
    git clone git://github.com/matthewkapfhammer/MotionBuilderSublime.git

  2. Edit the MotionBuilderSublime.sublime-settings file, setting the port to match the commandPorts you have configured in MotionBuilder.

  3. Optionally edit the keymap file to change the default hotkey from ctrl+alt+shift+return to something else.

Note: Ideally you would make your custom changes to the user settings and not the default settings, so that they do not get overwritten when the plugin is updated.

Usage

To send a snippet, simply select some code in a Python script, and hit ctrl+alt+shift+return, or right click and choose “Send To MotionBuilder”. A telnet connection will be made to a running MotionBuilder instance on the configured port matching Python, and the code will be run in MotionBuilder's environment.

Beyond The Plugin

The function that sends a Python command to MotionBuilder can also be used in any external application.

See MotionBuilderSublime.py -> telnet_write

Credits

MotionBuilderSublime is inspired by and primarily based on MayaSublime by Justin Israel.

Additional credit belongs to Chris Evans for sharing how to handle a telnet connection to MotionBuilder in his blog post, Creating Interactive MotionBuilder User Interface Tools.