Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-12-20 | Change GridMap navigation_layers to be per mesh_library item | smix8 | |
Changes GridMap navigation_layers from a single bitmask for the entire GridMap to a bitmask for each item used in the mesh_library with a baked navmesh. | |||
2022-12-19 | Add GridMap collision_priority | smix8 | |
Adds property 'collision_priority' for all physics bodies of the entire GridMap. | |||
2022-11-22 | Fill random docs | kobewi | |
2022-09-30 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 2.3-dev from current git. And fix typo in `methods.py` for `vsproj=yes` option (still won't work though). | |||
2022-09-08 | Add GridMap function to change navigation map for baked navigation regions | smix8 | |
Adds function to change the navigation map for baked navigation regions. Before all cells with a baked navigation mesh were locked to the default navigation map of the world resource. | |||
2022-09-05 | Rename TileMap/GridMap.`world_to_map` and opposite to `local_to_map` | Micky | |
For both TileMap and GridMap: - `world_to_map` -> `local_to_map` - `map_to_world` -> `map_to_local` Also changes any mention of "world" in this context to "local" to avoid future confusion. Finally, updates the docs of both methods for consistency. In particular, adding a note on how to convert the returned values from local to global coordinates and vice versa. | |||
2022-08-23 | Replace Array return types with TypedArray 2 | kobewi | |
2022-08-20 | Expose Basis `set_orthogonal_index` method as a GridMap function | rafallus | |
2022-08-08 | Rename the argument tag to param in XML documentation | Yuri Sizov | |
2022-06-19 | Add navigation layer bitmask helper functions | smix8 | |
Adds helper functions to work with the navigation layer bitmask. | |||
2022-03-02 | Remove unimplemented set_clip() method | kobewi | |
2022-02-16 | Add GridMap.get_used_cells_by_item | Haoyu Qiu | |
2022-02-15 | Add an XML schema for documentation | Hugo Locurcio | |
This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions. | |||
2022-01-16 | Consider gridmap collisions in navigation bake | rafallus | |
2021-12-17 | Add physics material to GridMap | kobewi | |
2021-11-15 | Replace Godot docs URL with `$DOCS_URL` in XML class reference | Rémi Verschelde | |
2021-08-12 | Uniformize layer names, script methods and documentation | PouleyKetchoupp | |
- Back to 1-based layer names to make it clearer in editor UI - Layer bit accessors are renamed to layer value and 1-based too - Uniform errors and documentation in render and physics - Fix a few remaining collision_layer used in place of collision_mask | |||
2021-07-30 | doc: Use self-closing tags for `return` and `argument` | Rémi Verschelde | |
For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there. | |||
2021-06-18 | Better format arguments in variant parser | Michael Alexsander Silva Dias | |
2021-06-03 | Update documentation for Transform3D | Aaron Franke | |
2021-03-15 | Allow Navigation to be more flexible | Gilles Roudière | |
2021-03-10 | Implement Navigation layers | Gilles Roudière | |
2021-03-10 | Remove Navigation2D/3D nodes, and move the navigation map to the world resource | Gilles Roudière | |
2021-02-25 | Added GridMap description to get_bake_meshes() | Jack Linhart | |
2021-02-02 | Document that GridMap doesn't support visual layers or cull masks | Hugo Locurcio | |
See #40245. | |||
2020-10-01 | Link to demos from within the class reference | Aaron Franke | |
2020-08-31 | Merge pull request #40993 from Calinou/doc-collision-layer-mask | Rémi Verschelde | |
Reference the online documentation in collision layer/mask properties | |||
2020-08-31 | Add link titles for all links in the class reference | Hugo Locurcio | |
This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.) | |||
2020-08-03 | Reference the online documentation in collision layer/mask properties | Hugo Locurcio | |
See https://github.com/godotengine/godot-docs/pull/3863. | |||
2020-07-03 | doc: Sync classref with current source | Rémi Verschelde | |
2020-03-30 | doc: Update classref with node renames | Rémi Verschelde | |
A few extra renames for classes which were missed in last week's PRs. | |||
2020-03-21 | Make file formatting comply with POSIX and Unix standards | Aaron Franke | |
UTF-8, LF, no BOM, and newlines at the end of files | |||
2020-01-31 | Update docs to version 4.0 | clayjohn | |
2020-01-26 | doc: Drop unused 'category' property from header | Rémi Verschelde | |
We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0. | |||
2019-12-01 | Merge pull request #33997 from akien-mga/doc-makerst-escape | Rémi Verschelde | |
makerst: Escape default values using reST markup | |||
2019-11-29 | Docs: GridMap and MeshLibrary | James Westman | |
The only methods left to document are resource_changed, set_clip, and the methods dealing with baked meshes. | |||
2019-11-29 | makerst: Escape default values using reST markup | Rémi Verschelde | |
Otherwise the docs would complain about values like "godot_" which reST tries to interpret as an identifier. | |||
2019-10-26 | doc: Sync classref with current source | Rémi Verschelde | |
2019-07-15 | doc: Sync classref with current source | Rémi Verschelde | |
2019-06-30 | doc: Remove null default values that can't be determined | Rémi Verschelde | |
Applying #30187. | |||
2019-06-30 | doc: Add default values to all properties | Rémi Verschelde | |
Thanks to @bojidar-bg's impressive work in #29380. | |||
2019-06-27 | Proofread and improve the whole class reference | Hugo Locurcio | |
- Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies | |||
2019-04-19 | doc: Drop unused <demos> tag | Rémi Verschelde | |
2019-04-01 | doc: Bump version to 3.2 | Rémi Verschelde | |
2019-01-07 | doc: Fix wrong references found by new makerst.py | Rémi Verschelde | |
Thanks @PJB3005 | |||
2018-12-20 | doc: Add missing commas after "If true/false" | Rémi Verschelde | |
2018-11-05 | doc: Use HTTPS for docs.godotengine.org and point to latest branch | Rémi Verschelde | |
Fixes #23509. | |||
2018-09-12 | Misc. typos | luz.paz | |
Found via `codespell -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po"` | |||
2018-08-29 | doc: Sync classref with current source | Rémi Verschelde | |
2018-06-12 | Add support for tutorial links to makerst.py | robojumper | |
Also change the <tutorials> structure to make use of individual <link> tags |