aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Replaces Guava's Multimap by Java Map in ardor3d-animation (issue #13)Julien Gouesse2019-05-271-7/+35
|
* Replaces Guava's Multimap by Java Map in ardor3d-ui (issue #13)Julien Gouesse2019-05-271-8/+14
|
* Fixes Arial 16 thanks to Renanse's commit ↵Julien Gouesse2019-05-275-1404/+1439
| | | | 2172c9c21ea55024e61635c58e4eb1add7fc656d
* Replaces Guava's enum multisets by Java EnumMap (issue #13)Julien Gouesse2019-05-274-46/+40
|
* Fixes a bug introduced while fixing the issue #13: the keyboard input was no ↵Julien Gouesse2019-05-271-5/+2
| | | | longer working when using JOGL with NEWT
* Sets the compiler compliance to 1.8Julien Gouesse2019-05-2618-58/+77
|
* Disables the tests of the physical layerJulien Gouesse2019-05-261-130/+123
|
* Fixes the compile errors caused by the previous commit in a testJulien Gouesse2019-05-261-57/+57
|
* Replaces Guava's Predicate by Java 8 Predicate (issue #13)Julien Gouesse2019-05-2622-138/+152
|
* Replaces Guava's AbstractIterator by a modified copy of this classJulien Gouesse2018-09-144-3/+197
|
* Replaces Guava's PeekingIteratorJulien Gouesse2018-09-1316-250/+248
|
* Replaces Guava's ByteSource in ardor3d-terrainJulien Gouesse2018-07-144-57/+56
|
* Replaces Guava's ThreadFactoryBuilderJulien Gouesse2018-07-141-8/+29
|
* Replaces Guava's checkArgumentJulien Gouesse2018-07-141-6/+8
|
* Replaces Guava's checkNotNull by Objects.requireNonNullJulien Gouesse2018-07-144-17/+14
|
* Merge branch 'master' of https://github.com/gouessej/Ardor3DJulien Gouesse2018-07-141-1/+3
|\
| * Update README.mdJulien Gouesse2018-06-041-1/+3
| |
* | Replaces Guava's checkNonNull by Objects.requireNonNullJulien Gouesse2018-07-144-15/+14
|/
* Drops Guava's immutable lists, sets and mapsJulien Gouesse2018-02-1216-123/+140
|
* Merges several Renanse's commitsJulien Gouesse2018-01-2783-1370/+2150
|\
| * Added an additional default to GridLayoutDataJoshua Slack2018-01-151-4/+14
| |
| * Updated interact widget mouseover code to pass through Canvas and provided a ↵Joshua Slack2018-01-1514-25/+201
| | | | | | | | | | | | | | callback for mouse over/out. Added simple cursor setting callbacks to the basic interact classes. Added a few cursor graphics that may be used with InteractWidgets
| * Update to mouse manager allowing null to be passed to setCursor to signify ↵Joshua Slack2018-01-154-6/+10
| | | | | | | | clearing the cursor
| * Added new method to Canvas interface providing a way to store and retrieve ↵Joshua Slack2018-01-1521-88/+245
| | | | | | | | the mouse manager for a given canvas.
| * Fixed a highlight bug when mouseover moves between multiple rings without ↵Joshua Slack2018-01-062-12/+13
| | | | | | | | | | | | mousedepart. Changed RotateWidget mouseover blend effect to be more subtle.
| * Small tweak to help with mouseovers in compound widgetJoshua Slack2018-01-051-5/+11
| |
| * Small tweak to eclipse project settingsJoshua Slack2018-01-0411-11/+11
| |
| * Made these public to allow for access from compound widget style classes.Joshua Slack2017-10-311-2/+2
| |
| * Added the concept of mouseEntered/Departed to InteractWidgets and applied ↵Joshua Slack2017-10-307-256/+262
| | | | | | | | the state to our basic widgets.
| * Fixed some redundant scaling code and pulled widget scale calculation out ↵Joshua Slack2017-10-276-39/+33
| | | | | | | | into a place easily extended by subclasses.
| * Fix mouseover/click issue with pie menu when start angle is negative.Joshua Slack2017-10-262-9/+10
| | | | | | | | Fix issue with forwarding "consumed" mouse/key events through to next logical layer.
| * Fix for unnecessary exceptions when ardor3d is given a control character it ↵Joshua Slack2017-10-241-108/+113
| | | | | | | | doesn't understand - this happens alot with alt-tab as SWT will broadcast a DC2 control character (int value, 18).
| * Added a simple way to inject input checks after UI widgets are handled, but ↵Joshua Slack2017-10-232-7/+50
| | | | | | | | before the input is handed to the next logical layer.
| * Clean up some build files.Joshua Slack2017-10-193-37/+36
| | | | | | | | Fixed bug #79 in Textrendering where it was using font height instead of size to determine line height. Often was hidden by other layout elements, but the latest pack() fixes helped expose it.
| * Small tweak to fix scroll bug in exampleJoshua Slack2017-10-191-2/+3
| |
| * Fixed bug with caps in Jogl recently introduced.Joshua Slack2017-10-181-3/+5
| |
| * Cleanup of pack/layout/updateMinimum calls. Components can be packed now. ↵Joshua Slack2017-10-1821-326/+208
| | | | | | | | | | | | | | Removed pack(int,int) - should use setMinimum on contents to dictate appropriate pack size. Can still use setContentSize if specific size needed. UIHud now requires a Canvas to construct, cleaning up the ambiguous use of Camera.getCurrent and making it easier to use a hud size. Cleaned up examples to use nicer flow.
| * Fix bug where you could not click on combobox label to open listJoshua Slack2017-10-181-0/+5
| |
| * Fix some additional layout issues.Joshua Slack2017-10-183-2/+12
| | | | | | | | Fixed pack not setting some container min sizes and thus allowing manual resizing of frame too small.
| * Fixed a bug in javascript caused by js engine change in Java 1.7+Joshua Slack2017-10-181-0/+3
| |
| * We'll use the maximum of user set minimum and layout set minimum to clamp size.Joshua Slack2017-10-181-4/+4
| |
| * Split minimum size into layout provided and optional user provided.Joshua Slack2017-10-189-56/+89
| |
| * no messageJoshua Slack2017-10-160-0/+0
| |\
| | * Added some additional caps detection + divorced UIContainer standin texture ↵Joshua Slack2017-10-164-38/+94
| | | | | | | | | | | | size from camera. This should help in serveral situations such as window size being tiny during init, or different contexts having different window sizes.
| * | Added some additional caps detection + divorced UIContainer standin texture ↵Joshua Slack2017-10-164-38/+93
| |/ | | | | | | size from camera. This should help in serveral situations such as window size being tiny during init, or different contexts having different window sizes.
| * Added ability to set a spacing between elements in RowLayoutJoshua Slack2017-10-122-11/+21
| |
| * Added centerOn method to UIComponent to make it simpler to center a ↵Joshua Slack2017-09-2910-44/+116
| | | | | | | | | | | | | | component on another component or the hud. Fixed issue in sliders when min value is not 0. Clean up warnings.
| * Simplified UIPopupMenu to extend UIContainer instead of UIFrame.Joshua Slack2017-09-259-63/+381
| | | | | | | | | | | | Updated UIMenuItem to simplify adding nested menus Updated UIPieMenu to extend UIPopupMenu, to make it easier to reuse menu code. Added new UI example showing off hierarchical Popup and Pie menus
* | Merges several Renanse's commitsJulien Gouesse2018-01-271-2/+2
|\|
| * Handle jinput libsJoshua Slack2017-09-251-2/+11
| |