You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-05 17:15:09 +00:00
C#: Remove unused Transform2D.ScaleBasis method
This commit is contained in:
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user