Each physical object can have 'actors' who are pushing the object around. This can be used for hover, locking axis, making vehicles, etc. Each physical object can have multiple actors acting on it. An actor usually registers itself with physics scene events (pre-step action) and modifies the parameters on the host physical object.
Exemple #1
0
 public void Add(string name, BSActor actor)
 {
     lock (m_actors)
     {
         if (!m_actors.ContainsKey(name))
         {
             m_actors[name] = actor;
         }
     }
 }
 public void Add(string name, BSActor actor)
 {
     lock (m_actors)
     {
         if (!m_actors.ContainsKey(name))
         {
             m_actors[name] = actor;
         }
     }
 }
Exemple #3
0
        public bool RemoveAndRelease(string name)
        {
            bool ret = false;

            lock (m_actors)
            {
                if (m_actors.ContainsKey(name))
                {
                    BSActor beingRemoved = m_actors[name];
                    m_actors.Remove(name);
                    beingRemoved.Dispose();
                    ret = true;
                }
            }
            return(ret);
        }
Exemple #4
0
 public bool TryGetActor(string actorName, out BSActor theActor)
 {
     lock (m_actors)
         return(m_actors.TryGetValue(actorName, out theActor));
 }
 public bool TryGetActor(string actorName, out BSActor theActor)
 {
     lock (m_actors)
         return m_actors.TryGetValue(actorName, out theActor);
 }