FastLineRendererAddLine Method (FastLineRendererProperties, Boolean, Boolean) |
Adds an individual line that is not meant to be joined to other lines
Namespace:
DigitalRuby.FastLineRenderer
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public void AddLine(
FastLineRendererProperties props,
bool startCap = false,
bool endCap = false
)
Public Sub AddLine (
props As FastLineRendererProperties,
Optional startCap As Boolean = false,
Optional endCap As Boolean = false
)
public:
void AddLine(
FastLineRendererProperties^ props,
bool startCap = false,
bool endCap = false
)
member AddLine :
props : FastLineRendererProperties *
?startCap : bool *
?endCap : bool
(* Defaults:
let _startCap = defaultArg startCap false
let _endCap = defaultArg endCap false
*)
-> unit
Parameters
- props
- Type: DigitalRuby.FastLineRendererFastLineRendererProperties
Creation properties - startCap (Optional)
- Type: SystemBoolean
Whether to add a start cap - endCap (Optional)
- Type: SystemBoolean
Whether to add an end cap
See Also