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: about 1 year 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-04T18:00:24.000Z (almost 9 years ago)
- Last Synced: 2025-04-25T05:56:15.967Z (about 1 year 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

## 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;
```