Go to: Synopsis. Return value. MEL examples.
int isSameObject(string $objectA, string $objectB)
None
// Create a NURBS sphere. // string $createdNodes[] = `sphere -constructionHistory false`; string $sphere = $createdNodes[0]; isSameObject($sphere, longNameOf($sphere)); // Result: 1 // isSameObject($sphere, "foo"); // Result: 0 //