mirror of
https://github.com/godotengine/godot-website.git
synced 2026-01-04 06:09:55 +03:00
26 lines
857 B
HTML
26 lines
857 B
HTML
---
|
|
permalink: /download/3.x/index.html
|
|
title: "Download Godot 3 - Godot Engine"
|
|
description: "Download the latest stable version of the Godot Engine 3 for Linux, macOS, Windows, or Android"
|
|
layout: default
|
|
---
|
|
|
|
<div style="padding: 16px 32px">
|
|
<h3>Redirecting...</h3>
|
|
<p>
|
|
If you are not being redirected automatically, <a href="/download/3.x/windows/" class="set-os-download-url" data-version="3">click here</a>.
|
|
</p>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
if (navigator.platform.indexOf('Mac') !== -1) {
|
|
window.location = "/download/3.x/macos/";
|
|
} else if (navigator.userAgent.indexOf('Android') !== -1) {
|
|
window.location = "/download/3.x/android/";
|
|
} else if (navigator.platform.indexOf('Linux') !== -1) {
|
|
window.location = "/download/3.x/linux/";
|
|
} else { // default to windows
|
|
window.location = "/download/3.x/windows/";
|
|
}
|
|
</script>
|