Ok so after I took a pause to clear my head… I found the super simple n00by mistake inside my source/cellworld_vr.cpp file.
WRONG:
#include "cellworld_vr.h"
#include "Modules/ModuleManager.h"
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, EyeTrackingVR, "EyeTrackingVR" );
CORRECT:
#include "cellworld_vr.h"
#include "Modules/ModuleManager.h"
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, cellworld_vr, "cellworld_vr" );
Not sure how it got like that, maybe I imported it from my other project? I don’t know why I’d do that since this file is autogenerated when you create a blank c++ project. Anyways, at least everything is working now.
Don’t copy/past code from your old projects (or be very careful at least)!!
best,
alex