Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Plugins/MaxQ/MaxQ.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"FileVersion": 3,
"Version": 8,
"VersionName": "1.0069.0",
"EngineVersion": "5.6",
"EngineVersion": "5.7",
"FriendlyName": "MaxQ Spaceflight Toolkit",
"Description": "MaxQ is powered by the SPICE Toolkit software released by NASA/JPL/NAIF, which is the premier Space Flight toolset for space flight planning and analysis.",
"Category": "Spaceflight",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include "BlueprintNodeSpawner.h"
#include "K2Node_CallFunction.h"
#include "Textures/SlateIcon.h"
#include "UObject/UObjectGlobals.h"

using namespace ENodeTitleType;

Expand Down Expand Up @@ -64,7 +65,7 @@ void UK2Node_OutWithSelectorOp::AllocateDefaultPins()
UEdGraphPin* errorMessagePin = CreatePin(EGPD_Output, UEdGraphSchema_K2::PC_String, errorMessage_PinName);
errorMessagePin->PinToolTip = TEXT("An error message, if the action fails");

static UEnum* ComponentSelectorEnum = FindObject<UEnum>(FTopLevelAssetPath(TEXT("/Script/SpiceUncooked.EK2_ComponentSelector")), /*ExactClass*/true);
static UEnum* ComponentSelectorEnum = FindObject<UEnum>(FTopLevelAssetPath(TEXT("/Script/SpiceUncooked.EK2_ComponentSelector")), EFindObjectFlags::ExactClass);
if (ensure(IsValid(ComponentSelectorEnum)))
{
auto selector = CreatePin(EGPD_Input, UEdGraphSchema_K2::PC_Byte, ComponentSelectorEnum, selector_PinName);
Expand Down Expand Up @@ -290,7 +291,7 @@ bool UK2Node_OutWithSelectorOp::MatchMe(OperationType& operation, FEdGraphPinTyp

EK2_ComponentSelector UK2Node_OutWithSelectorOp::selectorPinValue() const
{
static UEnum* ComponentSelectorEnum = FindObject<UEnum>(FTopLevelAssetPath(TEXT("/Script/SpiceUncooked.EK2_ComponentSelector")), /*ExactClass*/true);
static UEnum* ComponentSelectorEnum = FindObject<UEnum>(FTopLevelAssetPath(TEXT("/Script/SpiceUncooked.EK2_ComponentSelector")), EFindObjectFlags::ExactClass);

if (ensure(IsValid(ComponentSelectorEnum)))
{
Expand Down Expand Up @@ -323,4 +324,4 @@ void UK2Node_OutWithSelectorOp::NotifyConnectionChanged(UEdGraphPin* Pin, UEdGra
NotifyPinConnectionListChanged(Pin);
}

#undef LOCTEXT_NAMESPACE
#undef LOCTEXT_NAMESPACE
2 changes: 1 addition & 1 deletion Source/Spice.Target.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class SpiceTarget : TargetRules
public SpiceTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V5;
DefaultBuildSettings = BuildSettingsVersion.V6;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
CppStandard = CppStandardVersion.Cpp20;

Expand Down
3 changes: 1 addition & 2 deletions Source/SpiceEditor.Target.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ public class SpiceEditorTarget : TargetRules
public SpiceEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
DefaultBuildSettings = BuildSettingsVersion.V6;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
CppStandard = CppStandardVersion.Cpp20;

bUseFastPDBLinking = false;
bPublicSymbolsByDefault = true; // <- Forced to true on Windows anyways
WindowsPlatform.bStripUnreferencedSymbols = false;

Expand Down
2 changes: 1 addition & 1 deletion Spice.uproject
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"FileVersion": 3,
"EngineAssociation": "5.6",
"EngineAssociation": "5.7",
"Category": "",
"Description": "",
"Modules": [
Expand Down