Contains the Event data returned from the data server from an AgentCachedTextureResponse
Inheritance: System.EventArgs
 /// <summary>Raises the CachedBakesReply event</summary>
 /// <param name="e">An AgentCachedBakesReplyEventArgs object containing the
 /// data returned from the data server AgentCachedTextureResponse</param>
 protected virtual void OnAgentCachedBakes(AgentCachedBakesReplyEventArgs e)
 {
     EventHandler<AgentCachedBakesReplyEventArgs> handler = m_AgentCachedBakesReply;
     if (handler != null)
         handler(this, e);
 }