home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2002 April / GSSH42002.iso / EDITOREN / DS / gmax / gmaxinst_1-1.exe / gmaxsetup11.cab / Macro_Transforms.mcr < prev    next >
Text File  |  2002-02-13  |  736b  |  45 lines

  1. macroScript Non_Uniform_Scale
  2.     category:"Tools"
  3.     internalcategory:"Tools"
  4.     toolTip:"Non-uniform Scale"
  5.     buttontext:"Non-uniform Scale"
  6.     Icon:#("Internal",27)
  7. (
  8.     Try (ToolMode.nonUniformScale ())
  9.     Catch ()
  10. )
  11.  
  12. macroScript Move
  13.     category:"Tools"
  14.     internalcategory:"Tools"
  15.     toolTip:"Move"
  16.     buttontext:"Move"
  17.     Icon:#("Internal",21)
  18. (
  19.     Try (Max Move)
  20.     Catch ()
  21. )
  22.  
  23. macroScript Rotate
  24.     category:"Tools"
  25.     internalcategory:"Tools"
  26.     toolTip:"Rotate"
  27.     buttontext:"Rotate"
  28.     Icon:#("Internal",23)
  29.  
  30. (
  31.     Try (Max Rotate)
  32.     Catch ()
  33. )
  34.  
  35. macroScript Scale
  36.     category:"Tools"
  37.     internalcategory:"Tools"
  38.     toolTip:"Scale"
  39.     buttontext:"Scale"
  40.     Icon:#("Internal",25)
  41. (
  42.         Try (ToolMode.UniformScale ())
  43.     Catch ()
  44. )
  45.