Commit Graph

8398 Commits

Author SHA1 Message Date
444B
7c85937f7b Update gdscript_styleguide.rst - clarified sentence and grammar (#9110)
* Update gdscript_styleguide.rst - clarified sentence and grammar

- Clarified the statement on "One statement per line"
- Removed unclear sentence with incorrect grammar

---------

Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
(cherry picked from commit 3d441150b1)
2024-07-24 20:52:32 +02:00
kit
882d2a85bc Add intellisense configuration for VSCode
(cherry picked from commit cf54259ff0)
2024-07-24 20:52:19 +02:00
skyace65
05a2f532b1 add more tool script info and add a section
(cherry picked from commit 49d3e3e714)
2024-07-24 20:52:08 +02:00
skyace65
c3a45b75fa Document that hint_color is now source_color
(cherry picked from commit 77969eb138)
2024-07-24 20:51:56 +02:00
skyace65
36393a7f5a Add extension support info for web export
(cherry picked from commit 3eed2dac66)
2024-07-24 20:51:44 +02:00
skyace65
09478fec00 Update XR Index page
(cherry picked from commit 327c92d3dc)
2024-07-24 20:51:34 +02:00
skyace65
177c1b34a8 Replace "alt" with "opt" for macOS shortcuts
(cherry picked from commit 175524548c)
2024-07-24 20:50:35 +02:00
skyace65
f179ffd4cf Update intro to 3D images, document preview light
(cherry picked from commit e616c4b6c6)
2024-07-24 20:50:15 +02:00
skyace65
ba30c3de73 Unify C# naming notes and comments
(cherry picked from commit 8916cbd4b2)
2024-07-24 20:50:07 +02:00
skyace65
20c41b8486 Update CSG note with info on reliability
(cherry picked from commit 57f04ea856)
2024-07-24 20:49:57 +02:00
skyace65
17a50e9b05 Clarify how to open the SpriteFrames panel
(cherry picked from commit 79dfce6de3)
2024-07-24 20:49:50 +02:00
Yevhen Babiichuk (DustDFG)
09ce52e636 Update gui_using_fonts.rst
Add link to *open-source* alternative of BMFont editor

(cherry picked from commit 6c7b0917bb)
2024-07-24 20:49:42 +02:00
31
08a0974ecb singletons_autoload.rst: add C# example similar to "Global Variable"
(cherry picked from commit a4e958c0e0)
2024-07-24 20:49:30 +02:00
31
33ceecab84 Link to C# Variant-compatible section directly
(cherry picked from commit 8b94fc9501)
2024-07-24 20:49:13 +02:00
Max Hilbrunner
a1be0931b0 Merge pull request #8878 from 31/dev/31/variant-obj
c_sharp_variant.rst: add more examples, fix explicit vs. implicit

(cherry picked from commit 664b739aaa)
2024-07-24 20:49:03 +02:00
Matthew
75e7d6caf0 Merge pull request #8722 from kylestarr/master
Update scripting_player_input.rst

(cherry picked from commit a621959d86)
2024-07-24 20:48:46 +02:00
dependabot[bot]
78189da9d8 Bump peter-evans/create-pull-request from 5 to 6
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 5 to 6.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](https://github.com/peter-evans/create-pull-request/compare/v5...v6)

---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 4dae900c1a)
2024-07-24 20:48:33 +02:00
31
b1747cb7e5 c_sharp_collections.rst: copy variant page's Packed{TYPE}Array order
(cherry picked from commit d203e8b4e5)
2024-07-24 20:48:22 +02:00
31
fa78062603 Elaborate on C# Connect/Disconnect
(cherry picked from commit 04b42dc143)
2024-07-24 20:47:39 +02:00
Matthew
5ea012420b Merge pull request #8772 from docrinehart/first-3d-game-animation-fixes
First 3d game animation fixes

(cherry picked from commit c42e54bfbb)
2024-07-24 20:47:16 +02:00
Matthew
0f652294c5 Merge pull request #8860 from 31/dev/31/export-node-res-useful
c_sharp_exports.rst: clarify why exporting nodes/resources is useful

