Files
godot-website/pages/download.html
2025-04-16 18:29:16 +02:00

29 lines
841 B
HTML

---
permalink: /download/index.html
title: "Download - Godot Engine"
description: "Download the latest stable version of the Godot Engine for Linux, macOS, Windows, or Android"
layout: default
redirect_from:
- /download/4.x/
---
<div style="padding: 16px 32px">
<h3>Redirecting...</h3>
<p>
If you are not being redirected automatically, <a href="/download/windows/" class="set-os-download-url">click here</a>.
</p>
</div>
<script type="text/javascript">
if (navigator.platform.indexOf('Mac') !== -1) {
window.location = "/download/macos/";
} else if (navigator.userAgent.indexOf('Android') !== -1) {
window.location = "/download/android/";
} else if (navigator.platform.indexOf('Linux') !== -1) {
window.location = "/download/linux/";
} else { // default to windows
window.location = "/download/windows/";
}
</script>