├── Config └── FilterPlugin.ini ├── Resources ├── Splash.png └── Icon128.png ├── Content └── WB_FastSwitcher.uasset ├── Documentation └── FastSwitcher_UserGuide.pdf ├── FastSwitcher.uplugin ├── README.md └── LICENSE /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- 1 | [FilterPlugin] 2 | /Documentation/ 3 | -------------------------------------------------------------------------------- /Resources/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/FastSwitcher/HEAD/Resources/Splash.png -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/FastSwitcher/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Content/WB_FastSwitcher.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/FastSwitcher/HEAD/Content/WB_FastSwitcher.uasset -------------------------------------------------------------------------------- /Documentation/FastSwitcher_UserGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameDNAstudio/FastSwitcher/HEAD/Documentation/FastSwitcher_UserGuide.pdf -------------------------------------------------------------------------------- /FastSwitcher.uplugin: -------------------------------------------------------------------------------- 1 | { 2 | "FileVersion": 3, 3 | "Version": 1, 4 | "VersionName": "1.6.0", 5 | "FriendlyName": "Fast Switcher", 6 | "Description": "Loads only the needed widget", 7 | "Category": "Widgets", 8 | "CreatedBy": "gameDNA", 9 | "CreatedByURL": "http://gamednastudio.com", 10 | "DocsURL": "http://gamednastudio.com/plugins/docs/FastSwitcher_UserGuide.pdf", 11 | "MarketplaceURL": "", 12 | "EngineVersion": "4.23.0", 13 | "SupportURL": "mailto:support@gamednastudio.com", 14 | "CanContainContent": true, 15 | "IsBetaVersion": false, 16 | "Installed": true, 17 | "EnabledByDefault": true, 18 | "WhitelistPlatforms": [ 19 | "Win64", 20 | "Win32", 21 | "Linux", 22 | "Mac", 23 | "IOS", 24 | "Android" 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Splash](Resources/Splash.png) 2 | 3 | # Fast Switcher 4 | 5 | **Fast Switcher** for Unreal Motion Graphics loads only the needed widget. Default widget switcher in Unreal Engine 4 loads all widgets into the memory and switches between them without unloading inactive ones. The Fast Switcher for Unreal Motion Graphics widget loads only the needed one and unloads it when you switch to another. Widgets caching functionality can be optionally enabled. Fast Switcher is made in Blueprints. 6 | 7 | **Current version:** 1.6.0 8 | 9 | ## Features 10 | * Loads only the needed widget 11 | * Unloads widget when you switch to another 12 | * Widgets caching optionally 13 | * Exposed to Blueprints 14 | * No additional libraries are needed 15 | 16 | 17 | ## User Guide 18 | More info about plugin and installation instructions you can find in [User Guide](Documentation/FastSwitcher_UserGuide.pdf). 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 gameDNA Ltd 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------