Skip to content

nils-soderman/motionbuilder-socket

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MotionBuilder Socket

NodeJS module for connecting to Autodesk MotionBuilder

Example

import { MotionBuilderSocket } from "motionbuilder-socket";

const socket = new MotionBuilderSocket();

socket.open().then(async () => {
    const response = await socket.exec("Cube=FBModelCube('Test');Cube.Show=True");
    socket.close();
});

*This is a third-party module and is not associated with Autodesk or MotionBuilder in any way.