MeshNode.ClearConnections C# (CSharp) Метод

ClearConnections() публичный Метод

public ClearConnections ( bool alsoReverse ) : void
alsoReverse bool
Результат 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;
		}