| 675 | } |
| 676 | |
| 677 | void Actor::SetName(String&& value) |
| 678 | { |
| 679 | if (_name == value) |
| 680 | return; |
| 681 | _name = MoveTemp(value); |
| 682 | if (GetScene()) |
| 683 | Level::callActorEvent(Level::ActorEventType::OnActorNameChanged, this, nullptr); |
| 684 | } |
| 685 | |
| 686 | void Actor::SetName(const StringView& value) |
| 687 | { |
no test coverage detected