BEPUphysics.DeactivationManagement.SimulationIsland.BecameDeactivationCandidate C# (CSharp) 메소드

BecameDeactivationCandidate() 개인적인 메소드

private BecameDeactivationCandidate ( SimulationIslandMember member ) : void
member SimulationIslandMember
리턴 void
        void BecameDeactivationCandidate(SimulationIslandMember member)
        {
            Interlocked.Increment(ref deactivationCandidateCount);
            //The reason why this does not deactivate when count == members.count is that deactivation candidate count will go up and down in parallel.
            //The actual deactivation process is not designed to be thread safe.  Perhaps doable, but perhaps not worth the effort.
        }
        Action<SimulationIslandMember> becameNonDeactivationCandidateDelegate;