Skip to content

Instantly share code, notes, and snippets.

@sephirot47
Last active August 29, 2015 14:23
Show Gist options
  • Save sephirot47/a367fd5b5f90dca40107 to your computer and use it in GitHub Desktop.
Save sephirot47/a367fd5b5f90dca40107 to your computer and use it in GitHub Desktop.
UE4 Common crash causes
- GameMode, make sure none of them is null
- Null pointer exceptions
- Having instantiated in the level the same PlayerBP than the one in GameMode
(so when the game starts the GameMode puts another one and it gets duplicated )
- Having BAD CODE(code that can cause a crash), even on startup. Ye, if u have bad code it can crash on startup!!! UE4 does some sort of prebuild or something. Beware of putting code on the constructor that must go in the BeginPlay instead, this happened to me <3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment