GetCategoryAndType()
Updated: 3 Dec 2025
Updated: 3 Dec 2025
Returns the category name and specific node type. For example, “Cloning::Grid Cloner” or “Deformers::Physics::Rope Deformer”.
string GetCategoryAndType();
function Update()
{
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Image 2D");
var category = node.GetCategoryAndType();
}