강의

멘토링

로드맵

profile image

NanoSecond

@nanosecond

受講生

5

受講レビュー

-

講義評価

-

void Nanosecond::Update(float DeltaTime)
{
    #ifdef WITH_UNREAL
        // 현실보다 엔진 쪽이 디버깅하기 쉬움
        DebugTheUnreal();
        RenderDreams();
    #else
        // 퇴사 버튼은 Shipping 빌드에서만 활성화
        const float EscapeVelocity =
            CalculateIndependentPath(DeltaTime);

        BuildIndependentLife(EscapeVelocity);
    #endif
}

講義