Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-18 | Rename localization method to `tr` again | Rémi Verschelde | |
Partial revert of #10380 based on contributor ~~bullying~~ feedback. | |||
2017-08-17 | Rename `XL_MESSAGE` aka `tr` to `localize` | Rémi Verschelde | |
Also renames `set_message_translation` to `set_message_localization` for consistency. | |||
2017-08-11 | Merge pull request #10190 from tagcup/euler_yxz | Rémi Verschelde | |
Use YXZ convention for Euler angles. | |||
2017-08-09 | Use YXZ convention for Euler angles. | Ferenc Arn | |
As discussed in issues #1479 and #9782, choosing the up axis (which is Y in Godot) as the axis of the last (or first) rotation is helpful in practical use cases. This also aligns Godot's convention with Unity, helping with a smoother transition for people who are used to working with Unity (issue #9905). Internally, both XYZ and YXZ functions are kept, for potential future applications. | |||
2017-08-07 | Added missing descriptions to Vector2 methods abs and clamped. | Naughty | |
2017-08-07 | Makes all Godot API's methods Lower Case | Indah Sylvia | |
2017-08-06 | Rename KEY_RETURN to KEY_ENTER and KEY_ENTER to KEY_KP_ENTER | Bojidar Marinov | |
Closes #7695 | |||
2017-08-02 | Docs: fix method/type renames, fill some blanks | Poommetee Ketson | |
2017-07-31 | Merge pull request #9909 from kubecz3k/docs-collobject-collshapes | Rémi Verschelde | |
firsts docs for CollisionObject -> collision shape api | |||
2017-07-28 | Merge pull request #9863 from kubecz3k/move-docs | Rémi Verschelde | |
Documentation update for KinematicBody.move() | |||
2017-07-27 | Documentation update for KinematicBody.move() | Jakub Grzesik | |
2017-07-27 | firsts docs for CollisionObject -> collision shape api | Jakub Grzesik | |
2017-07-26 | Remove duplicate keycode constant for Numpad Enter key. | bruvzg | |
2017-07-26 | Corrects usage of 'is' instead of 'extends' for testing node inheritance. | Julian Murgia | |
2017-07-26 | tagents --> tangents | ISylvox | |
2017-07-25 | Merge pull request #9690 from 648trindade/classref-edit | Rémi Verschelde | |
Improved math functions descriptions and added many AStar descriptions | |||
2017-07-25 | documentation for EditorPlugin and ScriptEditor | Jakub Grzesik | |
2017-07-24 | Merge pull request #9764 from Noshyaar/pr-fix2 | Rémi Verschelde | |
Add object type hint for docs | |||
2017-07-23 | Add object type hint for docs | Poommetee Ketson | |
2017-07-23 | Merge pull request #9772 from Noshyaar/pr-classxml | Rémi Verschelde | |
Docs: fix broken ref tags | |||
2017-07-22 | Docs: fix broken ref tags | Poommetee Ketson | |
2017-07-22 | Docs: ignore tags inside code,codeblock tag | Poommetee Ketson | |
2017-07-19 | -Renamed GlobalConfig to ProjectSettings, makes more sense. | Juan Linietsky | |
-Added system for feature overrides, it's pretty cool :) | |||
2017-07-19 | Improved math functions descriptions and added many AStar descriptions | Rafael Gauna Trindade | |
2017-07-18 | Merge pull request #9629 from kubecz3k/tabs-addons | Rémi Verschelde | |
Tabs enhancements: get_tab_rect(), move_tab() | |||
2017-07-18 | Tabs enhancements: get_tab_rect(), move_tab_from_to() | Jakub Grzesik | |
exposed: get_tab_rect(tab_idx) new and exposed: move_tab_from_to(idx_from, idx_to) | |||
2017-07-18 | Merge pull request #9639 from rminderhoud/primitives | Rémi Verschelde | |
Moved binds of PRIMITIVE_* contants from ArrayMesh to Mesh | |||
2017-07-17 | missing object.get_incoming_connections() documentation | Jakub Grzesik | |
2017-07-15 | Added documentation for blit_rect_mask | dumitru-stama | |
2017-07-15 | sync doc template | dumitru-stama | |
2017-07-14 | doc: Sync classref with current source | Rémi Verschelde | |
Some descriptions were lost for refactored APIs, but they cannot be matched 1:1 with the new ones, so will need to be rewritten anyway. | |||
2017-07-14 | Moved binds of PRIMITIVE_* contants from ArrayMesh to Mesh | Ralph Minderhoud | |
2017-07-11 | EditorPlugin ability to open and reload scns from filepath | Jakub Grzesik | |
2017-07-07 | [#9292] Renamed Image.put_pixel() to set_pixel(). | ducdetronquito | |
2017-07-06 | Improved GDScript parse_json() doc about numerical values conversion. | ducdetronquito | |
2017-06-27 | docs: Correct xform descriptions in class_basis | mdraw | |
2017-06-20 | Merge pull request #8407 from Jylhis/popup_item_select_hide | Thomas Herzog | |
Update PopupMenu hiding | |||
2017-06-19 | Merge pull request #9274 from vnen/compress-functions | Thomas Herzog | |
Expose compression functions to GDScript | |||
2017-06-19 | Add documentation to compression functions | George Marques | |
2017-06-18 | Added two new methods to 3.0 'blend_rect_mask' and 'fill' | d | |
2017-06-17 | doc: Sync classref with current source | Rémi Verschelde | |
2017-06-15 | doc: Sync classref with current source | Rémi Verschelde | |
Tried to salvage what I could of the Image and InputEvent changes. | |||
2017-06-14 | Add Signals descriptions when they exist. | Julian Murgia | |
2017-06-13 | Merge pull request #8548 from tagcup/etc2comp | Juan Linietsky | |
Add ETC1/ETC2 compression support though etc2comp. | |||
2017-06-08 | Add zstd compression support. | Ferenc Arn | |
zstd has much better compression speed and ratio, and better decompression speed than currently available methods. Also set zstd as the default compression method for Compression as well as FileAccessCompressed functions. | |||
2017-05-31 | Add ETC1/ETC2 compression support though etc2comp. | Ferenc Arn | |
Remove rg-etc1 code. Also updated travis to use ubuntu 14.04. Fixes #8457. | |||
2017-05-21 | Avoid overestimating the cost in AStar heuristics. | Ferenc Arn | |
This is a necessary condition for finding optimal solutions. This is achieved by simply requiring/ensuring that no weights are smaller than 1. Fixes #8584. | |||
2017-05-20 | Removal of InputEvent as built-in Variant type.. | Juan Linietsky | |
this might cause bugs I haven't found yet.. | |||
2017-05-17 | Add extended check option to GDFunctionState::is_valid() | Pedro J. Estébanez | |
2017-05-14 | Merge pull request #8762 from honix/master | Rémi Verschelde | |
Docs: ERR_EOF -> ERR_FILE_EOF |