Esempio n. 1
0
 public void GatherResFile(ref List <string> resItemList, bool gather_all)
 {
     //m_EffectProps;
     SortedDictionary <float, EffectNodeConfig> .Enumerator iter = m_EffectProps.GetEnumerator();
     while (iter.MoveNext())
     {
         for (int i = 0; i < iter.Current.Value.configlist.Count; ++i)
         {
             EffectNodeProp nodeProp = iter.Current.Value.configlist[i];
             if (nodeProp.bActive)
             {
                 if (gather_all == false)
                 {
                     if (nodeProp.type != EF_NODE_TYPE.ATTACH_FX &&
                         nodeProp.type != EF_NODE_TYPE.PLACE_FX)
                     {
                         nodeProp.GatherResFile(ref resItemList);
                     }
                 }
                 else
                 {
                     nodeProp.GatherResFile(ref resItemList);
                 }
             }
         }
     }
 }
Esempio n. 2
0
 public virtual void GatherResFile(ref List <string> resItemList)
 {
     m_NodeProp.GatherResFile(ref resItemList);
 }