https://github.com/ilyachichkov/events-showcase
Unity events showcase is a editor extension
https://github.com/ilyachichkov/events-showcase
unity unity-package unity-tool
Last synced: 6 months ago
JSON representation
Unity events showcase is a editor extension
- Host: GitHub
- URL: https://github.com/ilyachichkov/events-showcase
- Owner: IlyaChichkov
- License: apache-2.0
- Created: 2023-05-10T19:02:04.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-21T19:43:24.000Z (almost 3 years ago)
- Last Synced: 2025-02-23T10:17:08.383Z (about 1 year ago)
- Topics: unity, unity-package, unity-tool
- Language: C#
- Homepage:
- Size: 2.99 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Unity Events Showcase
UES is a editor extension allowing you run any object method from editor window with just a few clicks.
UES Window
## Features
✅ Works both in editor and play modes
✅ Accesses object's methods with select object menu
✅ Run static methods
✅ Update with a single button
## Install
1. Git URL
Get most recent package version from git
Window -> Package Manager -> Add from git URL
git@github.com:IlyaChichkov/Events-Showcase.git
2. Download package file
Download release archive from github
Window -> Package Manager -> Add from disk
## How to use
1. Import package
```cs
using UES;
```
2. Add attribute to your class method:
```cs
// ConsoleCommand('name', 'group', 'description')
[ConsoleCommand("move-left", "move", "")]
public void MoveLeft()
{
// Some movement code...
}
```
### Bugs
This is very raw project with many bugs and shortcomings and I do my best to make it better and stable, I will be pleased for any feedback. Please take it to you considerations. Author doesn't responsible for any crashes in you project.
### Unity tested version
2021.3 4f1
## Author
Github - [@IlyaChichkov](https://github.com/IlyaChichkov/)
Email - [ilya.chichkov.dev@gmail.com](mailto:ilya.chichkov.dev@gmail.com)