This app will create a menu item which runs a maxscript in the Toolkit context.
maxscriptsis a list of dictionaries which define a menu item.contextis a list of acceptable entity types that the script will be available for based on the context.menu_nameis the label the will appear on the menu.pathis the configuration relative path to the script that will be run.replacementsis a dictionary of key, value replacements. The app will search for the keys in the script and replace them with the values in this dictionary.
e.g.
max_scripts:
- context: [Asset]
menu_name: "Make New Camera"
path: resources/maxscript_snippets/make_new_camera.ms
replacements: {param_default_cam: resources/Camera_RIG_MK2.max}