MeshNode.ClearConnections C# (CSharp) Méthode

ClearConnections() public méthode

public ClearConnections ( bool alsoReverse ) : void
alsoReverse bool
Résultat void
		public override void ClearConnections (bool alsoReverse) {
			if (alsoReverse && connections != null) {
				for (int i=0;i<connections.Length;i++) {
					connections[i].RemoveConnection (this);
				}
			}
			
			connections = null;
			connectionCosts = null;
		}