diff --git a/formatters/.editorconfig b/formatters/.editorconfig index 65b41a160..22fdec84d 100644 --- a/formatters/.editorconfig +++ b/formatters/.editorconfig @@ -12,7 +12,7 @@ indent_style = tab tab_width = 4 # New line preferences -end_of_line = crlf +end_of_line = lf insert_final_newline = true #### .NET Coding Conventions #### diff --git a/spine-csharp/src/ColorMono.cs b/spine-csharp/src/ColorMono.cs index fc59368e6..87f1040b3 100644 --- a/spine-csharp/src/ColorMono.cs +++ b/spine-csharp/src/ColorMono.cs @@ -51,7 +51,7 @@ namespace Spine { } public static implicit operator Color32F (Microsoft.Xna.Framework.Color xnaColor) { - return new Color32F(xnaColor); + return new Color32F(xnaColor); } public static implicit operator Microsoft.Xna.Framework.Color (Color32F c) { diff --git a/spine-csharp/src/IkConstraintPose.cs b/spine-csharp/src/IkConstraintPose.cs index b5cfdc96f..b62835b0c 100644 --- a/spine-csharp/src/IkConstraintPose.cs +++ b/spine-csharp/src/IkConstraintPose.cs @@ -36,7 +36,7 @@ namespace Spine { internal int bendDirection; internal bool compress, stretch; internal float mix, softness; - + public void Set (IkConstraintPose pose) { mix = pose.mix; softness = pose.softness;