Ejemplo n.º 1
0
 public FmodEventPool getEventPool(FmodEvent evt)
 {
     if (m_pools.ContainsKey(evt)) {
         return (m_pools[evt]);
     }
     FmodEventPool newPool = new FmodEventPool(evt);
     m_pools[evt] = newPool;
     return (newPool);
 }
Ejemplo n.º 2
0
    public void loadEvent(FmodEventAudioSource src)
    {
        if (src != null && src.getSource() != null)
        {
            FmodEventPool pool = m_eventPoolManager.getEventPool(src.getSource());

            ERRCHECK(pool.getEvent(src));
        }
    }
Ejemplo n.º 3
0
    public FmodEventPool getEventPool(FmodEvent evt)
    {
        if (m_pools.ContainsKey(evt))
        {
            return(m_pools[evt]);
        }
        FmodEventPool newPool = new FmodEventPool(evt);

        m_pools[evt] = newPool;
        return(newPool);
    }
Ejemplo n.º 4
0
 public FmodEventPool[] getAllPools()
 {
     FmodEventPool[] ret = new FmodEventPool[m_pools.Count];
     m_pools.Values.CopyTo(ret, 0);
     return (ret);
 }
Ejemplo n.º 5
0
 public FmodEventPool[] getAllPools()
 {
     FmodEventPool[] ret = new FmodEventPool[m_pools.Count];
     m_pools.Values.CopyTo(ret, 0);
     return(ret);
 }