Important
|
Deprecated in 3.0. Please use interfaces attribute in [class-node]. |
GetNodeInterfaces(node) => void
Get all interfaces for given node.
node |
Object of class [class-node]. |
Return
Array of objects of class [class-interface], with first object placed at index 0.
Example
// Log names and ids of all interface objects for given node interfaces = GetNodeInterfaces($node); for(i : interfaces) { trace(1, "Interface: name='" .. i.name .. "' id=" .. i.id); }