model asset browser that lets you save groups

are there any asset browsers out there that can save groups, characters, wire paramaters, etc. most of the free one Ive downloaded (projectmanager, patanouk) dont have this feature, do you know of any asset browsers that are good at managing groups?

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
Kstudio's picture

Now you can add a custom file

Now you can add a custom file format to work in Project Manager.

Example how to add new default extension into “Models” category:
Open “ProjectManager.ini” ("C:\Users\Username\AppData\Local\Autodesk\3dsMax\maxversion\enu\scripts\TrackScripts\ProjectManager")

Find section "[ModelsExtension]"
Type desired extension => for example ".bip=true"

After open the context-menu and add to custom menu two scripts - "Create-apply biped obj from file.ms" and "Save biped object.ms"

Now you can save and merge to scene biped objects.

http://www.youtube.com/embed/VJoLKY_jntM

  1. --//initialise structure for Project Manager
  2. local structPM=PMStructureInfo()
  3.  
  4. Methods:
  5. --//use for update list
  6. AddFilesToExplorer:<Array> filenames
  7. --//remove selected items only from list
  8. RemoveSelection:<function>,
  9. --//Save 3ds max ScreenShot
  10. SaveScreenShot:<String> filename
  11. Properties
  12. --//Full path to current folder
  13. CurrentFolder:<String> folder, read-only
  14. --//return filenames for selected items
  15. SelectedItems:<function>, [includeMaps:false] [includeThumbs:false]
  16. --//return filenames of thumbnails for selected items =>SelectedItems includeThumbs:true
  17. SelectedThumbs:<Array>, filenames
  18. --//return filenames of used maps for selected items =>SelectedItems includeMaps:true
  19. SelectedMaps:<Array>, filenames

(See example maxScript files in folder "$userscripts\TrackScripts\ProjectManager\presets\"

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.