Skip to content

Commit 3926a61

Browse files
committed
Update: README.md, package.json, CHANGELOG.md
1 parent b432dcd commit 3926a61

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

Assets/Editor Toolbox/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.14.1 [22.04.2025]
2+
3+
### Changed:
4+
- Ability to define [EditorButton] position (below or above the target property)
5+
- Improvements to the SerializedScene class & linked drawer
6+
- Fix rare issue with nested layouts
7+
18
## 0.14.0 [23.02.2025]
29

310
### Added:

Assets/Editor Toolbox/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ public int var1;
417417
![inspector](https://github.com/arimger/Unity-Editor-Toolbox/blob/develop/Docs/horizontal.png)
418418

419419
```csharp
420-
[EditorButton(nameof(MyMethod), "<b>My</b> Custom Label", activityType: ButtonActivityType.OnPlayMode, ValidateMethodName = nameof(ValidationMethod))]
420+
[EditorButton(nameof(MyMethod), "<b>My</b> Custom Label", activityType: ButtonActivityType.OnPlayMode, ValidateMethodName = nameof(ValidationMethod), PositionType = ButtonPositionType.Above)]
421421
public int var1;
422422

423423
private void MyMethod()

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.0",
4+
"version": "0.14.1",
55
"unity": "2018.1",
66
"description": "Tools, custom attributes, drawers, hierarchy overlay, and other extensions for the Unity Editor.",
77
"keywords": [

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ public int var1;
417417
![inspector](https://github.com/arimger/Unity-Editor-Toolbox/blob/develop/Docs/horizontal.png)
418418

419419
```csharp
420-
[EditorButton(nameof(MyMethod), "<b>My</b> Custom Label", activityType: ButtonActivityType.OnPlayMode, ValidateMethodName = nameof(ValidationMethod))]
420+
[EditorButton(nameof(MyMethod), "<b>My</b> Custom Label", activityType: ButtonActivityType.OnPlayMode, ValidateMethodName = nameof(ValidationMethod), PositionType = ButtonPositionType.Above)]
421421
public int var1;
422422

423423
private void MyMethod()

0 commit comments

Comments
 (0)