CARLA
 
载入中...
搜索中...
未找到
EmptyActor.cpp
浏览该文件的文档.
1// Copyright (c) 2020 Computer Vision Center (CVC) at the Universitat Autonoma
2// de Barcelona (UAB).
3//
4// This work is licensed under the terms of the MIT license.
5// For a copy, see <https://opensource.org/licenses/MIT>.
6
7#include "EmptyActor.h"
8
9AEmptyActor::AEmptyActor(const FObjectInitializer &ObjectInitializer)
10 : Super(ObjectInitializer)
11{
12 PrimaryActorTick.bCanEverTick = false;
13 RootSceneComponent = CreateDefaultSubobject<USceneComponent>(TEXT("SceneRootComponent"));
14 RootComponent = RootSceneComponent;
15 RootComponent->SetMobility(EComponentMobility::Movable);
16}
AEmptyActor(const FObjectInitializer &ObjectInitializer)
Definition EmptyActor.cpp:9
USceneComponent * RootSceneComponent
Definition EmptyActor.h:22