GetCategory()
Updated: 6 Feb 2025
Updated: 6 Feb 2025
Returns the category name where the node resides in the node list. For example, “Cameras” or “Lighting::FX::Fog Scattering”.
string GetCategory();
function Update()
{
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Image 2D");
var category = node.GetCategory();
}