This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
UE4_Minecraft/Source/Minecraft/CPPController.cpp
2018-04-17 23:43:50 +01:00

19 lines
No EOL
318 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "CPPController.h"
void ACPPController::BeginPlay()
{
Super::BeginPlay();
ChunkSize = ChunkLineElements * VoxelSize;
ChunkSizeHalf = ChunkSize / 1;
}
void ACPPController::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}