MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / SetName

Method SetName

Source/Engine/Level/Actor.cpp:677–684  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

675}
676
677void 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
686void Actor::SetName(const StringView& value)
687{

Callers 13

SpawnMethod · 0.45
TestPrefabs.cppFile · 0.45
BuildDirtyBoundsFunction · 0.45
CreatePrefabMethod · 0.45
ObjectInternal_Create1Function · 0.45
SetProbeDataMethod · 0.45
CreateCsgColliderMethod · 0.45
CreateCsgModelMethod · 0.45
DeserializeMethod · 0.45
runMethod · 0.45

Calls 1

GetSceneFunction · 0.85

Tested by

no test coverage detected