-
-
Notifications
You must be signed in to change notification settings - Fork 105
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
Point 2D - y inverted? #67
Comments
This is by design, natural in computer coordinate system. If you want to invert Y axis, please use inverted value in your program. |
On second thought, inverted Y axis is more user-friendly so I'll add an option like |
Super - thank you! |
Added const PARAMS = {
offset: {x: 50, y: 50},
};
const pane = new Tweakpane();
pane.addInput(PARAMS, 'offset', {
y: {inverted: true},
}); |
I've noticed on the Point 2D input when you expand the pad that the y appears to be inverted. Not sure if this is intended?
I would expect the upper right quadrant of the pad to be +v.e for both x and y.
I tried reversing my min and max (and step) but this doesn't work.
I've attached an image

Chris
The text was updated successfully, but these errors were encountered: