SI_Visibility

Stores branch and node visibility fcurves. This template does not store light and camera visibility.

 

This template corresponds to the CSLVisibility class.

Introduced

3.0

Limitations

In Softimage only node information is stored.

Template

SI_Visibility
{
   <visibility>
}

Members

Member name

Description

visibility

Determines whether visible or not. Possible values are:

• 0 = Not visible.

• 1 = Visible.

Example

SI_Model MDL-sphere1 
{ 
   ....

   SI_Visibility
   {
       1, // boolean: 0 = not visible / 1 = visible 

       SI_FCurve sphere1-NODEVIS // optional fcurve 
       // must be inside the SI_Visibility template 
       // the node visibility fcurve gives the 
       // visibility through time of the single 
       // element. the node vis fcurve info supersede 
       // any branch visibility fcruve for the elem to 
       // which it is applied. 
       {
          "sphere1",
          "NODEVIS",
          "CONSTANT",
          1,1,
          1,
          1,1.0,
       } 

       SI_FCurve sphere1-BRANCHVIS // optional fcurve 
       // must be inside the SI_Visibility template 
       // the branch visibility fcurve gives the 
       // visibility of a branch (the elem + all its 
       // children)
       {
          "sphere1",
          "BRANCHVIS",
          "CONSTANT",
          1,1,
          1,
          1,1.0,
       } 
   }
}


Autodesk Softimage v7.5