mirror of
https://github.com/godotengine/godot-website.git
synced 2026-01-04 06:09:55 +03:00
Deploying to published from @ godotengine/godot-website@f9539e5664 🚀
This commit is contained in:
561
atom.xml
561
atom.xml
@@ -1,4 +1,304 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title>Godot Engine Official</title><link href="https://godotengine.org/atom.xml" rel="self"/><link href="https://godotengine.org/"/><updated>2025-12-01T14:03:51+00:00</updated><id>https://godotengine.org/</id><entry><title>Godot XR update - November 2025</title><link href="https://godotengine.org/article/godot-xr-update-nov-2025/"/><updated>2025-11-21T12:00:00+00:00</updated><id>https://godotengine.org/article/godot-xr-update-nov-2025/</id><summary>MOAT XR, XR game jam results, new features, OpenXR inventory</summary><content type="html"><h2 id="the-museum-of-all-things-released-on-the-meta-quest-store">“The Museum of All Things” released on the Meta Quest store!</h2>
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title>Godot Engine Official</title><link href="https://godotengine.org/atom.xml" rel="self"/><link href="https://godotengine.org/"/><updated>2025-12-02T01:13:09+00:00</updated><id>https://godotengine.org/</id><entry><title>Dev snapshot: Godot 4.6 dev 5</title><link href="https://godotengine.org/article/dev-snapshot-godot-4-6-dev-5/"/><updated>2025-12-01T12:00:00+00:00</updated><id>https://godotengine.org/article/dev-snapshot-godot-4-6-dev-5/</id><summary>A chill rises… Feature freeze is imminent</summary><content type="html"><p>As the Northern Hemisphere’s days get shorter and colder, we get closer to our much anticipated feature freeze. Dev 5 is jam-packed with new features and enhancements as contributors try to finish off their big contributions before we hit the feature freeze and Beta 1 shortly after. As a reminder, feature freeze is the period where we stop merging anything except for bug fixes as we shift our focus to polishing the existing code in preparation for release. We plan on entering our feature freeze on December 3 and only releasing one more dev snapshot before entering the Beta phase.</p>
|
||||
<p>Please consider <a href="#support">supporting the project financially</a>, if you are able. Godot is maintained by the efforts of volunteers and a small team of paid contributors. Your donations go towards sponsoring their work and ensuring they can dedicate their undivided attention to the needs of the project.</p>
|
||||
<p><a href="#downloads">Jump to the <strong>Downloads</strong> section</a>, and give it a spin right now, or continue reading to learn more about improvements in this release. You can also try the <a href="https://editor.godotengine.org/releases/4.6.dev5/"><strong>Web editor</strong></a>, the <a href="https://www.meta.com/s/3yJ7i8kop"><strong>XR editor</strong></a>, or the <a href="https://play.google.com/store/apps/details?id=org.godotengine.editor.v4"><strong>Android editor</strong></a> for this release. If you are interested in the latter, please request to join <a href="https://groups.google.com/g/godot-testers">our testing group</a> to get access to pre-release builds.</p>
|
||||
<hr />
|
||||
<p><em>The cover illustration is from</em> <a href="https://store.steampowered.com/app/2159270/Kingdoms_of_the_Dump/?curator_clanid=41324400"><strong>Kingdoms of the Dump</strong></a>, <em>a SNES-inspired JRPG where Trash Can Knight, a trash can knight, guides their party through a fantasy world of garbage. You can get the game on <a href="https://store.steampowered.com/app/2159270/Kingdoms_of_the_Dump/?curator_clanid=41324400">Steam</a>, and check out the developer websites for <a href="https://kingdomsofthedump.com/">Roach Games</a> and <a href="https://www.dreamslothgames.com/">Dream Sloth Games</a>. Notably: this title was created using Godot 2.1!</em></p>
|
||||
<h2 id="highlights">Highlights</h2>
|
||||
<h3 id="use-d3d12-by-default-on-windows">Use D3D12 by default on Windows</h3>
|
||||
<p>Ever since its addition in Godot 4.3 by <a href="https://github.com/RandomShaper">RandomShaper</a> and further refinement by <a href="https://github.com/DarioSamo">DarioSamo</a>, Direct3D 12 has been a mainstay renderer for supported devices (Windows). This is because Vulkan is unfortunately unstable on Windows, with GPU drivers being poorly maintained compared to their Direct3D 12 counterparts. As such, for the 4.6 release cycle, <a href="https://github.com/blueskythlikesclouds">Skyth</a> was sponsored by the Godot Foundation to make Direct3D 12 the default RenderingDevice driver on Windows. His efforts paid off, and the change was integrated just before feature freeze (<a href="https://github.com/godotengine/godot/pull/113213">GH-113213</a>).</p>
|
||||
<div class="card card-info" style="margin-top: 1em;">
|
||||
<p>This will only impact <strong>new projects</strong> created in 4.6-dev5 or later. To use this new default in pre-existing Godot 4.5 projects, you should set the <code class="language-plaintext highlighter-rouge">rendering/rendering_device/driver.windows</code> project setting to <code class="language-plaintext highlighter-rouge">d3d12</code> manually.</p>
|
||||
</div>
|
||||
<h3 id="add-support-for-delta-encoding-to-patch-pcks">Add support for delta encoding to patch PCKs</h3>
|
||||
<p>In Godot 4.4 we introduced the ability to export PCK files as a patch PCK, by letting you provide a set of base PCK files with which to compare against, and then only export the files that had actually changed since then. While this isn’t strictly needed when dealing with most of the major distribution platforms, since they will often distribute only the minimal difference between any two releases anyway, it can become important if you’re distributing content patches through your own means, where things like disk space, bandwidth costs and metered connections come more into focus.</p>
|
||||
<p>However, while this initial implementation did allow for much smaller PCK files compared to exporting everything, it was still an all-or-nothing deal on a per-file level. This meant that if you changed just a single character in some localization string, you would end up exporting the entire localization file for that language, which can potentially be dozens of megabytes in size. This also applied to certain metadata files that Godot manages behind the scenes, which can grow quite big in large-scale projects, and which would be modified anytime you added or removed resources.</p>
|
||||
<p>To help with this, <a href="https://github.com/mihe">Mikael Hermansson</a> added support for what’s called “delta encoding”, also known as “binary patching” or “binary diffing” (<a href="https://github.com/godotengine/godot/pull/112011">GH-112011</a>). This is the same technique used by the major distribution platforms in order to figure out what the minimal difference is between the latest release and the one you have installed, where you simply compare two arbitrary files (binary or otherwise) and try to extract the minimal set of changes from it. This means that you can now optionally export only the parts of a file that actually changed since your last patch, meaning changing a single character in some localization string results in a patch that’s on the order of a few dozen bytes, as opposed to megabytes.</p>
|
||||
<p>Note that this feature must be explicitly enabled, under the “Patching” tab in the export dialog, because it comes with a slight runtime overhead when patches are applied, which they are every time a patched file is loaded. This overhead can be as much as a few milliseconds in the worst case.</p>
|
||||
<h3 id="dedicated-build-app-for-gradle-builds-on-android">Dedicated build app for Gradle builds on Android</h3>
|
||||
<p>Godot supports two ways to export to Android: injecting your game’s data into a pre-built APK (the default) or by running the Gradle build system, which is how native Android apps are usually built.</p>
|
||||
<p>Modifying the pre-built APK is faster and requires less setup, but is more limited. If you want to use <a href="https://docs.godotengine.org/en/latest/tutorials/platform/android/android_plugin.html">Godot Android Plugins</a> to integrate, for example, <a href="https://github.com/godot-sdk-integrations/godot-google-play-billing">Google Play Billing</a>, <a href="https://github.com/godot-sdk-integrations/godot-admob">AdMob</a>, or build an <a href="https://github.com/godotvr/godot_openxr_vendors">XR app</a>, you need to use Gradle.</p>
|
||||
<p>While the Godot editor itself runs on Android, allowing you to develop games on your phone or tablet, it has only ever supported exporting via the pre-built APK… until now!</p>
|
||||
<p>Thanks to the efforts of <a href="https://github.com/dsnopek">David Snopek</a> and <a href="https://github.com/devloglogan">Logan Lang</a> in <a href="https://github.com/godotengine/godot/pull/111732">GH-111732</a>, Godot is now able to initiate Gradle builds on Android, by sending commands to a companion app that provides a full Linux-like build environment to run Gradle. Using a companion app allows us to make setup easy by including everything you need within the app, while keeping Godot itself lightweight. We plan to release the app on Google Play and other Android stores before Godot 4.6 stable is released, but for now you can <a href="https://drive.google.com/file/d/1YFTL-SsVAfx7zCS7_fmuA9cRL7kY5JOz/view?usp=sharing">download an APK</a> from the PR.</p>
|
||||
<h3 id="moving-openxr-forward">Moving OpenXR forward</h3>
|
||||
<p>Godot now supports OpenXR 1.1 and will automatically enable OpenXR 1.1 features on devices that support this (<a href="https://github.com/godotengine/godot/pull/109302">GH-109302</a>). This comes with a compatibility layer to make this as transparent as possible for developers who want to deploy their games both to headsets that support OpenXR 1.1, and those that only support OpenXR 1.0.</p>
|
||||
<p>The OpenXR loader logic for AOSP platforms has moved from the vendor plugin into the core (<a href="https://github.com/godotengine/godot/pull/106891">GH-106891</a>). Godot can now export to any supported OpenXR platform without relying on any plugins. This enables creating and distributing a single APK that runs on nearly all AOSP devices, a potential game changer for tutorial makers and developers who target vendor-agnostic stores like itch.io. The Godot OpenXR vendor plugin remains an important first-party plugin that enables the use of vendor extensions and implements support for specific vendor permissions and feature settings.</p>
|
||||
<h3 id="massive-optimizations-to-the-2d-renderer">Massive optimizations to the 2D renderer</h3>
|
||||
<p>In Godot 4.4 we introduced automatic 2D batching which is an optimization that saves a huge amount of CPU resources by drawing similar objects in a single draw call. 2D batching results in huge wins for content that can easily be batched, like text-heavy games or bullet hells.</p>
|
||||
<p>Batching doesn’t come without a cost, when the batching system is unable to create any batches, then it adds a performance cost, but doesn’t improve performance. It also makes rendering slightly more expensive for the GPU.</p>
|
||||
<p>In our testing we found that most scenes we tested were CPU-bottlenecked, so the increase in GPU cost did not make a noticeable difference, and where it did, the decrease in performance was very small.</p>
|
||||
<p>However, over time we have had a few concerning reports of 4.4 being significantly slower than 4.3, especially on older and lower-end mobile devices. These devices also tended to be GPU-bottlenecked, which made the performance regression even more concerning.</p>
|
||||
<p>In this release, we did a huge overhaul to the design of our 2D renderer to reduce the GPU performance cost when batching. The end result is significantly better performance on a range of hardware. In our testing this change has resulted in improved performance on all devices (in GPU-bound scenarios) ranging from 1.1x to 7x as fast.</p>
|
||||
<p>To read more and see the benchmarks, check out the <a href="https://github.com/godotengine/godot/pull/112481">pull request</a>.</p>
|
||||
<h3 id="and-more">And more!</h3>
|
||||
<p>There are too many exciting changes to list them all here, but here’s a curated selection:</p>
|
||||
<ul>
|
||||
<li>2D: Add support for rotating scene tiles in TileMapLayer (<a href="https://github.com/godotengine/godot/pull/108010">GH-108010</a>).</li>
|
||||
<li>Animation: Add option to BoneConstraint3D to make reference target allow to set Node3D (<a href="https://github.com/godotengine/godot/pull/110336">GH-110336</a>).</li>
|
||||
<li>Animation: Change AnimationLibrary serialization to avoid using Dictionary (<a href="https://github.com/godotengine/godot/pull/110502">GH-110502</a>).</li>
|
||||
<li>Core: Add <code class="language-plaintext highlighter-rouge">RequiredParam&lt;T&gt;</code> and <code class="language-plaintext highlighter-rouge">RequiredResult&lt;T&gt;</code> to mark <code class="language-plaintext highlighter-rouge">Object *</code> arguments and return values as required (<a href="https://github.com/godotengine/godot/pull/86079">GH-86079</a>).</li>
|
||||
<li>Core: Fix EnumDevices stall using IAT hooks (issue with certain USB peripherals) (<a href="https://github.com/godotengine/godot/pull/113013">GH-113013</a>).</li>
|
||||
<li>Core: Implement support for reading and writing extended file attributes/alternate data streams (<a href="https://github.com/godotengine/godot/pull/102232">GH-102232</a>).</li>
|
||||
<li>Editor: Add “Use Local Space” option to the 2D editor (<a href="https://github.com/godotengine/godot/pull/107264">GH-107264</a>).</li>
|
||||
<li>Editor: Add ability to add new EditorSettings shortcuts (<a href="https://github.com/godotengine/godot/pull/102889">GH-102889</a>).</li>
|
||||
<li>Editor: Add expression history to evaluator (<a href="https://github.com/godotengine/godot/pull/108391">GH-108391</a>).</li>
|
||||
<li>Editor: Add tab menu button to list currently opened scenes (<a href="https://github.com/godotengine/godot/pull/108079">GH-108079</a>).</li>
|
||||
<li>Editor: Allow customization of TabContainer tabs in editor (<a href="https://github.com/godotengine/godot/pull/58749">GH-58749</a>).</li>
|
||||
<li>Editor: Allow dragging setting flags in layers property editor (<a href="https://github.com/godotengine/godot/pull/112174">GH-112174</a>).</li>
|
||||
<li>Editor: Allow editing groups on multiple nodes (<a href="https://github.com/godotengine/godot/pull/112729">GH-112729</a>).</li>
|
||||
<li>Editor: Allow resizing the length of animations by dragging the timeline (<a href="https://github.com/godotengine/godot/pull/110623">GH-110623</a>).</li>
|
||||
<li>Editor: Make bottom panel into available dock slot (<a href="https://github.com/godotengine/godot/pull/108647">GH-108647</a>).</li>
|
||||
<li>Editor: Make rotation gizmo white outline a 4th handle that rotates around the camera’s view-axis (<a href="https://github.com/godotengine/godot/pull/108608">GH-108608</a>).</li>
|
||||
<li>Editor: Move History dock to the bottom left by default (<a href="https://github.com/godotengine/godot/pull/112996">GH-112996</a>).</li>
|
||||
<li>Editor: Rename Select Mode to Transform Mode, and create a new Select Mode without transform gizmo (<a href="https://github.com/godotengine/godot/pull/101168">GH-101168</a>).</li>
|
||||
<li>Editor: Separate Node editor dock into two new docks: Signals and Groups (<a href="https://github.com/godotengine/godot/pull/101787">GH-101787</a>).</li>
|
||||
<li>Editor: Show a warning toast when saving a large text-based scene (<a href="https://github.com/godotengine/godot/pull/53679">GH-53679</a>).</li>
|
||||
<li>GDExtension: Store source of gdextension_interface.h in JSON (<a href="https://github.com/godotengine/godot/pull/107845">GH-107845</a>).</li>
|
||||
<li>GDScript: Add debug/gdscript/warnings/directory_rules project setting (<a href="https://github.com/godotengine/godot/pull/93889">GH-93889</a>).</li>
|
||||
<li>GDScript: Add step out to script debugger (<a href="https://github.com/godotengine/godot/pull/97758">GH-97758</a>).</li>
|
||||
<li>GDScript: LSP: Rework and extend BBCode to Markdown docstring conversion (<a href="https://github.com/godotengine/godot/pull/113099">GH-113099</a>).</li>
|
||||
<li>GUI: Allow SplitContainer to have more than two children (<a href="https://github.com/godotengine/godot/pull/90411">GH-90411</a>).</li>
|
||||
<li>Platforms: Android: Adjust script editor size for virtual keyboard (<a href="https://github.com/godotengine/godot/pull/112766">GH-112766</a>).</li>
|
||||
<li>Platforms: Wayland: Implement game embedding (<a href="https://github.com/godotengine/godot/pull/107435">GH-107435</a>).</li>
|
||||
<li>Rendering: Refactor rendering driver copy APIs to fix several D3D12 issues (<a href="https://github.com/godotengine/godot/pull/111954">GH-111954</a>).</li>
|
||||
<li>Rendering: TAA adjustment to reduce ghosting (<a href="https://github.com/godotengine/godot/pull/112196">GH-112196</a>).</li>
|
||||
<li>XR: Add support for Android XR devices to the Godot XR Editor (<a href="https://github.com/godotengine/godot/pull/112777">GH-112777</a>).</li>
|
||||
<li>XR: Implement <code class="language-plaintext highlighter-rouge">XR_KHR_android_thread_settings</code> (<a href="https://github.com/godotengine/godot/pull/112889">GH-112889</a>).</li>
|
||||
<li>XR: Implement <code class="language-plaintext highlighter-rouge">XR_META_foveation_eye_tracked</code> (<a href="https://github.com/godotengine/godot/pull/112888">GH-112888</a>).</li>
|
||||
<li>XR: OpenXR: Add profiling macro for process, <code class="language-plaintext highlighter-rouge">xrWaitFrame()</code> and acquiring swapchain (<a href="https://github.com/godotengine/godot/pull/112893">GH-112893</a>).</li>
|
||||
</ul>
|
||||
<h2 id="changelog">Changelog</h2>
|
||||
<p><strong>134 contributors</strong> submitted <strong>323 fixes</strong> for this release. See our <a href="https://godotengine.github.io/godot-interactive-changelog/#4.6-dev5"><strong>interactive changelog</strong></a> for the complete list of changes since <a href="/article/dev-snapshot-godot-4-6-dev-4/">4.6-dev4</a>. You can also review <a href="https://godotengine.github.io/godot-interactive-changelog/#4.6">all changes included in 4.6</a> compared to the previous <a href="/releases/4.5/">4.5 feature release</a>.</p>
|
||||
<p>This release is built from commit <a href="https://github.com/godotengine/godot/commit/f5918a9d35350bf6402dd1b4902ab539747d77a6"><code class="language-plaintext highlighter-rouge">f5918a9d3</code></a>.</p>
|
||||
<h2 id="downloads">Downloads</h2>
|
||||
<div class="card card-download">
|
||||
<a class="card-download-link" href="/download/archive/4.6-dev5">
|
||||
Download Godot 4.6 dev5
|
||||
</a>
|
||||
<div class="card-download-details">
|
||||
<img class="lightbox-ignore" src="/storage/blog/covers/dev-snapshot-godot-4-6-dev-5.jpg" />
|
||||
<div class="card-download-platforms">
|
||||
<div class="download-platform platform-linux">
|
||||
<img width="24" height="24" src="/assets/images/platforms/linux.svg" title="Linux" alt="Linux" class="lightbox-ignore" />
|
||||
Linux
|
||||
</div>
|
||||
<a href="https://downloads.godotengine.org/?version=4.6&amp;flavor=dev5&amp;slug=linux.x86_64.zip&amp;platform=linux.64" class="btn btn-download btn-download-primary platform-linux">
|
||||
<div class="download-title">
|
||||
Standard
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://downloads.godotengine.org/?version=4.6&amp;flavor=dev5&amp;slug=mono_linux_x86_64.zip&amp;platform=linux.64" class="btn btn-download btn-download-primary btn-download-primary--mono platform-linux">
|
||||
<div class="download-title">
|
||||
.NET
|
||||
</div>
|
||||
</a>
|
||||
<div class="download-platform platform-macos">
|
||||
<img width="24" height="24" src="/assets/images/platforms/macos.svg" title="macOS" alt="macOS" class="lightbox-ignore" />
|
||||
macOS
|
||||
</div>
|
||||
<a href="https://downloads.godotengine.org/?version=4.6&amp;flavor=dev5&amp;slug=macos.universal.zip&amp;platform=macos.universal" class="btn btn-download btn-download-primary platform-macos">
|
||||
<div class="download-title">
|
||||
Standard
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://downloads.godotengine.org/?version=4.6&amp;flavor=dev5&amp;slug=mono_macos.universal.zip&amp;platform=macos.universal" class="btn btn-download btn-download-primary btn-download-primary--mono platform-macos">
|
||||
<div class="download-title">
|
||||
.NET
|
||||
</div>
|
||||
</a>
|
||||
<div class="download-platform platform-windows">
|
||||
<img width="24" height="24" src="/assets/images/platforms/windows.svg" title="Windows" alt="Windows" class="lightbox-ignore" />
|
||||
Windows
|
||||
</div>
|
||||
<a href="https://downloads.godotengine.org/?version=4.6&amp;flavor=dev5&amp;slug=win64.exe.zip&amp;platform=windows.64" class="btn btn-download btn-download-primary platform-windows">
|
||||
<div class="download-title">
|
||||
Standard
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://downloads.godotengine.org/?version=4.6&amp;flavor=dev5&amp;slug=mono_win64.zip&amp;platform=windows.64" class="btn btn-download btn-download-primary btn-download-primary--mono platform-windows">
|
||||
<div class="download-title">
|
||||
.NET
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-download-sublinks">
|
||||
<a class="card-download-other" href="/download/archive/4.6-dev5">
|
||||
Export templates and other downloads
|
||||
</a>
|
||||
<a class="card-download-donate" href="https://fund.godotengine.org/">
|
||||
Make a Donation
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<style>
|
||||
.thankyou-wrapper {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.85);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: 10;
|
||||
}
|
||||
.thankyou {
|
||||
background: var(--base-color);
|
||||
box-shadow: var(--more-shadow);
|
||||
padding: 30px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
border-radius: 13px;
|
||||
}
|
||||
.thankyou-reading {
|
||||
font-size: 16px;
|
||||
}
|
||||
.thankyou-reading-list {
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
margin-left: 48px;
|
||||
padding-left: 0;
|
||||
}
|
||||
.thankyou-donate {
|
||||
margin-bottom: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
.btn.btn-donate {
|
||||
background-color: var(--primary-color);
|
||||
color: hsla(0, 0%, 100%, 0.9);
|
||||
font-size: 22px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
.thankyou h2 {
|
||||
text-shadow: var(--base-shadow);
|
||||
font-size: 36px;
|
||||
font-weight: 800;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.thankyou h2 .anchored-link {
|
||||
/* Hiding the anchored text automatically added on blogposts */
|
||||
display: none !important;
|
||||
}
|
||||
.thankyou p {
|
||||
max-width: 620px;
|
||||
font-size: 25px;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.thankyou-wrapper {
|
||||
display: block;
|
||||
}
|
||||
.thankyou {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
overflow: scroll;
|
||||
padding: 30px 40px 18px 40px;
|
||||
}
|
||||
.thankyou-reading-list {
|
||||
margin-left: 24px;
|
||||
}
|
||||
.btn-close-thankyou-popup {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
.btn-close-thankyou-popup {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
right: 12px;
|
||||
}
|
||||
.btn-close-thankyou-popup img {
|
||||
background: transparent !important; /* for overwriting the style in the blogposts img */
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
.btn-close-thankyou-popup img {
|
||||
filter: invert(1);
|
||||
opacity: 0.75;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const thankYouWrapper = document.getElementById('thank-you');
|
||||
// Close itself, when clicked outside of the popup area.
|
||||
thankYouWrapper.addEventListener('click', (e) => {
|
||||
if (e.target === thankYouWrapper) {
|
||||
thankYouWrapper.style.display = 'none';
|
||||
}
|
||||
});
|
||||
// Close with a close button.
|
||||
const thankYouBackButton = document.querySelector('.btn-close-thankyou-popup');
|
||||
thankYouBackButton.addEventListener('click', () => {
|
||||
thankYouWrapper.style.display = 'none';
|
||||
});
|
||||
// Open from the main download buttons.
|
||||
const downloadButtons = document.querySelectorAll('.btn-download, .download-button');
|
||||
downloadButtons.forEach((it) => {
|
||||
if (it.dataset?.external === "yes") {
|
||||
return;
|
||||
}
|
||||
it.addEventListener('click', () => {
|
||||
thankYouWrapper.style.display = '';
|
||||
document.querySelector('.btn.btn-donate').focus();
|
||||
});
|
||||
});
|
||||
// Open from the all downloads list.
|
||||
const downloadLinks = document.querySelectorAll('.download-link');
|
||||
downloadLinks.forEach((it) => {
|
||||
it.addEventListener('click', () => {
|
||||
thankYouWrapper.style.display = '';
|
||||
});
|
||||
});
|
||||
// Close the dialog when the user presses the escape key.
|
||||
document.addEventListener('keydown', (e) => {
|
||||
if (e.key === 'Escape') {
|
||||
thankYouWrapper.style.display = 'none';
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<div class="thankyou-wrapper" id="thank-you" style="display: none;">
|
||||
<div class="thankyou">
|
||||
<h2>Godot is downloading...</h2>
|
||||
<p class="thankyou-donate">
|
||||
Godot exists thanks to donations from people like you. Help us continue our work:
|
||||
</p>
|
||||
<a href="https://fund.godotengine.org" class="btn btn-donate">
|
||||
Make a Donation
|
||||
</a>
|
||||
<div class="btn-close-thankyou-popup">
|
||||
<img src="/assets/icons/cross.svg" width="24" height="24" alt="Close this popup" class="lightbox-ignore" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p><strong>Standard build</strong> includes support for GDScript and GDExtension.</p>
|
||||
<p><strong>.NET build</strong> (marked as <code class="language-plaintext highlighter-rouge">mono</code>) includes support for C#, as well as GDScript and GDExtension.</p>
|
||||
<div class="card card-warning">
|
||||
<p>
|
||||
While engine maintainers try their best to ensure that each preview snapshot and release candidate is stable, this is by definition <strong>a pre-release piece of software</strong>. Be sure to make frequent backups, or use a version control system such as Git, to preserve your projects in case of corruption or data loss.
|
||||
</p>
|
||||
</div>
|
||||
<h2 id="known-issues">Known issues</h2>
|
||||
<p>With every release we accept that there are going to be various issues, which have already been reported but haven’t been fixed yet. See the GitHub issue tracker for a complete list of <a href="https://github.com/godotengine/godot/issues?q=is%3Aissue+is%3Aopen+label%3Abug">known bugs</a>.</p>
|
||||
<h2 id="bug-reports">Bug reports</h2>
|
||||
<p>As a tester, we encourage you to <a href="https://github.com/godotengine/godot/issues">open bug reports</a> if you experience issues with this release. Please check the <a href="https://github.com/godotengine/godot/issues">existing issues on GitHub</a> first, using the search function with relevant keywords, to ensure that the bug you experience is not already known.</p>
|
||||
<p>In particular, any change that would cause a regression in your projects is very important to report (e.g. if something that worked fine in previous 4.x releases, but no longer works in this snapshot).</p>
|
||||
<h2 id="support">Support</h2>
|
||||
<p>Godot is a non-profit, open source game engine developed by hundreds of contributors on their free time, as well as a handful of part and full-time developers hired thanks to <a href="https://fund.godotengine.org/">generous donations from the Godot community</a>. A big thank you to everyone who has contributed <a href="https://github.com/godotengine/godot/blob/master/AUTHORS.md">their time</a> or <a href="https://github.com/godotengine/godot/blob/master/DONORS.md">their financial support</a> to the project!</p>
|
||||
<p>If you’d like to support the project financially and help us secure our future hires, you can do so using the <a href="https://fund.godotengine.org/">Godot Development Fund</a> platform managed by <a href="https://godot.foundation/">Godot Foundation</a>. There are also several <a href="/donate">alternative ways to donate</a> which you may find more suitable.</p>
|
||||
<p><a class="btn" href="https://fund.godotengine.org/">Donate now</a></p></content><author><name>Thaddeus Crews</name></author><category term="Pre-release"/></entry><entry><title>Godot XR update - November 2025</title><link href="https://godotengine.org/article/godot-xr-update-nov-2025/"/><updated>2025-11-21T12:00:00+00:00</updated><id>https://godotengine.org/article/godot-xr-update-nov-2025/</id><summary>MOAT XR, XR game jam results, new features, OpenXR inventory</summary><content type="html"><h2 id="the-museum-of-all-things-released-on-the-meta-quest-store">“The Museum of All Things” released on the Meta Quest store!</h2>
|
||||
<p>The Museum of All Things is a virtual museum where each exhibit is generated from an article on Wikipedia, and the links to other articles become doors to other exhibits.</p>
|
||||
<p><img src="/storage/blog/godot-xr/updates/moat.png" alt="Museum of All Things" /></p>
|
||||
<p>It was the topic of a <a href="https://godotengine.org/article/museum-of-all-things/">showcase back in February</a>, where it had a PCVR version, but no port to the Meta Quest.</p>
|
||||
@@ -4274,261 +4574,4 @@ While engine maintainers try their best to ensure that each preview snapshot and
|
||||
<p>While JetBrains Rider is known as a professional tool, it recently became available for free for non-commercial use. That means if you’re just getting started with Godot, then it’s free for learning. It’s also free for open source, so you can use it to contribute to the engine, and it’s free for content creation, so you can make cool videos of your learning journey too. Other options for <a href="https://www.jetbrains.com/rider/buy/?utm_source=google&amp;utm_medium=referral&amp;utm_campaign=rider&amp;utm_content=godot-licensing&amp;section=commercial&amp;billing=yearly">licensing</a> and <a href="https://www.jetbrains.com/store/?utm_source=google&amp;utm_medium=referral&amp;utm_campaign=rider&amp;utm_content=godot-post-discounts&amp;section=discounts&amp;billing=yearly">discounts</a> are also available.</p>
|
||||
<h3 id="a-message-from-jetbrains">A message from JetBrains:</h3>
|
||||
<p>At JetBrains, we value the diversity of thought and experience in the software industry, such as the many different programming languages and related ecosystems. We can see that there is ample scope for multiple game engines, especially so for a not-for-profit, open-source game engine. Development happens thanks to the dedication of contributors and paid volunteers, and we welcome the chance to support passionate people making a difference with a successful community project.</p>
|
||||
<p>We’d like to encourage you to visit the <a href="https://fund.godotengine.org/">Godot Development Fund</a> platform managed by the <a href="https://godot.foundation/">Godot Foundation</a>, or to check <a href="https://godotengine.org/donate">out the alternative ways to donate</a>, and join us in supporting such a fantastic project.</p></content><author><name>Godot Foundation</name></author><category term="News"/></entry><entry><title>Dev snapshot: Godot 4.5 beta 4</title><link href="https://godotengine.org/article/dev-snapshot-godot-4-5-beta-4/"/><updated>2025-07-29T12:00:00+00:00</updated><id>https://godotengine.org/article/dev-snapshot-godot-4-5-beta-4/</id><summary>More critical fixes coming your way!</summary><content type="html"><p>It’s been a while since our last snapshot, as our team has been quite busy knocking out some critical release-blocker and immediate-blocker issues. Thankfully, we’re back at the point where we can comfortably deliver our latest 4.5 pre-release candidate. As a refresher: the beta period means that the project has entered feature freeze, so the only changes you’ll be seeing are bugfixes and addressing regressions.</p>
|
||||
<p><a href="#downloads">Jump to the <strong>Downloads</strong> section</a>, and give it a spin right now, or continue reading to learn more about improvements in this release. You can also try the <a href="https://editor.godotengine.org/releases/4.5.beta4/"><strong>Web editor</strong></a>, the <a href="https://www.meta.com/s/h9JcJGHfg"><strong>XR editor</strong></a>, or the <a href="https://play.google.com/store/apps/details?id=org.godotengine.editor.v4"><strong>Android editor</strong></a> for this release. If you are interested in the latter, please request to join <a href="https://groups.google.com/g/godot-testers">our testing group</a> to get access to pre-release builds.</p>
|
||||
<hr />
|
||||
<p><em>The cover illustration is from</em> <a href="https://store.steampowered.com/app/3775050/DOGWALK/?curator_clanid=41324400"><strong>DOGWALK</strong></a>, a title we had the pleasure of showcasing in a <a href="https://godotengine.org/article/godot-showcase-dogwalk/">dedicated article</a>. You can download the game for free on <a href="https://store.steampowered.com/app/3775050/DOGWALK/?curator_clanid=41324400">Steam</a>, <a href="https://blenderstudio.itch.io/dogwalk">itch.io</a>, and the <a href="https://studio.blender.org/projects/dogwalk/">Blender Studio website</a>.</p>
|
||||
<h2 id="highlights">Highlights</h2>
|
||||
<p>For an overview of what’s new overall in Godot 4.5, have a look at the highlights for <a href="/article/dev-snapshot-godot-4-5-beta-1/">4.5 beta 1</a>, which cover a lot of the changes. This blog post only covers the changes between beta 3 and beta 4. This section covers the most relevant changes made since the beta 3 snapshot, which are largely regression fixes:</p>
|
||||
<ul>
|
||||
<li>Animation: Remove PropertyTweener start warning (<a href="https://github.com/godotengine/godot/pull/108410">GH-108410</a>).</li>
|
||||
<li>Buildsystem: Android: Update the maven publishing configuration following the deprecation of the OSSHR service (<a href="https://github.com/godotengine/godot/pull/108393">GH-108393</a>).</li>
|
||||
<li>Buildsystem: Web: Fix Emscripten for WebXR and update minimum version (<a href="https://github.com/godotengine/godot/pull/107460">GH-107460</a>).</li>
|
||||
<li>C#: Fix thread deadlock when using a worker thread to load a script with a generic base class (<a href="https://github.com/godotengine/godot/pull/99798">GH-99798</a>).</li>
|
||||
<li>Editor: Fix main editor title after changing language (<a href="https://github.com/godotengine/godot/pull/108396">GH-108396</a>).</li>
|
||||
<li>Editor: Fix ScriptEditor inline colors float handling (<a href="https://github.com/godotengine/godot/pull/107904">GH-107904</a>).</li>
|
||||
<li>GDScript: Fix autocompletion issues with nested types (<a href="https://github.com/godotengine/godot/pull/94996">GH-94996</a>).</li>
|
||||
<li>GDScript: Fix lookup symbol for <code class="language-plaintext highlighter-rouge">super()</code> (<a href="https://github.com/godotengine/godot/pull/108306">GH-108306</a>).</li>
|
||||
<li>GUI: Code Editor: Fix “Pick Color” menu option replacing multiple color items (<a href="https://github.com/godotengine/godot/pull/108431">GH-108431</a>).</li>
|
||||
<li>GUI: RTL: Add method to get visible content bounding box (<a href="https://github.com/godotengine/godot/pull/108466">GH-108466</a>).</li>
|
||||
<li>GUI: RTL: Add option to scroll follow visible characters (<a href="https://github.com/godotengine/godot/pull/108399">GH-108399</a>).</li>
|
||||
<li>GUI: TextEdit: Draw guidelines under the text and caret (<a href="https://github.com/godotengine/godot/pull/108599">GH-108599</a>).</li>
|
||||
<li>Multiplayer: Fix node cache errors on nested MultiplayerSpawners (<a href="https://github.com/godotengine/godot/pull/101416">GH-101416</a>).</li>
|
||||
<li>Porting: Windows: Add SSE4.2 support runtime check (<a href="https://github.com/godotengine/godot/pull/108561">GH-108561</a>).</li>
|
||||
<li>Rendering: Always perform color correction and debanding on nonlinear sRGB values (<a href="https://github.com/godotengine/godot/pull/107782">GH-107782</a>).</li>
|
||||
<li>Rendering: Fix crash when creating voxel GI data (<a href="https://github.com/godotengine/godot/pull/108397">GH-108397</a>).</li>
|
||||
<li>Rendering: Fix underculling of occulusion culling (<a href="https://github.com/godotengine/godot/pull/108347">GH-108347</a>).</li>
|
||||
</ul>
|
||||
<h2 id="changelog">Changelog</h2>
|
||||
<p><strong>79 contributors</strong> submitted <strong>168 fixes</strong> for this release. See our <a href="https://godotengine.github.io/godot-interactive-changelog/#4.5-beta4"><strong>interactive changelog</strong></a> for the complete list of changes since the previous 4.5-beta3 snapshot.</p>
|
||||
<p>This release is built from commit <a href="https://github.com/godotengine/godot/commit/2d113cc224cb9be07866d003819fcef2226a52ea"><code class="language-plaintext highlighter-rouge">2d113cc22</code></a>.</p>
|
||||
<h2 id="downloads">Downloads</h2>
|
||||
<div class="card card-download">
|
||||
<a class="card-download-link" href="/download/archive/4.5-beta4">
|
||||
Download Godot 4.5 beta4
|
||||
</a>
|
||||
<div class="card-download-details">
|
||||
<img class="lightbox-ignore" src="/storage/blog/covers/dev-snapshot-godot-4-5-beta-4.webp" />
|
||||
<div class="card-download-platforms">
|
||||
<div class="download-platform platform-linux">
|
||||
<img width="24" height="24" src="/assets/images/platforms/linux.svg" title="Linux" alt="Linux" class="lightbox-ignore" />
|
||||
Linux
|
||||
</div>
|
||||
<a href="https://downloads.godotengine.org/?version=4.5&amp;flavor=beta4&amp;slug=linux.x86_64.zip&amp;platform=linux.64" class="btn btn-download btn-download-primary platform-linux">
|
||||
<div class="download-title">
|
||||
Standard
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://downloads.godotengine.org/?version=4.5&amp;flavor=beta4&amp;slug=mono_linux_x86_64.zip&amp;platform=linux.64" class="btn btn-download btn-download-primary btn-download-primary--mono platform-linux">
|
||||
<div class="download-title">
|
||||
.NET
|
||||
</div>
|
||||
</a>
|
||||
<div class="download-platform platform-macos">
|
||||
<img width="24" height="24" src="/assets/images/platforms/macos.svg" title="macOS" alt="macOS" class="lightbox-ignore" />
|
||||
macOS
|
||||
</div>
|
||||
<a href="https://downloads.godotengine.org/?version=4.5&amp;flavor=beta4&amp;slug=macos.universal.zip&amp;platform=macos.universal" class="btn btn-download btn-download-primary platform-macos">
|
||||
<div class="download-title">
|
||||
Standard
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://downloads.godotengine.org/?version=4.5&amp;flavor=beta4&amp;slug=mono_macos.universal.zip&amp;platform=macos.universal" class="btn btn-download btn-download-primary btn-download-primary--mono platform-macos">
|
||||
<div class="download-title">
|
||||
.NET
|
||||
</div>
|
||||
</a>
|
||||
<div class="download-platform platform-windows">
|
||||
<img width="24" height="24" src="/assets/images/platforms/windows.svg" title="Windows" alt="Windows" class="lightbox-ignore" />
|
||||
Windows
|
||||
</div>
|
||||
<a href="https://downloads.godotengine.org/?version=4.5&amp;flavor=beta4&amp;slug=win64.exe.zip&amp;platform=windows.64" class="btn btn-download btn-download-primary platform-windows">
|
||||
<div class="download-title">
|
||||
Standard
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://downloads.godotengine.org/?version=4.5&amp;flavor=beta4&amp;slug=mono_win64.zip&amp;platform=windows.64" class="btn btn-download btn-download-primary btn-download-primary--mono platform-windows">
|
||||
<div class="download-title">
|
||||
.NET
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-download-sublinks">
|
||||
<a class="card-download-other" href="/download/archive/4.5-beta4">
|
||||
Export templates and other downloads
|
||||
</a>
|
||||
<a class="card-download-donate" href="https://fund.godotengine.org/">
|
||||
Make a Donation
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<style>
|
||||
.thankyou-wrapper {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.85);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: 10;
|
||||
}
|
||||
.thankyou {
|
||||
background: var(--base-color);
|
||||
box-shadow: var(--more-shadow);
|
||||
padding: 30px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
border-radius: 13px;
|
||||
}
|
||||
.thankyou-reading {
|
||||
font-size: 16px;
|
||||
}
|
||||
.thankyou-reading-list {
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
margin-left: 48px;
|
||||
padding-left: 0;
|
||||
}
|
||||
.thankyou-donate {
|
||||
margin-bottom: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
.btn.btn-donate {
|
||||
background-color: var(--primary-color);
|
||||
color: hsla(0, 0%, 100%, 0.9);
|
||||
font-size: 22px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
.thankyou h2 {
|
||||
text-shadow: var(--base-shadow);
|
||||
font-size: 36px;
|
||||
font-weight: 800;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.thankyou h2 .anchored-link {
|
||||
/* Hiding the anchored text automatically added on blogposts */
|
||||
display: none !important;
|
||||
}
|
||||
.thankyou p {
|
||||
max-width: 620px;
|
||||
font-size: 25px;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.thankyou-wrapper {
|
||||
display: block;
|
||||
}
|
||||
.thankyou {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
overflow: scroll;
|
||||
padding: 30px 40px 18px 40px;
|
||||
}
|
||||
.thankyou-reading-list {
|
||||
margin-left: 24px;
|
||||
}
|
||||
.btn-close-thankyou-popup {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
.btn-close-thankyou-popup {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
right: 12px;
|
||||
}
|
||||
.btn-close-thankyou-popup img {
|
||||
background: transparent !important; /* for overwriting the style in the blogposts img */
|
||||
}
|
||||
@media (prefers-color-scheme: light) {
|
||||
.btn-close-thankyou-popup img {
|
||||
filter: invert(1);
|
||||
opacity: 0.75;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const thankYouWrapper = document.getElementById('thank-you');
|
||||
// Close itself, when clicked outside of the popup area.
|
||||
thankYouWrapper.addEventListener('click', (e) => {
|
||||
if (e.target === thankYouWrapper) {
|
||||
thankYouWrapper.style.display = 'none';
|
||||
}
|
||||
});
|
||||
// Close with a close button.
|
||||
const thankYouBackButton = document.querySelector('.btn-close-thankyou-popup');
|
||||
thankYouBackButton.addEventListener('click', () => {
|
||||
thankYouWrapper.style.display = 'none';
|
||||
});
|
||||
// Open from the main download buttons.
|
||||
const downloadButtons = document.querySelectorAll('.btn-download, .download-button');
|
||||
downloadButtons.forEach((it) => {
|
||||
if (it.dataset?.external === "yes") {
|
||||
return;
|
||||
}
|
||||
it.addEventListener('click', () => {
|
||||
thankYouWrapper.style.display = '';
|
||||
document.querySelector('.btn.btn-donate').focus();
|
||||
});
|
||||
});
|
||||
// Open from the all downloads list.
|
||||
const downloadLinks = document.querySelectorAll('.download-link');
|
||||
downloadLinks.forEach((it) => {
|
||||
it.addEventListener('click', () => {
|
||||
thankYouWrapper.style.display = '';
|
||||
});
|
||||
});
|
||||
// Close the dialog when the user presses the escape key.
|
||||
document.addEventListener('keydown', (e) => {
|
||||
if (e.key === 'Escape') {
|
||||
thankYouWrapper.style.display = 'none';
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<div class="thankyou-wrapper" id="thank-you" style="display: none;">
|
||||
<div class="thankyou">
|
||||
<h2>Godot is downloading...</h2>
|
||||
<p class="thankyou-donate">
|
||||
Godot exists thanks to donations from people like you. Help us continue our work:
|
||||
</p>
|
||||
<a href="https://fund.godotengine.org" class="btn btn-donate">
|
||||
Make a Donation
|
||||
</a>
|
||||
<div class="btn-close-thankyou-popup">
|
||||
<img src="/assets/icons/cross.svg" width="24" height="24" alt="Close this popup" class="lightbox-ignore" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p><strong>Standard build</strong> includes support for GDScript and GDExtension.</p>
|
||||
<p><strong>.NET build</strong> (marked as <code class="language-plaintext highlighter-rouge">mono</code>) includes support for C#, as well as GDScript and GDExtension.</p>
|
||||
<div class="card card-warning">
|
||||
<p>
|
||||
While engine maintainers try their best to ensure that each preview snapshot and release candidate is stable, this is by definition <strong>a pre-release piece of software</strong>. Be sure to make frequent backups, or use a version control system such as Git, to preserve your projects in case of corruption or data loss.
|
||||
</p>
|
||||
</div>
|
||||
<h2 id="known-issues">Known issues</h2>
|
||||
<p>During the beta stage, we focus on solving both regressions (i.e. something that worked in a previous release is now broken) and significant new bugs introduced by new features. You can have a look at our current <a href="https://github.com/orgs/godotengine/projects/61">list of regressions and significant issues</a> which we aim to address before releasing 4.5. This list is dynamic and will be updated if we discover new showstopping issues after more users start testing the beta snapshots.</p>
|
||||
<p>With every release, we accept that there are going to be various issues which have already been reported but haven’t been fixed yet. See the GitHub issue tracker for a complete list of <a href="https://github.com/godotengine/godot/issues?q=is%3Aissue+is%3Aopen+label%3Abug">known bugs</a>.</p>
|
||||
<h2 id="bug-reports">Bug reports</h2>
|
||||
<p>As a tester, we encourage you to <a href="https://github.com/godotengine/godot/issues">open bug reports</a> if you experience issues with this release. Please check the <a href="https://github.com/godotengine/godot/issues">existing issues on GitHub</a> first, using the search function with relevant keywords, to ensure that the bug you experience is not already known.</p>
|
||||
<p>In particular, any change that would cause a regression in your projects is very important to report (e.g. if something that worked fine in previous 4.x releases, but no longer works in this snapshot).</p>
|
||||
<h2 id="support">Support</h2>
|
||||
<p>Godot is a non-profit, open source game engine developed by hundreds of contributors on their free time, as well as a handful of part or full-time developers hired thanks to <a href="https://fund.godotengine.org/">generous donations from the Godot community</a>. A big thank you to everyone who has contributed <a href="https://github.com/godotengine/godot/blob/master/AUTHORS.md">their time</a> or <a href="https://github.com/godotengine/godot/blob/master/DONORS.md">their financial support</a> to the project!</p>
|
||||
<p>If you’d like to support the project financially and help us secure our future hires, you can do so using the <a href="https://fund.godotengine.org/">Godot Development Fund</a> platform managed by <a href="https://godot.foundation/">Godot Foundation</a>. There are also several <a href="/donate">alternative ways to donate</a> which you may find more suitable.</p></content><author><name>Thaddeus Crews</name></author><category term="Pre-release"/></entry></feed>
|
||||
<p>We’d like to encourage you to visit the <a href="https://fund.godotengine.org/">Godot Development Fund</a> platform managed by the <a href="https://godot.foundation/">Godot Foundation</a>, or to check <a href="https://godotengine.org/donate">out the alternative ways to donate</a>, and join us in supporting such a fantastic project.</p></content><author><name>Godot Foundation</name></author><category term="News"/></entry></feed>
|
||||
Reference in New Issue
Block a user