home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2002 April / GSSH42002.iso / EDITOREN / DS / gmax / gmaxinst_1-1.exe / gmaxsetup11.cab / custattribstructs.ms < prev    next >
Text File  |  2002-02-13  |  2KB  |  54 lines

  1. -- Custom Attributes MacroScript Struct Definition File
  2. --
  3. -- Created:          Nov 7 2000
  4. -- Last Updated:     
  5. --
  6. -- Author :   Frank DeLise / Installed into stdplugs\stdscrpts by jbw 11.7.00
  7. -- Version:  3D Studio Max Version 4.0
  8. --
  9. -- 
  10. -- Custom Attributes Macroscript Struct Definition file.
  11. --
  12. --    Must reside in stdplugs\stdscripts for Custom Attribute dialogs to work.
  13. --
  14. --***********************************************************************************************
  15. -- MODIFY THIS AT YOUR OWN RISK
  16. --
  17.  
  18. ----------------------------------------------------------------------------------------------------------------------------------------------------------------
  19. -- Paramblock Definition
  20. ----------------------------------------------------------------------------------------------------------------------------------------------------------------
  21.  
  22. Struct CAT_ParamBlock
  23. (
  24.     Name,
  25.     Type,
  26.     UI,
  27.     Default = ""
  28.     
  29. )
  30.  
  31. ----------------------------------------------------------------------------------------------------------------------------------------------------------------
  32. -- UI Items Definition
  33. ----------------------------------------------------------------------------------------------------------------------------------------------------------------
  34. Struct CAT_UIItem
  35. (
  36.     UI,
  37.     Name,
  38.     String,
  39.     Type,
  40.     Range = "[0,100,0]",
  41.     Default = "1",
  42.     Width = "70",
  43.     Height = "25",
  44.     Enabled = "True",
  45.     Orient = "Horizontal",
  46.     Checked = "False",
  47.     Color = "[0,0,0]",
  48.     HighLightColor = "[0,255,0]",
  49.     Align = "Left",
  50.     Items = "#()",
  51.     Ticks = "10"
  52. )
  53.  
  54.