Universe.Physics.BulletSPlugin.BSActorCollection.TryGetActor C# (CSharp) Method

TryGetActor() public method

public TryGetActor ( string actorName, BSActor &theActor ) : bool
actorName string
theActor BSActor
return bool
        public bool TryGetActor(string actorName, out BSActor theActor)
        {
            lock (m_actors)
                return m_actors.TryGetValue(actorName, out theActor);
        }