Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Finish v1.1-r25.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ufna committed Apr 9, 2019
2 parents 9d10e6a + a31033b commit 37e3c0a
Show file tree
Hide file tree
Showing 23 changed files with 807 additions and 842 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Key features:

Check the [Wiki](https://hiazma.atlassian.net/wiki/display/VAR) for plugin usage examples and installation notes.

Current version: **1.1 R 25** (UE 4.21)
Current version: **1.1 R 25** (UE 4.22)

![SCREENSHOT](SCREENSHOT.jpg)

Expand Down
22 changes: 22 additions & 0 deletions Source/.clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
Language: Cpp
BasedOnStyle: LLVM
IndentWidth: 4
TabWidth: 4
UseTab: Always
Standard: Cpp11
AccessModifierOffset: -4
AlignAfterOpenBracket: DontAlign
AlignEscapedNewlines: Right
AlignTrailingComments: true
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: InlineOnly
BreakBeforeBraces: Allman
BreakConstructorInitializersBeforeComma: true
ColumnLimit: 0
PointerAlignment: Left
SpacesInAngles: false
...
---
Language: ObjC
...
7 changes: 2 additions & 5 deletions Source/VaRestEditorPlugin/Classes/VaRest_BreakJson.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,13 @@ class VARESTEDITORPLUGIN_API UVaRest_MakeJson : public UK2Node
// End UK2Node interface.

protected:
virtual void CreateProjectionPins(UEdGraphPin *Source);
virtual void CreateProjectionPins(UEdGraphPin* Source);

public:
UPROPERTY(EditAnywhere, Category = PinOptions)
TArray<FVaRest_NamedType> Inputs;

};


UCLASS(BlueprintType, Blueprintable)
class VARESTEDITORPLUGIN_API UVaRest_BreakJson : public UK2Node
{
Expand All @@ -92,10 +90,9 @@ class VARESTEDITORPLUGIN_API UVaRest_BreakJson : public UK2Node
// End UK2Node interface.

protected:
virtual void CreateProjectionPins(UEdGraphPin *Source);
virtual void CreateProjectionPins(UEdGraphPin* Source);

public:
UPROPERTY(EditAnywhere, Category = PinOptions)
TArray<FVaRest_NamedType> Outputs;

};
2 changes: 1 addition & 1 deletion Source/VaRestEditorPlugin/Private/VaRestEditorPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ void FVaRestEditorPluginModule::ShutdownModule()
}

#undef LOCTEXT_NAMESPACE

IMPLEMENT_MODULE(FVaRestEditorPluginModule, VaRestEditorPlugin)
Loading

0 comments on commit 37e3c0a

Please sign in to comment.