Namespace: DeltaEngine.GameLogic.PathFinding.Tests
Assembly: DeltaEngine.GameLogic.PathFinding.Tests (in DeltaEngine.GameLogic.PathFinding.Tests.dll) Version: 1.1.1.0 (1.1.1)
Assembly: DeltaEngine.GameLogic.PathFinding.Tests (in DeltaEngine.GameLogic.PathFinding.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Examples
[Test] public void MakingNodeReachableEnablesAllConnections() { const int Index = 0; grid3X2.SetUnreachableAndUpdate(Index); Assert.IsFalse(grid3X2.AdjacentLinks[1][Index].IsActive); grid3X2.SetReachableAndUpdate(Index); Assert.IsTrue(grid3X2.AdjacentLinks[1][Index].IsActive); }
See Also