Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [0.6.3-beta] - Aug 10, 2024
- Added Counter State
- Fix: When scenes with multiple StateMachineControllers load the selected controller and the first controller in the scene were both loaded into the same StateMachineEditor

## [0.6.2-beta] - Aug 05, 2024
- Fix for the Entry node often missing from new StateMachineModels when first created
- Fix for positioning new nodes correctly irrespective of zoom level
Expand Down
77 changes: 77 additions & 0 deletions Editor/Resources/CounterNodeView.uss
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
.node #title {
flex-direction: row;
height:50px;
}

.node #title-label {
font-size: 14px;
margin-left: 18px;
margin-right: 5px;
flex-grow: 1;
-unity-text-align: middle-center;
-unity-font-style: Bold;
}

.node #title-container {
margin-top: 6px;
margin-bottom: 6px;
flex-direction: row;
}

.node IntegerField {
min-width: 50px;
max-width: 100px;
}

.unity-text-element {
-unity-text-align: middle-center;
}

.node #title-button-container {
visibility: hidden;
width:0;
height:0;
}

.node #title-icon {
min-width:18px;
min-height:18px;
width: 18px;
height:18px;
margin-left: 3px;
margin-right: 6px;
margin-bottom: 3px;
align-self: center;
}

.node #state-border {
position: absolute;
right: 0;
left: 0;
top: 0;
bottom: 0;
border-color: green;
border-width: 2px;
border-radius: 8px;
opacity:0;
margin:1px;
}

Port {
height: 100%;
width: 25px;
min-width: 25px;
padding-top:12px;
}

Port Label {
display: none;
}

.node #contents {
display: none;
}

.node #property-container {
flex-direction: column;
}
3 changes: 3 additions & 0 deletions Editor/Resources/CounterNodeView.uss.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Editor/Resources/Icons/Nodes/plus-circle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
114 changes: 114 additions & 0 deletions Editor/Resources/Icons/Nodes/plus-circle.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Editor/Resources/Icons/Nodes/plus-square.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
114 changes: 114 additions & 0 deletions Editor/Resources/Icons/Nodes/plus-square.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Editor/Resources/Icons/Nodes/post-solid.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading