Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All TransformComponent extension methods should allow you to use them on TransformComponents that have UseTRS set to false. #4

Open
dfkeenan opened this issue May 5, 2018 · 1 comment

Comments

@dfkeenan
Copy link
Owner

dfkeenan commented May 5, 2018

My first attempt to do these methods that worked with UseTRS set to true or false didn't seem to work correctly when updating the matrices directly. So temporarily not supporting TransformComponents with UserTRS set to false.

Need some help with people who know there math better than I do.

@dfkeenan dfkeenan changed the title All TransformComponent extension methods should allow you to use them on TransformComponents that have UseTRS set to false. All TransformComponent extension methods should allow you to use them on TransformComponents that have UseTRS set to false. May 5, 2018
@stefnotch
Copy link

This seems to work:

public static void Translate(this TransformComponent transform, ref Vector3 translation, Space relativeTo = Space.Self)
{
	if (transform == null)
	{
		throw new ArgumentNullException(nameof(transform));
	}

	var localTranslation = translation;
        if (relativeTo == Space.Self) {
	        Vector3.TransformNormal(ref translation, ref transform.WorldMatrix, out localTranslation);
        }
	if (transform.Parent != null)
	{
		Matrix.Invert(ref transform.Parent.WorldMatrix, out var inverseParent);
		Vector3.TransformNormal(ref localTranslation, ref inverseParent, out localTranslation);
	}

	if (transform.UseTRS) {
		transform.Position += localTranslation;
	} else {
		transform.LocalMatrix.TranslationVector += localTranslation;
	}

	transform.UpdateWorldMatrix();
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants