An open API service indexing awesome lists of open source software.

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

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)