23 lines
313 B
Markdown
23 lines
313 B
Markdown
|
|
# SetAsLastSibling
|
||
|
|
|
||
|
|
Set this transform as the last sibling.
|
||
|
|
|
||
|
|
## Syntax
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
void SetAsLastSibling();
|
||
|
|
```
|
||
|
|
|
||
|
|
## See Also
|
||
|
|
|
||
|
|
- [SetSiblingIndex](set-sibling-index)
|
||
|
|
- [SetAsFirstSibling](set-as-first-sibling)
|
||
|
|
|
||
|
|
## Examples
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
void Example(TransformComponent* transform) {
|
||
|
|
transform->SetAsLastSibling();
|
||
|
|
}
|
||
|
|
```
|