(cherry picked from commit 654ee26ffe)
2024-07-24 20:46:07 +02:00
AnOpenSauceDev
3678cc897d Fix multiple typos related to Particle Systems (#8845)
* Fix typo: Ammount -> Amount

* Fix typos in `properties.rst`

Changed "Ammount" to "Amount", and "Radio" to "Ratio".

(cherry picked from commit 67b17958ca)
2024-07-24 20:45:37 +02:00
31
daa76760e2 Update external_editor.rst: point out C# instructions
(cherry picked from commit 1388882b3e)
2024-07-24 20:45:00 +02:00
Max Hilbrunner
294b8aab8d Merge pull request #9647 from mhilbrunner/4.2-cherrypicks
4.2 cherrypicks
2024-07-24 20:36:49 +02:00
A Thousand Ships
6357d1a820 [Navigation] Document 3D support is required for navigation
(cherry picked from commit 54a8d084bf)
2024-07-24 20:31:56 +02:00
Samuel Ammonius
4b8fbb8939 Update canvas_item_shader.rst
I tested it and it is upper left, not lower left.
This is the CanvasItem shader I used to test it:

shader_type canvas_item;

void fragment() {

	if(distance(FRAGCOORD.xy, vec2(40, 40)) < 30.0)
		COLOR = vec4(1,0,0,1);
	else
		COLOR = vec4(0,0,0,1);
}

(cherry picked from commit b71cec668a)
2024-07-24 20:31:40 +02:00
A Thousand Ships
7df8fe736f [Manual] Clarify use of delta with move_and_slide
Added details to clarify that while `velocity` should not be multiplied
by `delta`, `gravity` still should.

(cherry picked from commit c6bf5d4c28)
2024-07-24 20:31:29 +02:00
skyace65
8eab8f79fc Rename save game variable for clarity
(cherry picked from commit a7b87b50c0)
2024-07-24 20:31:19 +02:00
Hugo Locurcio
5ab56ce049 Document disabling NVIDIA ShadowPlay overlay in Troubleshooting
(cherry picked from commit ce68812599)
2024-07-24 20:31:12 +02:00
skyace65
5df530b214 Re add link to learn GDScript from zero
(cherry picked from commit dd74c60c50)
2024-07-24 20:31:05 +02:00
skyace65
17542696a6 Clarify which scene to run in step by step
(cherry picked from commit a31bf75894)
2024-07-24 20:30:57 +02:00
skyace65
aecaa1e3b2 Clarify what Navlink does and does not do
(cherry picked from commit 2874b79807)
2024-07-24 20:30:50 +02:00
skyace65
f930428b76 Replace set_velocity with velocity property
(cherry picked from commit f3364fb21e)
2024-07-24 20:30:39 +02:00
skyace65
c6883d63a7 Clarify which track is being talked about
(cherry picked from commit b526390c20)
2024-07-24 20:30:28 +02:00
skyace65
9b5745a168 Update images for lightmap page
(cherry picked from commit b7dc0575c2)
2024-07-24 20:30:18 +02:00
skyace65
03b56e0a9d Clarify instructions for creating rest pose
(cherry picked from commit 981cd6a83c)
2024-07-24 20:29:59 +02:00
skyace65
aafce43173 Document onion skinning, autoplay on load and
remove a reference to Godot 3

(cherry picked from commit a5e7c54f48)
2024-07-24 20:29:53 +02:00
skyace65
91e13d52e9 Update project name translation instructions
(cherry picked from commit 7ee8145dc5)
2024-07-24 20:29:45 +02:00
Hugo Locurcio
6f749268f5 Document roughness impacting refraction behavior in Standard Material 3D
(cherry picked from commit 53984b5b84)
2024-07-24 20:29:37 +02:00
Matthew
bbb18a1cc5 Merge pull request #8832 from kylestarr/patch-2
Moving disclaimer comments inline

(cherry picked from commit af5d7d0223)
2024-07-24 20:29:17 +02:00
Hugo Locurcio
2526852231 Use Montserrat font for headings to match godotengine.org
This provides a visual look closer to the website and helps headings
stand out more thanks to their bolder weight.

(cherry picked from commit 474c9b8339)
2024-07-24 20:29:01 +02:00
Matthew
e7ab8017e9 Merge pull request #9006 from alitnk/patch-1
docs: typo in  `spatial_shader.rst`
(cherry picked from commit 94d114a418)
2024-07-24 20:28:44 +02:00
Tim Clark
6f8364ef6c Remove incorrect "we won't use the index array"
(cherry picked from commit 892d39e5fa)
2024-07-24 20:28:24 +02:00
Caiman
2e301a9738 Inspector plugin tutorial: update PackedScene.instance() ref
I noticed that the tutorial still says `instance()` instead of `instantiate()`, so I changed it to match the 4.x method name.

(cherry picked from commit ef828fb837)
2024-07-24 20:28:12 +02:00
smix8
f2e3eade9c Update some navigation code examples
Updates some navigation code examples.

(cherry picked from commit cac53e5d15)
2024-07-24 20:28:04 +02:00
Fabio Alessandrelli
a8ad17dd10 [Web] Expand "Interacting with Javascript"
Document the new (preferred) interface.

Add a small section about downloading files to the user device.

(cherry picked from commit 712aa0c345)
2024-07-24 20:27:43 +02:00
MarsAstro
6b53c69def Update 04.mob_scene.rst
Removed an unnecessary instruction

(cherry picked from commit cd48dd0245)
2024-07-24 20:27:21 +02:00
metehandoy
0f66977326 Small correction on nodes_and_scenes.rst
"Play Scene button" into "Run Current Scene button"

(cherry picked from commit b3fa006dab)
2024-07-24 20:27:10 +02:00
smix8
d71d4b9d0f Mention passing side assumption of RVO avoidance
Mentions passing side assumption of RVO avoidance.

(cherry picked from commit bb3d8dc185)
2024-07-24 20:27:00 +02:00
0WN463
dc481e4b97 Update data_preferences.rst
Correct dictionary re-allocation from "quadratic" to "exponential"

(cherry picked from commit 76e76e2a25)
2024-07-24 20:26:13 +02:00