├── .gitignore ├── LICENSE ├── LiveUpdateForSlate.uplugin ├── README.md ├── Resources └── Icon128.png └── Source └── LiveUpdateForSlate ├── LiveUpdateForSlate.Build.cs ├── Private └── LiveUpdateForSlate.cpp └── Public ├── LiveUpdateForSlate.h └── LiveUpdateSlateSettings.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaderwitch/LiveUpdateForSlate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaderwitch/LiveUpdateForSlate/HEAD/LICENSE -------------------------------------------------------------------------------- /LiveUpdateForSlate.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaderwitch/LiveUpdateForSlate/HEAD/LiveUpdateForSlate.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaderwitch/LiveUpdateForSlate/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaderwitch/LiveUpdateForSlate/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/LiveUpdateForSlate/LiveUpdateForSlate.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaderwitch/LiveUpdateForSlate/HEAD/Source/LiveUpdateForSlate/LiveUpdateForSlate.Build.cs -------------------------------------------------------------------------------- /Source/LiveUpdateForSlate/Private/LiveUpdateForSlate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaderwitch/LiveUpdateForSlate/HEAD/Source/LiveUpdateForSlate/Private/LiveUpdateForSlate.cpp -------------------------------------------------------------------------------- /Source/LiveUpdateForSlate/Public/LiveUpdateForSlate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaderwitch/LiveUpdateForSlate/HEAD/Source/LiveUpdateForSlate/Public/LiveUpdateForSlate.h -------------------------------------------------------------------------------- /Source/LiveUpdateForSlate/Public/LiveUpdateSlateSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaderwitch/LiveUpdateForSlate/HEAD/Source/LiveUpdateForSlate/Public/LiveUpdateSlateSettings.h --------------------------------------------------------------------------------