+++ Updated for UE 5.1 (see bottom)
For autocompletion there are two options:
// Tailwind colors for Flexoki theme by Steph Ango. https://stephango.com/flexoki | |
const colors = { | |
base: { | |
black: '#100F0F', | |
950: '#1C1B1A', | |
900: '#282726', | |
850: '#343331', | |
800: '#403E3C', | |
700: '#575653', |
{ | |
"FileVersion": 3, | |
"EngineAssociation": "5.2", | |
"Description": "Minimum viable plugin dependencies for a usable Unreal Engine project", | |
"DisableEnginePluginsByDefault": true, | |
"Plugins": [ | |
{ | |
"Name": "PluginBrowser", | |
"Enabled": true | |
}, |
--- a/Engine/Source/Programs/UnrealBuildTool/Configuration/ModuleRules.cs | |
+++ b/Engine/Source/Programs/UnrealBuildTool/Configuration/ModuleRules.cs | |
@@ -606,6 +606,10 @@ namespace UnrealBuildTool | |
{ | |
get | |
{ | |
+ if (bCodeCoverage) { | |
+ return CodeOptimization.Never; | |
+ } | |
+ |
//------------------------------------------------------------------------------------------------------------------------------ | |
struct MyType | |
{ | |
int x = 0; | |
void Mutate() { ++x; } | |
}; | |
//------------------------------------------------------------------------------------------------------------------------------ |
FAssetRegistryModule& AssetRegistryModule = FModuleManager::LoadModuleChecked<FAssetRegistryModule>("AssetRegistry"); | |
TArray<FAssetData> AssetData; | |
AssetRegistryModule.Get().GetAssetsByClass(UBlueprint::StaticClass()->GetFName(), AssetData, true); | |
for (FAssetData& Asset : AssetData) | |
{ | |
if (Asset.ObjectPath.ToString().StartsWith("/Game/")) |
call "GetMSBuildPath.bat" | |
cd ../../ | |
%MSBUILD_EXE% /nologo /verbosity:quiet Source\Programs\AutomationTool\Gauntlet\Gauntlet.Automation.csproj /property:Configuration=Development /property:Platform=AnyCPU |
THIS WAS ORIGINALLY POSTED ON MY TUMBLR ON FEB 25, 2011. I forgot I had a Tumblr account. I recently logged in (in light of the acquisition by Automattic), found some old posts, and I'm republishing them exactly as they were with zero modifications.
Amazon announced CloudFormation to the public yesterday, and while the general opinion I could glean from various sources shows that people are excited about this new technology, many are still unsure what it is and how it fits into their current cloud workflow. I feel as though I have a firm grasp on CloudFormation and will attempt to answer some questions here.
Note: I'm definitely not a representative of Amazon in any way, and anything here is simply my educated opinion on the matter.
Item 1: View C++ as a federation of languages
Item 2: Prefer consts, enums, and inlines to #defines
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks