XSI_UserKeyword

Stores the list of user keywords for the Material and the Image Clip. The list is represented as a single comma-delimited string containing all user keywords defined for the object.

This template can be a child of either the XSI_Material or the XSI_Image templates.

Introduced

6.0

Template

XSI_UserKeyword {
   <list> // comma-separated string 
}

Example on Material

SI_MaterialLibrary DefaultLib { 
   1, 
   XSI_Material Scene_Material { 
       ...
       XSI_UserKeyword { 
          "MyMatKeyword1,MyMatKeyword2,MyMatKeyword3", 
       }
   }
}

Example on Image

XSI_ImageLibrary { 
   1, 
   XSI_Image noIcon_pic { 
       ... 
       XSI_UserKeyword { 
          "MyImageClipKeyword1,MyImageClipKeyword2,MyImageClipKeyword3", 
       }
   }
}


Softimage|Crosswalk v3.11