게임엔진(GameEngine)/Unreal4
SetActorHiddenInGame , printstring
3DMP
2015. 10. 28. 03:50
액터를 인게임 에서 보이게 할것인지 안보이게 할것인지를 bool 변수로 제어
AActor::SetActorHiddenInGame
UFUNCTION(BlueprintCallable, Category="Rendering",
Meta=(DisplayName="Set Actor Hidden In Game", Keywords="Visible Hidden Show Hide"))
virtual void SetActorHiddenInGame
(
bool bNewHidden
)
Sets the actor to be hidden in the game
Parameter | Description |
---|---|
bNewHidden | Whether or not to hide the actor and all its components |
Module | |
Header | Runtime/Engine/Classes/GameFramework/Actor.h |
Source | Runtime/Engine/Private/Actor.cpp |
printstring 은 해당 리턴 값을 문자로 화면에 출력한다
반응형