Hey guys,
I have a question about setting default inputs for zerotouch nodes. In my projects it can sometimes be convenient to have some predefined default input, so that the user need not plug something into that port. Does anyone know how to do that?
For instance below I can set the string Description to an empty string, but how could I set the curve list to an empty curve list?
Thanks!
public static List<object> ExampleCode(List<Autodesk.DesignScript.Geometry.Curve> Curves, string Description = "")
{
List<object> ObjectToReturn = new List<object>();
//code here
return ObjectToReturn;
}