Skip to content

Commit d1cc259

Browse files
committed
Update: README.md, CHANGELOG.md, package.json
1 parent a9c9d29 commit d1cc259

5 files changed

Lines changed: 44 additions & 1 deletion

File tree

Assets/Editor Toolbox/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.14.5 [12.08.2026]
2+
3+
### Added:
4+
- Ability to display properties inside Tab-based groups ([BeginTabGroup], [Tab], [EndTabGroup])
5+
6+
### Changed:
7+
- Fix issues with drawing nested properties after changing parent's type using [ReferencePicker]
8+
- Fix crash caused by [SerializeReference]-based list elements
9+
- Fix various cases where layout groups were not adjusted to the indentation level
10+
- Toolbox drawers now have priority over built-in native drawers
11+
112
## 0.14.4 [11.04.2026]
213

314
### Changed:

Assets/Editor Toolbox/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,22 @@ public int veryVeryVeryVeryVeryLongName;
465465

466466
![inspector](https://github.com/arimger/Unity-Editor-Toolbox/blob/develop/Docs/labelwidth.png)
467467

468+
```csharp
469+
[BeginTabGroup(groupId: "main_group")]
470+
[Tab(tab: "General")]
471+
public string characterName;
472+
[Tab(tab: "Movement")]
473+
public float moveSpeed;
474+
[Tab(tab: "Movement")]
475+
public float jumpForce;
476+
[Tab(tab: "Attack")]
477+
public Vector2 attackForce;
478+
[Tab(tab: "Attack")]
479+
[EndTabGroup]
480+
public int attackDamage;
481+
```
482+
483+
![inspector](https://github.com/arimger/Unity-Editor-Toolbox/blob/develop/Docs/tabs.png)
468484

469485
#### Toolbox Condition Attributes <a name="toolboxcondition"></a>
470486

Assets/Editor Toolbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.browar.editor-toolbox",
33
"displayName": "Editor Toolbox",
4-
"version": "0.14.4",
4+
"version": "0.14.5",
55
"unity": "2018.1",
66
"description": "Tools, custom attributes, drawers, hierarchy overlay, and other extensions for the Unity Editor.",
77
"keywords": [

Docs/tabs.png

4.1 KB
Loading

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,22 @@ public int veryVeryVeryVeryVeryLongName;
465465

466466
![inspector](https://github.com/arimger/Unity-Editor-Toolbox/blob/develop/Docs/labelwidth.png)
467467

468+
```csharp
469+
[BeginTabGroup(groupId: "main_group")]
470+
[Tab(tab: "General")]
471+
public string characterName;
472+
[Tab(tab: "Movement")]
473+
public float moveSpeed;
474+
[Tab(tab: "Movement")]
475+
public float jumpForce;
476+
[Tab(tab: "Attack")]
477+
public Vector2 attackForce;
478+
[Tab(tab: "Attack")]
479+
[EndTabGroup]
480+
public int attackDamage;
481+
```
482+
483+
![inspector](https://github.com/arimger/Unity-Editor-Toolbox/blob/develop/Docs/tabs.png)
468484

469485
#### Toolbox Condition Attributes <a name="toolboxcondition"></a>
470486

0 commit comments

Comments
 (0)