From 2bf9e6090c6d121bc1fddf4d82319a524ad0d963 Mon Sep 17 00:00:00 2001 From: Fabian Keller Date: Sat, 16 Jul 2022 11:47:54 +0200 Subject: rename translate(d) to translate(d)_local in Transform 2D/3D --- modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs | 2 +- modules/mono/glue/GodotSharp/GodotSharp/Core/Transform3D.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/mono/glue') diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs index 89947899cb..e01db7b88c 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs @@ -347,7 +347,7 @@ namespace Godot /// /// The offset to translate by. /// The translated matrix. - public Transform2D Translated(Vector2 offset) + public Transform2D TranslatedLocal(Vector2 offset) { Transform2D copy = this; copy.origin += copy.BasisXform(offset); diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform3D.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform3D.cs index 7b211b6577..41565bf680 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform3D.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform3D.cs @@ -239,7 +239,7 @@ namespace Godot /// /// The offset to translate by. /// The translated matrix. - public Transform3D Translated(Vector3 offset) + public Transform3D TranslatedLocal(Vector3 offset) { return new Transform3D(basis, new Vector3 ( -- cgit v1.2.3