I have been playing 7 Days to Die with some friends a lot lately. best zombie apocalypse survival, crafting, building game ever.
I also have been learning Unreal Engine over the past several months... ever since I got a Vive and wanted to start making my own experiences... and Epic Games provides the engine and an absolutely fantastic visual scripting development environment for FREE.
you have all seen code look like this:
Code:
if(failure_category == true)
{
new_html += '<DIV style="font-size:80%;font-family:Segoe UI;color:#FF0000;font-weight:bold">'+heading+'</DIV>';
}
else
{
new_html += '<DIV style="font-size:90%;font-family:Segoe UI;color:#000000;">'+heading+'</DIV>';
}
Coding in Unreal Engine looks like this: