Commit Graph
100 Commits
Author SHA1 Message Date
tetrapod00 04f85c2a62 Update Bug triage guidelines 2025-03-15 11:25:04 -07:00
tetrapod 1ce1ede5c4 Merge pull request #10742 from reisnersteve/patch-1
Remove reference to MonoDevelop in C# Basics
2025-03-04 11:46:54 -08:00
tetrapod 23d108d085 Merge pull request #10645 from skyace65/ExportProjectsUpdate
Update exporting projects page
2025-03-01 16:33:24 -08:00
tetrapod00 c37e56f8f6 Fix bad links in Exporting for web 2025-02-26 12:57:28 -08:00
tetrapod 6361c66aa3 Merge pull request #10711 from raulsntos/dotnet/export-tool-diagnostics
C#: Document `[ExportToolButton]` diagnostics
2025-02-26 12:42:18 -08:00
tetrapod 91da8dd9d1 Merge pull request #10687 from skyace65/3DGameSetup
Update first 3D game setup page images for 4.4
2025-02-24 17:22:03 -08:00
tetrapod d80b1505c3 Merge pull request #10526 from skyace65/Jolt
Document Jolt built-in module in 4.4
2025-02-23 12:13:13 -08:00
tetrapod00 8023cf87d6 Update Bisecting regressions page 2025-02-16 13:09:07 -08:00
tetrapod00 6902e58d09 Reorder Output panel message categories to match order in editor 2025-02-15 18:28:54 -08:00
tetrapod 3870586d32 Merge pull request #10640 from skyace65/GridmapsUpdate
Update Gridmaps page for 4.4
2025-02-15 13:05:28 -08:00
tetrapod 247213ac8b Merge pull request #10594 from skyace65/OpenXRAndroid
Update XR Deploying to android page for 4.4
2025-02-15 12:59:41 -08:00
tetrapod00 6311520290 Document limitation of Visual Profiler on macOS 2025-02-12 00:31:40 -08:00
tetrapod00 0eb095eaef Add i18n label to Bug triage guidelines 2025-02-11 13:04:55 -08:00
tetrapod00 6476bd6be4 Remove outdated disadvantages to upgrading to Godot 4 2025-02-11 12:39:50 -08:00
tetrapod00 45ba52453e Improve Creating your first script page
- Add godot.svg icon according to comment.
- Update link to intro section based on comment.
- Update some styling to match current guidelines.
2025-02-09 18:38:40 -08:00
tetrapod00 048bb2775e Update links to C# and GDScript sections
- Change all links to '_doc' anchors instead of 'toc's.
- Move 'doc_c_sharp' and 'doc_gdscript' to the index pages.
- Add 'doc_gdscript_reference' anchor.
- Update all existing links to point to the right place,
updating grammar if needed.
2025-02-09 16:16:43 -08:00
tetrapod00 e621b001de Update games made with Godot in Getting Started 2025-02-09 15:38:14 -08:00
tetrapod00 c3dac649da Remove links and screenshots of old plugins 2025-02-09 12:43:05 -08:00
tetrapod00 9ffbae745e Improve links to Step by step 2025-02-09 09:47:04 -08:00
tetrapod00 239c16c494 Update links to Q&A site to forum 2025-02-08 22:04:46 -08:00
tetrapod 31fa74b0b0 Merge pull request #10628 from skyace65/RemoveShaderMaterial
Remove shader materials page
2025-02-06 17:13:03 -08:00
tetrapod fd34a007ba Merge pull request #10624 from Vocco/fix-process-signature
Fix C# _Process method signatures
2025-02-05 13:24:16 -08:00
tetrapod00 39bbba660d Fix video alignment after dependency update without CSS 2025-02-03 11:52:04 -08:00
tetrapod adeaa6d0ce Merge pull request #10610 from tetrapod00/revert-10566
Revert "Fix video alignment after dependency update"
2025-02-03 10:37:39 -08:00
tetrapod00 049b42989e Revert "Fix video alignment after dependency update"
This reverts commit 0e87849415.
2025-02-03 10:22:46 -08:00
tetrapod00 76da87bf07 Document [ExportToolButton] 2025-02-02 17:44:06 -08:00
tetrapod00 287ad02f83 Improve First 3D shader tutorial 2025-02-02 14:53:13 -08:00
tetrapod00 858c663ab1 Add note to use varyings to access builtins in shader pages 2025-02-02 13:00:12 -08:00
tetrapod fad4662398 Merge pull request #10569 from Calinou/controllers-custom-mappings-no-upstream
Point mapping contributions to Godot in Controllers, gamepads and joysticks
2025-01-30 12:45:40 -08:00
tetrapod00 0e87849415 Fix video alignment after dependency update 2025-01-29 00:30:10 -08:00
tetrapod 3a424470fe Merge pull request #10554 from skyace65/First3DShader
Fully update first 3D Shader page
2025-01-28 17:08:44 -08:00
tetrapod00 a2d2c07aee Improve shading language page 2025-01-28 00:36:30 -08:00
tetrapod00 2017152e9c Add docs contribution checklist page 2025-01-28 00:30:51 -08:00
tetrapod00 f92484d918 Update note about Parallax2D being experimental 2025-01-24 12:52:05 -08:00
tetrapod e74ead8dd8 Merge pull request #10533 from skyace65/NavigationLink
Update navigation link page for new debug arrows
2025-01-22 17:25:39 -08:00
tetrapod00 8d1a93f2ff Add links from GDScript keywords table to relevant sections 2025-01-21 15:29:51 -08:00
tetrapod00 fd782219ec Add small tutorial on making existing mesh manifold with Blender 2025-01-21 14:52:27 -08:00
tetrapodandThaddeus Crews d3a902e2d8 Add GitHub Action to automatically create cherrypick PRs (#10361)
* Add GitHub Action to automatically create cherrypick PRs

Uses peter-evans/create-pull-request and actions/checkout,
both of which are already dependencies.

When merging a PR with a cherrypick label, which only contains
a single commit, attempt to cherrypick the single commit into
a new branch, then create a PR.

Fails if there are multiple commits (to catch squash and merge).
Fails if the cherrypick does not apply cleanly.

Does not attempt to merge the new PR.
Does not attempt to update stable.

* Handle squash and merge

* Apply suggestions from code review

Co-authored-by: Thaddeus Crews <repiteo@outlook.com>

---------

Co-authored-by: Thaddeus Crews <repiteo@outlook.com>
2025-01-03 10:57:16 +01:00
tetrapod00 6e2adaa301 Fix grammar in Tutorials and resources 2025-01-02 12:20:52 -08:00
tetrapod00 618bbd2150 Document standards for RST section header syntaxx 2024-12-29 14:42:29 -08:00
tetrapod00 c4d3aa134a Standardize RST header syntax 2024-12-29 13:44:09 -08:00
tetrapod 1d0a90fed4 Merge pull request #10437 from dalexeev/gds-doc-warning-ignore-start-and-restore
GDScript: Document `@warning_ignore_start` and `@warning_ignore_restore`
2024-12-23 13:25:31 -08:00
tetrapod 5eebe5f1fa Merge pull request #10419 from tetrapod00/manifold-define
Add technical definition for manifoldness
2024-12-22 19:44:35 -08:00
tetrapod00 4e0bdbbb6f Remove links to YouTube devlogs 2024-12-20 12:21:37 -08:00
tetrapod dedc5e849d Merge pull request #10428 from The-oldone/master
Fix typo (copy-paste) in gui_using_fonts.rst
2024-12-19 12:54:35 -08:00
tetrapod00 ea9fad5bbe Add technical definition for manifoldness 2024-12-19 11:35:27 -08:00
tetrapod a64084d491 Merge pull request #9743 from vgezer/scripteditor
Text editor documentation
2024-12-18 14:03:58 -08:00
tetrapod00 591f9739f6 Document example code label in docs repo 2024-12-18 10:33:37 -08:00
tetrapod00 bdb4983eb1 Tweak wording in Contributing to the class reference 2024-12-18 10:26:34 -08:00
tetrapod00 51a9199a92 Mention exception to setting values before adding to tree 2024-12-17 17:24:40 -08:00
tetrapod00 b3baf825f1 Remove default labels from issue templates 2024-12-17 11:53:33 -08:00
tetrapod00 f47af1fb9e Only show warning box if page is outdated 2024-12-16 14:45:34 -08:00
tetrapod00 a79a41c7ee Clarify MeshLibrary format and constraints 2024-12-15 17:25:28 -08:00
tetrapod00 fdfa3ea66e Rephrase dictionary description in Advanced GDScript 2024-12-15 13:58:40 -08:00
tetrapod00 0dfae02a28 Fix article outdated status for spring arm page 2024-12-15 00:40:53 -08:00
tetrapod00 bd25f5813a Simply remove some words 2024-12-14 20:36:17 -08:00
tetrapod00 590de7eea8 Link to foveation settings from VRS page 2024-12-14 11:05:02 -08:00
tetrapod00 0da4dbe145 Add self links to shader functions page 2024-12-13 22:17:49 -08:00
tetrapod00 6f0e3bcfaf Fix usage of source_color with hint_depth_texture 2024-12-13 19:34:09 -08:00
tetrapod 19f5643c46 Merge pull request #10404 from dsnopek/gdextension-version-compatibility
Improve "Version Compatibility" section in "What is GDExtension"
2024-12-12 16:47:17 -08:00
tetrapod00 bfee908263 Update documentation changelog for Physics Interpolation 2024-12-10 15:24:48 -08:00
tetrapod00andHana - Piralein 19337ad628 Tweak wording in Creating the player scene
Co-authored-by: Hana - Piralein <48352564+Piralein@users.noreply.github.com>
2024-12-10 15:02:48 -08:00
tetrapod00 ccb0a71db3 Tweak wording in C# differences 2024-12-10 11:11:20 -08:00
tetrapod00 f8f683c1a2 Improve Physics Interpolation pages 2024-12-08 18:17:52 -08:00
tetrapod 314d341fe7 Update documentation changelog for new Output Panel page 2024-12-08 17:38:34 -08:00
tetrapod00 7dea53de2d Add introduction to Platform-specific index page 2024-12-08 17:30:12 -08:00
tetrapod00 d70fb53f2a Add introduction to 2D index page 2024-12-07 16:51:14 -08:00
tetrapod fbf6cc140d Use more idiomatic English in How to Contribute 2024-12-06 20:24:51 -08:00
tetrapod00 2cbe8488d4 Update broken link to RTD docs in comment 2024-12-06 00:01:46 -08:00
tetrapod00 55cd8723fc Improve Shader functions page 2024-12-05 13:09:40 -08:00
tetrapod 5589314bbf Merge pull request #10329 from esainane/pool-closed
Remove references to PoolVector
2024-12-04 18:06:40 -08:00
tetrapod00 e8a545fc3e Standardize header syntax within About section 2024-12-04 14:53:57 -08:00
tetrapod00 0647ee7576 Update changelog for Introduction to 2D 2024-11-30 17:50:49 -08:00
tetrapod 518db5f6f2 Merge pull request #9621 from vgezer/intro2d
Add new Introduction to 2D page
2024-11-30 17:46:59 -08:00
tetrapod00 f40128b9ba Note that shader function descriptions are modified from OpenGL docs 2024-11-29 15:53:13 -08:00
tetrapod00 f2ce3eee91 Standardize renderer names and terms 2024-11-29 13:26:48 -08:00
tetrapod00 10842e24b5 Document shadow caster mask property 2024-11-27 09:20:46 -08:00
tetrapod00 55b08515b4 Update word counts and translation priorities in Localization contributing page 2024-11-25 10:41:00 -08:00
tetrapod00 17bb2f368c Explain difference between global shader uniforms and global scope in shaders 2024-11-25 10:36:52 -08:00
tetrapod00 d9bd76c66a Remove wiki reference in Introduction to 3D 2024-11-24 12:49:39 -08:00
tetrapod00 9bcc7524bc Remove link to Reddit list of tutorials 2024-11-23 22:55:15 -08:00
tetrapod00 3ee7142208 Reorganize and improve shader Uniforms section 2024-11-23 15:43:56 -08:00
tetrapod00 26cd9d1c72 Add Shader functions page to documentation changelog 2024-11-21 16:17:13 -08:00
tetrapod 0ceba58667 Merge pull request #10299 from Chaosus/shader_new_uniform_type
Add `samplerExternalOES` type to variable types of shading language
2024-11-21 12:49:47 -08:00
c1310e6009 Add GDScript naming convention summary table
Co-Authored-By: Edwin <60202421+emarino135@users.noreply.github.com>
Co-Authored-By: Hugo Locurcio <hugo.locurcio@hugo.pro>
2024-11-20 14:40:36 -08:00
6feb7b47c8 Add FAQ entry "Which programming language is fastest?"
Compares the performance of C#, GDScript, and C++.

Co-Authored-By: Hugo Locurcio <hugo.locurcio@hugo.pro>
Co-Authored-By: Andre Sacilotto <66838864+andresacilotto@users.noreply.github.com>
2024-11-20 09:05:25 -08:00
tetrapod00 7cfe4b82b1 Fix wrong editor setting in Overview of Debugging Tools 2024-11-19 11:58:55 -08:00
tetrapod00 77f3eb6b68 Remove performance comparison from C# Basics 2024-11-19 11:03:25 -08:00
tetrapod00andJohn Veness 93489bbefb Use "low-level" and "high-level" instead of "low level" and "high level"
Co-Authored-By: John Veness <2512915+JohnVeness@users.noreply.github.com>
2024-11-18 13:47:58 -08:00
tetrapod00andJohn Veness d354f8cbc2 Add hyphens to some adjective phrases
Co-Authored-By: John Veness <2512915+JohnVeness@users.noreply.github.com>
2024-11-18 13:34:22 -08:00
tetrapodandHugo Locurcio 5bad2a6282 Add back information about per-vertex shading (#10281)
* Add back information about per-vertex shading

---------

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
2024-11-18 20:06:54 +01:00
tetrapod00 42abf26423 Update Project Settings page
- Add screenshots
- Document reading and writing settings
- Document manually editing project.godot
- Note that most settings are changed in different
classes at runtime
2024-11-17 22:29:44 -08:00
tetrapod00 991cea2fef Add diagram of shader compilation steps to Pipeline Compilations page 2024-11-17 14:04:35 -08:00
tetrapod00 09156f2ee9 Add UPDATE comments to perishable information 2024-11-17 13:50:42 -08:00
tetrapod00 dcbb136b58 Update link in Upgrading from Godot 3 to Godot 4 2024-11-13 19:39:45 -08:00
tetrapod00 9c52320183 Add comments about non-monospaced tables 2024-11-13 17:43:51 -08:00
tetrapod00 6919723ae2 Clarify VERTEX and other shader built-ins 2024-11-13 14:11:45 -08:00
tetrapod00 f2717085dc Change warnings to dangers if data loss can occur 2024-11-12 01:15:51 -08:00
tetrapod00 b7b3c5909d Mention web support in Choosing a renderer section 2024-11-11 09:45:25 -08:00
tetrapod00 389891b9bc Add multiple renderer support to Advanced Postprocessing 2024-11-10 20:02:55 -08:00