コード例 #1
0
        internal Animatable(IAnimatable x)
        {
            wrapped = x;

            foreach (Animatable anim in Anims)
            {
                if (anim.SuperClassID == SuperClassID.ParameterBlock2)
                {
                    parameterBlock = new ParameterBlock2((IIParamBlock2)anim._Anim);
                }
            }
        }
コード例 #2
0
 public static IEnumerable <Object> GetValues(this IParameterBlock self, TimeValue t)
 {
     return(from x in self.Params select x.GetValue(t));
 }
コード例 #3
0
 public static IEnumerable <Object> GetValues(this IParameterBlock self)
 {
     return(GetValues(self, Kernel.Now));
 }