You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
782 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "NewSceneComponent2D.h"
// Sets default values for this component's properties
UNewSceneComponent2D::UNewSceneComponent2D()
{
// Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features
// off to improve performance if you don't need them.
PrimaryComponentTick.bCanEverTick = true;
// ...
}
// Called when the game starts
void UNewSceneComponent2D::BeginPlay()
{
Super::BeginPlay();
// ...
}
// Called every frame
void UNewSceneComponent2D::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction)
{
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
// ...
}