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

Add property viewer to DrawVisualiser #780

Merged
merged 33 commits into from
Jun 16, 2017
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
9811970
Better visualizer
Jun 3, 2017
a2d6ce0
Override ToStrings
Jun 3, 2017
92a0322
Bottom-right display
Jun 3, 2017
7c10866
Little fixes
Jun 3, 2017
d691fa8
Attach PropertyDisplay to highlight
Jun 3, 2017
2d6495f
Parent highlighting
Jun 3, 2017
e96128c
Truncate double
Jun 3, 2017
442cd0e
Appear right next to the tree
Jun 3, 2017
e02fba2
Suggestions
Jun 4, 2017
7165cf6
Unnecessary
Jun 4, 2017
57ca2fb
AlmostRounded for near integer rounding
Jun 5, 2017
e82ed0c
Fixes
Jun 5, 2017
e5cc325
Trim whitespace
Jun 5, 2017
2551db6
Better use of Math.Round
Jun 5, 2017
4d40b47
Just round
Jun 5, 2017
5c78b42
Semicolon
Jun 5, 2017
051fd0e
Add xml documentation
Jun 5, 2017
95f609c
Merge branch 'master' into better-viz
Jun 6, 2017
c6ef468
Merge branch 'master' into better-viz
Jun 7, 2017
372dc8d
Cleanups.
Jun 7, 2017
c5dd98a
CI cleanups.
Jun 7, 2017
8655843
Cleanups and fixes
Jun 13, 2017
c940bc2
Merge branch 'master' into better-viz
Jun 13, 2017
dab603a
Fix EdgeEffect ToString when None
Jun 13, 2017
634b888
Code styling improvements
Jun 14, 2017
5ba107b
Move PropertyItem into PropertyDisplay
Jun 14, 2017
26a1bc1
Use ? expression
Jun 14, 2017
e7768ab
Merge branch 'master' into better-viz
peppy Jun 16, 2017
afb61e5
Combine PropertyDisplay and DrawVisualiser
peppy Jun 16, 2017
29417a4
Standardise padding and text sizes
peppy Jun 16, 2017
e2afd04
Improve right click behaviour
peppy Jun 16, 2017
2e8e7e3
Styling improvements
peppy Jun 16, 2017
8f632b9
Don't hide property viewer when double-clicking a new target
peppy Jun 16, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion osu.Framework/MathUtils/Precision.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static double Round(double value, int numOfDigits = 7)

public static float Round(float value, int numOfDigits = 3)

This comment was marked as off-topic.

{
return (float)Math.Round(value, numOfDigits)
return (float)Math.Round(value, numOfDigits);
}
}
}