예제 #1
0
파일: Node.cs 프로젝트: halad/FbxSharp
        public NodeAttribute SetNodeAttribute(NodeAttribute pNodeAttribute)
        {
            ConnectSrcObject(pNodeAttribute);
            if (DefaultAttributeIndex.Get() < 0)
            {
                DefaultAttributeIndex.Set(nodeAttributes.IndexOf(pNodeAttribute));
            }

            return(pNodeAttribute);
        }
예제 #2
0
파일: Node.cs 프로젝트: halad/FbxSharp
 public NodeAttribute GetNodeAttribute()
 {
     if (DefaultAttributeIndex.Get() < 0)
     {
         return(null);
     }
     if (DefaultAttributeIndex.Get() >= nodeAttributes.Count)
     {
         return(null);
     }
     return(nodeAttributes[DefaultAttributeIndex.Get()]);
 }
예제 #3
0
파일: Node.cs 프로젝트: halad/FbxSharp
 public int GetDefaultNodeAttributeIndex()
 {
     return(DefaultAttributeIndex.Get());
 }