Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kirevdokimov/unitywatchtoolextension
- Owner: kirevdokimov
- Created: 2017-08-04T16:43:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-04T18:00:24.000Z (over 7 years ago)
- Last Synced: 2024-08-03T05:16:20.250Z (6 months ago)
- Topics: c-sharp, extension, unity
- Language: C#
- Homepage:
- Size: 292 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```