Skip to content

Commit

Permalink
Fix visual tree asset property query generation in bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
Eastrall committed Sep 14, 2022
1 parent ac4d731 commit e0b6005
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Editor/Scripts/Generator/RosalinaBindingsGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private static InitializationStatement[] GenerateInitializeStatements(UxmlDocume
SyntaxFactory.Argument(
SyntaxFactory.LiteralExpression(
SyntaxKind.StringLiteralExpression,
SyntaxFactory.Literal(uiProperty.Name)
SyntaxFactory.Literal(uiProperty.OriginalName)
)
)
});
Expand Down
2 changes: 1 addition & 1 deletion Editor/Scripts/RosalinaConstants.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if UNITY_EDITOR
public class RosalinaConstants
{
public const string Version = "1.0.4";
public const string Version = "1.2.1";
}
#endif
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.eastylabs.rosalina",
"version": "1.2.0",
"version": "1.2.1",
"type": "tool",
"displayName": "Rosalina",
"unity": "2021.2",
Expand Down

0 comments on commit e0b6005

Please sign in to comment.