track .material .color .interpolation .set  (  Mode ,  ColorChannel  )  
                                          
Description :

This instruction assigns an interpolation mode to all the material color keys in a track.

Parameters :

  • The exclusive modes:
    INTERP_FRONT
    INTERP_LINEAR (default)
    INTERP_TCBSPLINE

    can be combined with:
    INTERP_RELATIVEVALUE

    For example:
    INTERP_TCBSPLINE (right)
    INTERP_TCBSPLINE | INTERP_RELATIVEVALUE (right)
    INTERP_TCBSPLINE | INTERP_FRONT (wrong)
  • MATERIAL_AMBIENTCOLOR : Ambient term of the material
    MATERIAL_DIFFUSECOLOR : Diffuse term of the material
    MATERIAL_SELFILLUMCOLOR : Emissive term of the material

Examples :