-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from JanSeliv/develop
Develop
- Loading branch information
Showing
10 changed files
with
145 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Visual Studio 2015 user specific files | ||
.vs/ | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
*.ipa | ||
|
||
# These project files can be generated by the engine | ||
*.xcodeproj | ||
*.xcworkspace | ||
*.sln | ||
*.suo | ||
*.opensdf | ||
*.sdf | ||
*.VC.db | ||
*.VC.opendb | ||
|
||
# Precompiled Assets | ||
SourceArt/**/*.png | ||
SourceArt/**/*.tga | ||
|
||
# Binary Files | ||
Binaries/* | ||
Plugins/*/Binaries/* | ||
|
||
# Builds | ||
Build/* | ||
|
||
# Whitelist PakBlacklist-<BuildConfiguration>.txt files | ||
!Build/*/ | ||
Build/*/** | ||
!Build/*/PakBlacklist*.txt | ||
|
||
# Don't ignore icon files in Build | ||
!Build/**/*.ico | ||
|
||
# Built data for maps | ||
*_BuiltData.uasset | ||
|
||
# Configuration files generated by the Editor | ||
Saved/* | ||
|
||
# Compiled source files for the engine to use | ||
Intermediate/* | ||
Plugins/*/Intermediate/* | ||
|
||
# Cache files for the editor to use | ||
DerivedDataCache/* |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 Yevhenii Selivanov | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# ƒ Function Picker | ||
|
||
The Function Picker is a user-friendly plugin designed for Unreal Engine 5. It lets you choose a function for a specific property from any available asset or blueprint. You can either call it directly in your code as a callback, or bind the chosen function to a delegate, eliminating the traditional method of hardcoding the binding by referencing the function directly. | ||
|
||
![FunctionPicker](https://github.com/JanSeliv/FunctionPicker/assets/20540872/6371cfb4-7e4e-4f4e-84e6-12eab9adb375) | ||
|
||
## 📚 Documentation | ||
|
||
Detailed documentation about the Function Picker can be found [here](https://docs.google.com/document/d/1OcSFNPq_ZU5jt3nuFPSXep7BEQu5bC2CMEpWwsUJhxY). | ||
|
||
## 🎓 Sample Projects | ||
|
||
Check out our [Release](https://github.com/JanSeliv/FunctionPicker/releases) page a sample project showcasing the Function Picker. | ||
|
||
Also, explore this [game project repository](https://github.com/JanSeliv/Bomber) to view the Function Picker in action. | ||
|
||
## 📅 Changelog | ||
#### 2023-06-09 | ||
- 🎉 Initial public release. | ||
|
||
## 📫 Feedback & Contribution | ||
|
||
This is an open-source project and we encourage you to contribute. If you encounter any bugs, or if you have any feature requests, please file an issue in the GitHub repository. | ||
|
||
## 📜 License | ||
|
||
This project is licensed under the terms of the MIT license. See [LICENSE](LICENSE) for more details. | ||
|
||
We hope you find this plugin useful and we look forward to your feedback and contributions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters