Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kirevdokimov/unitywatchtoolextension

This tool allows you to watch any variable from any MonoBehaviour via one simple attribute
https://github.com/kirevdokimov/unitywatchtoolextension

c-sharp extension unity

Last synced: 3 months ago
JSON representation

This tool allows you to watch any variable from any MonoBehaviour via one simple attribute

Awesome Lists containing this project

README

        

# Unity WatchTool Extension
This tool allows you to watch any variable from any MonoBehaviour via `[Watch]` attribute
## Usage
![Usage](usage.gif)
## Naming rules
```
[Watch] // GameObject and field names
public float angle = 7f;

[Watch("AwesomeRange")] // GameObject name and custom text
public float range = 7f;

[Watch("!Global")] // Custom text without GameObject name
public Vector3 global = Vector3.up;
```