mirror of
https://github.com/Ed94/Cog.git
synced 2026-08-05 15:18:47 +00:00
Update gitignore for Rider, fix typos
I use Rider as my IDE and when working with Unreal projects it installs a plugin that enable its unique integration. We don't want that being uploaded to the repo so it gets ignored. In addition, The project module has a typo, this commit fixes that
This commit is contained in:
@@ -1,6 +1,12 @@
|
|||||||
# Visual Studio 2015 user specific files
|
# Visual Studio 2015 user specific files
|
||||||
.vs/
|
.vs/
|
||||||
|
|
||||||
|
# Rider user specific files
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# Rider UnrealLink plugin, as the IDE will install and update itself
|
||||||
|
Plugins/Developer/RiderLink/
|
||||||
|
|
||||||
# Compiled Object files
|
# Compiled Object files
|
||||||
*.slo
|
*.slo
|
||||||
*.lo
|
*.lo
|
||||||
|
|||||||
+14
-14
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"FileVersion": 3,
|
"FileVersion": 3,
|
||||||
"EngineAssociation": "5.1",
|
"EngineAssociation": "{3A102A73-4E1B-A4EE-9D23-BC868A1B3015}",
|
||||||
"Category": "",
|
"Category": "",
|
||||||
"Description": "",
|
"Description": "",
|
||||||
"Modules": [
|
"Modules": [
|
||||||
@@ -10,17 +10,17 @@
|
|||||||
"LoadingPhase": "Default"
|
"LoadingPhase": "Default"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"Plugins": [
|
"Plugins": [
|
||||||
{
|
{
|
||||||
"Name": "GameplayAbilities",
|
"Name": "GameplayAbilities",
|
||||||
"Enabled": true
|
"Enabled": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "ModelingToolsEditorMode",
|
"Name": "ModelingToolsEditorMode",
|
||||||
"Enabled": true,
|
"Enabled": true,
|
||||||
"TargetAllowList": [
|
"TargetAllowList": [
|
||||||
"Editor"
|
"Editor"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -23,7 +23,7 @@ DEFINE_LOG_CATEGORY(LogCogTargetAcquisition);
|
|||||||
|
|
||||||
namespace CogSampleLog
|
namespace CogSampleLog
|
||||||
{
|
{
|
||||||
void RegiterAllLogCategories()
|
void RegisterAllLogCategories()
|
||||||
{
|
{
|
||||||
#if ENABLE_COG
|
#if ENABLE_COG
|
||||||
FCogDebugLog::AddLogCategory(LogCogAlways, "Always", "Debug Category that is always active", false);
|
FCogDebugLog::AddLogCategory(LogCogAlways, "Always", "Debug Category that is always active", false);
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
#pragma once
|
||||||
#include "CoreMinimal.h"
|
#include "CoreMinimal.h"
|
||||||
|
|
||||||
DECLARE_LOG_CATEGORY_EXTERN(LogCogAlways, VeryVerbose, All);
|
DECLARE_LOG_CATEGORY_EXTERN(LogCogAlways, VeryVerbose, All);
|
||||||
@@ -16,5 +17,5 @@ DECLARE_LOG_CATEGORY_EXTERN(LogCogTargetAcquisition, Warning, All);
|
|||||||
|
|
||||||
namespace CogSampleLog
|
namespace CogSampleLog
|
||||||
{
|
{
|
||||||
void RegiterAllLogCategories();
|
void RegisterAllLogCategories();
|
||||||
}
|
}
|
||||||
@@ -20,7 +20,7 @@ private:
|
|||||||
//--------------------------------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------------------------------
|
||||||
void FCogSampleModule::StartupModule()
|
void FCogSampleModule::StartupModule()
|
||||||
{
|
{
|
||||||
CogSampleLog::RegiterAllLogCategories();
|
CogSampleLog::RegisterAllLogCategories();
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user