├── .gitignore ├── BlueprintUe.uplugin ├── LICENSE ├── README.md ├── Resources ├── ButtonIcon_40x.png └── Icon128.png └── Source └── BlueprintUe ├── BlueprintUe.Build.cs ├── Private ├── Api.cpp ├── BlueprintUe.cpp ├── BlueprintUeCommands.cpp ├── BlueprintUeSettings.cpp ├── BlueprintUeStyle.cpp ├── Log.cpp ├── SCreateBlueprint.cpp ├── SLastBlueprintsPasted.cpp ├── SMain.cpp └── SSettings.cpp └── Public ├── Api.h ├── BlueprintUe.h ├── BlueprintUeCommands.h ├── BlueprintUeSettings.h ├── BlueprintUeStyle.h ├── Log.h ├── PastedBlueprints.h ├── SCreateBlueprint.h ├── SLastBlueprintsPasted.h ├── SMain.h └── SSettings.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /BlueprintUe.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/BlueprintUe.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/ButtonIcon_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Resources/ButtonIcon_40x.png -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/BlueprintUe/BlueprintUe.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/BlueprintUe.Build.cs -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/Api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Private/Api.cpp -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/BlueprintUe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Private/BlueprintUe.cpp -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/BlueprintUeCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Private/BlueprintUeCommands.cpp -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/BlueprintUeSettings.cpp: -------------------------------------------------------------------------------- 1 | #include "BlueprintUeSettings.h" -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/BlueprintUeStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Private/BlueprintUeStyle.cpp -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/Log.cpp: -------------------------------------------------------------------------------- 1 | #include "Log.h" 2 | 3 | DEFINE_LOG_CATEGORY(LogBlueprintUe); -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/SCreateBlueprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Private/SCreateBlueprint.cpp -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/SLastBlueprintsPasted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Private/SLastBlueprintsPasted.cpp -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/SMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Private/SMain.cpp -------------------------------------------------------------------------------- /Source/BlueprintUe/Private/SSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Private/SSettings.cpp -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/Api.h -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/BlueprintUe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/BlueprintUe.h -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/BlueprintUeCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/BlueprintUeCommands.h -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/BlueprintUeSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/BlueprintUeSettings.h -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/BlueprintUeStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/BlueprintUeStyle.h -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/Log.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | BLUEPRINTUE_API DECLARE_LOG_CATEGORY_EXTERN(LogBlueprintUe, Log, All); -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/PastedBlueprints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/PastedBlueprints.h -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/SCreateBlueprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/SCreateBlueprint.h -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/SLastBlueprintsPasted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/SLastBlueprintsPasted.h -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/SMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/SMain.h -------------------------------------------------------------------------------- /Source/BlueprintUe/Public/SSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueprintue/blueprintue-cpp-plugin/HEAD/Source/BlueprintUe/Public/SSettings.h --------------------------------------------------------------------------------