summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgnacio Roldán Etcheverry <neikeq@users.noreply.github.com>2022-08-01 22:38:17 +0200
committerGitHub <noreply@github.com>2022-08-01 22:38:17 +0200
commit8243c7ab5df9d341209d339ab001fd8e49ee95b3 (patch)
tree5208aea1a9254cde03ded95e344ebb4f19bf55b8
parent67c5741c0380077a87fd653157df2b87150ad0f6 (diff)
parenta4ad1dfa517cf995f8aa5b913ac9726abca620f7 (diff)
Merge pull request #63790 from raulsntos/csharp-unused
C#: Remove unused `Transform2D.ScaleBasis` method
-rw-r--r--modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs
index 7861ece61b..b8413f1e16 100644
--- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs
+++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs
@@ -320,14 +320,6 @@ namespace Godot
return copy;
}
- private void ScaleBasis(Vector2 scale)
- {
- x.x *= scale.x;
- x.y *= scale.y;
- y.x *= scale.x;
- y.y *= scale.y;
- }
-
private real_t Tdotx(Vector2 with)
{
return (this[0, 0] * with[0]) + (this[1, 0] * with[1]);