本文整理汇总了Python中plugin.Plugin.registerCollapsableNode方法的典型用法代码示例。如果您正苦于以下问题:Python Plugin.registerCollapsableNode方法的具体用法?Python Plugin.registerCollapsableNode怎么用?Python Plugin.registerCollapsableNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类plugin.Plugin
的用法示例。
在下文中一共展示了Plugin.registerCollapsableNode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: loadPlugin
# 需要导入模块: from plugin import Plugin [as 别名]
# 或者: from plugin.Plugin import registerCollapsableNode [as 别名]
#.........这里部分代码省略.........
plugin.registerNode("RandomNumber", _coral.RandomNumber, tags = ["numeric"], description = "Generate a random number.\nWorks with single or array values.")
plugin.registerNode("ArrayIndices", _coral.ArrayIndices, tags = ["numeric", "loop"], description = "Build an array composed by all the indexes extracted from the given input array.")
plugin.registerNode("GetArrayElement", _coral.GetArrayElement, tags = ["numeric"], description = "Get a single element of an array.")
plugin.registerNode("SetArrayElement", _coral.SetArrayElement, tags = ["numeric"], description = "Set a single element of an array.")
plugin.registerNode("GetSimulationStep", _coral.GetSimulationStep, tags = ["numeric", "simulation"], description = "Get the values stored by SetSimulationStep and reuse them in the simulation step.\nWhen the step attribute is set to 0 the simulation is reset and the data is taken from the source.")
plugin.registerNode("SetSimulationStep", _coral.SetSimulationStep, tags = ["numeric", "simulation"], description = "Set some numeric values and make them available to a GetSimulationStep node connected to the same source.\n")
plugin.registerNode("FindPointsInRange", _coral.FindPointsInRange, tags = ["numeric"])
plugin.registerNode("Add", _coral.AddNode, tags = ["math"])
plugin.registerNode("Sub", _coral.SubNode, tags = ["math"])
plugin.registerNode("Mul", _coral.MulNode, tags = ["math"])
plugin.registerNode("Div", _coral.DivNode, tags = ["math"])
plugin.registerNode("Abs", _coral.Abs, tags = ["math"])
plugin.registerNode("Atan2", _coral.Atan2, tags = ["math"])
plugin.registerNode("Sqrt", _coral.Sqrt, tags = ["math"])
plugin.registerNode("Pow", _coral.Pow, tags = ["math"])
plugin.registerNode("Exp", _coral.Exp, tags = ["math"])
plugin.registerNode("Log", _coral.Log, tags = ["math"])
plugin.registerNode("Ceil", _coral.Ceil, tags = ["math"])
plugin.registerNode("Floor", _coral.Floor, tags = ["math"])
plugin.registerNode("Round", _coral.Round, tags = ["math"])
plugin.registerNode("Length", _coral.Length, tags = ["math"])
plugin.registerNode("Inverse", _coral.Inverse, tags = ["math"])
plugin.registerNode("CrossProduct", _coral.CrossProduct, tags = ["math"])
plugin.registerNode("DotProduct", _coral.DotProduct, tags = ["math"])
plugin.registerNode("Normalize", _coral.Normalize, tags = ["math"])
plugin.registerNode("TrigonometricFunc", _coral.TrigonometricFunc, tags = ["math"])
plugin.registerNode("Radians", _coral.Radians, tags = ["math"])
plugin.registerNode("Degrees", _coral.Degrees, tags = ["math"])
plugin.registerNode("Min", _coral.Min, tags = ["math"])
plugin.registerNode("Max", _coral.Max, tags = ["math"])
plugin.registerNode("Average", _coral.Average, tags = ["math"])
plugin.registerNode("Slerp", _coral.Slerp, tags = ["math"])
plugin.registerNode("QuatMultiply", _coral.QuatMultiply, tags = ["math"])
plugin.registerNode("Negate", _coral.Negate, tags = ["math"])
plugin.registerAttribute("ImageAttribute", _coral.ImageAttribute)
plugin.registerNode("Image", _coral.ImageNode, tags = ["image"])
plugin.registerAttribute("GeoAttribute", _coral.GeoAttribute)
plugin.registerAttribute("GeoInstanceArrayAttribute", _coral.GeoInstanceArrayAttribute)
plugin.registerNode("SetGeoPoints", _coral.SetGeoPoints, tags = ["geometry"])
plugin.registerNode("GetGeoPoints", _coral.GetGeoPoints, tags = ["geometry"])
plugin.registerNode("GetGeoNormals", _coral.GetGeoNormals, tags = ["geometry"], description = "Get one normal vector per vertex.")
plugin.registerNode("ObjImporter", _coral.ObjImporter, tags = ["geometry"])
plugin.registerNode("GeoGrid", _coral.GeoGrid, tags = ["geometry"])
plugin.registerNode("GeoSphere", _coral.GeoSphere, tags = ["geometry"])
plugin.registerNode("GeoCube", _coral.GeoCube, tags = ["geometry"])
plugin.registerNode("GeoNeighbourPoints", _coral.GeoNeighbourPoints, tags = ["geometry"])
plugin.registerNode("GetGeoElements", _coral.GetGeoElements, tags = ["geometry"])
plugin.registerNode("GetGeoSubElements", _coral.GetGeoSubElements, tags = ["geometry"])
plugin.registerNode("GeoInstanceGenerator", _coral.GeoInstanceGenerator, tags = ["geometry"])
plugin.registerAttribute("StringAttribute", _coral.StringAttribute)
plugin.registerNode("String", _coral.StringNode, tags = ["generic"])
plugin.registerNode("FilePath", _coral.FilePathNode, tags=["generic"])
plugin.registerNode("Add (String)", _coral.AddStringNode, tags=["generic", "pipeline"])
plugin.registerNode("Regex", nodes.RegexNode, tags=["generic"])
plugin.registerNode("StringToInt", nodes.StringToIntNode, tags=["generic"])
plugin.registerNode("IntToString", nodes.IntToStringNode, tags=["generic"])
plugin.registerNode("BuildArray (String)", _coral.BuildArrayStringNode, tags=["generic"])
plugin.registerNode("ArrayIndices (String)", _coral.StringArrayIndices, tags=["string"], description="Build an array composed by all the indexes extracted from the given input array.")
plugin.registerNode("GetArrayElement (String)", _coral.GetStringArrayElement, tags=["string"])
plugin.registerNode("Sort (String)", fileopnode.StringSort, tags=["string"])
plugin.registerNode("ArraySize (String)", _coral.StringArraySize, tags=["string"])
plugin.registerNode("Time", timeNode.TimeNode, tags = ["generic"])
plugin.registerNode("ImportCIOTransforms", _coral.ImportCIOTransforms, tags = ["generic"])
plugin.registerNode("ImportCIOSkinWeights", _coral.ImportCIOSkinWeights, tags = ["generic"])
plugin.registerNode("LoopInput", _coral.LoopInputNode, tags = ["loop"])
plugin.registerNode("LoopOutput", _coral.LoopOutputNode, tags = ["loop"])
plugin.registerNode("ForLoop", _coral.ForLoopNode, tags = ["loop"])
plugin.registerNode("ProcessSimulation", _coral.ProcessSimulationNode, tags = ["generic", "simulation"])
plugin.registerAttribute("BoolAttribute", _coral.BoolAttribute)
plugin.registerNode("Bool", _coral.BoolNode, tags = ["conditional"])
plugin.registerNode("IfGreaterThan", _coral.IfGreaterThan, tags = ["conditional"])
plugin.registerNode("IfLessThan", _coral.IfLessThan, tags = ["conditional"])
plugin.registerNode("ConditionalValue", _coral.ConditionalValue, tags = ["conditional"])
plugin.registerNode("SplinePoint", _coral.SplinePoint, tags = ["curve"])
plugin.registerNode("SkinWeightDeformer", _coral.SkinWeightDeformer, tags = ["deformers"])
plugin.registerNode("FindFiles", fileopnode.FindFilesNode, tags=["pipeline", "fileops"])
plugin.registerNode("CopyFiles", fileopnode.CopyFilesNode, tags=["pipeline", "fileops"])
plugin.registerNode("MoveFiles", fileopnode.MoveFilesNode, tags=["pipeline", "fileops"])
plugin.registerNode("CustomPython", custompythonnode.CustomPythonNode, tags=["pipeline"])
plugin.registerNode("ForLoop (String)", _coral.StringForLoopNode, tags=["pipeline"])
plugin.registerNode("LoopInput (String)", _coral.StringLoopInputNode, tags=["pipeline"])
plugin.registerNode("LoopOutput (String)", _coral.StringLoopOutputNode, tags=["pipeline"])
plugin.registerNode("PathNode", fileopnode.PathNode, tags=["pipeline"])
plugin.registerNode("CollapsedExecutableNode", nodes.CollapsedExecutableNode, tags=["generic"])
plugin.registerCollapsableNode("CollapsedExecutableNode")
return plugin