We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CharTweener.Properties is lacking the Get/Set methods for managing the proxy transform's localPositions.
CharTweener.Properties
localPosition
As far as I can see, this can easily be implemented with:
public Vector3 GetLocalPosition(int charIndex) { return proxyTransforms == null ? Vector3.zero : GetProxyTransform(charIndex).localPosition; } public void SetLocalPosition(int charIndex, Vector3 localPosition) { GetProxyTransform(charIndex).localPosition = localPosition; _updateVerticesPending = true; }
I've added it for me locally, but I guess it could be useful in the repo!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
CharTweener.Properties
is lacking the Get/Set methods for managing the proxy transform'slocalPosition
s.As far as I can see, this can easily be implemented with:
I've added it for me locally, but I guess it could be useful in the repo!
The text was updated successfully, but these errors were encountered: