| 447 | } |
| 448 | |
| 449 | Actor* Actor::GetChild(int32 index) const |
| 450 | { |
| 451 | CHECK_RETURN(index >= 0 && index < Children.Count(), nullptr); |
| 452 | return Children[index]; |
| 453 | } |
| 454 | |
| 455 | Actor* Actor::GetChild(const StringView& name) const |
| 456 | { |
no test coverage detected