Merge pull request #63684 from aaronfranke/translated
Fix TranslatedLocal method in C# affecting the original transform
This commit is contained in:
commit
c2d55a4e1a
1 changed files with 3 additions and 3 deletions
|
@ -243,9 +243,9 @@ namespace Godot
|
|||
{
|
||||
return new Transform3D(basis, new Vector3
|
||||
(
|
||||
origin[0] += basis.Row0.Dot(offset),
|
||||
origin[1] += basis.Row1.Dot(offset),
|
||||
origin[2] += basis.Row2.Dot(offset)
|
||||
origin[0] + basis.Row0.Dot(offset),
|
||||
origin[1] + basis.Row1.Dot(offset),
|
||||
origin[2] + basis.Row2.Dot(offset)
|
||||
));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue