unreal.ScriptableToolLineSet¶
- class unreal.ScriptableToolLineSet(outer: Object | None = None, name: Name | str = 'None')¶
Bases:
ObjectScriptable Tool Line Set
C++ Source:
Plugin: ScriptableToolsFramework
Module: ScriptableToolsFramework
File: ScriptableToolLineSet.h
- add_line() ScriptableToolLine¶
Create and return a new line object. Users should save a reference to this object for future updates or removal from the set.
- Returns:
The new line object added to the set.
- Return type:
- remove_line(line) None¶
Remove a specific line object from the set, removing it fromt the scene.
- Parameters:
line (ScriptableToolLine) – A reference to a line to be removed from the set.