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

https://github.com/AnomalousUnderdog/UnityCompactFieldAttribute

Lets each property label have their own width, to prevent the labels from getting cut off
https://github.com/AnomalousUnderdog/UnityCompactFieldAttribute

unity-editor unity3d unity3d-plugin

Last synced: about 1 year ago
JSON representation

Lets each property label have their own width, to prevent the labels from getting cut off

Awesome Lists containing this project

README

          

# UnityCompactFieldAttribute
Lets each property label have their own width, to prevent the labels from getting cut off

![Preview](/preview.gif "Preview")

## Installation
Copy the CompactField folder to your project.

## Usage
Add the CompactField attribute to your MonoBehaviour fields:

```csharp
[CompactField]
public float testFloat = 3.0f;

[CompactField]
public bool testBool;
```