Godot (game engine)

Godot is a 2D and 3D, cross-platform, free and open-source game engine released under the MIT license. It was initially developed by Juan Linietsky and Ariel Manzur[5] for several companies in Latin America prior to its public release.[6] The development environment runs on multiple operating systems including Linux, BSDs, macOS, and Microsoft Windows. Godot can create games targeting PC, mobile, and web platforms.

Godot Engine
A screenshot of the editor in Godot 3.1
Original author(s)Juan Linietsky, Ariel Manzur
Initial release14 January 2014 (2014-01-14)[1]
Stable release
3.2.3 / 17 September 2020 (2020-09-17)[2]
Repository
Written inC++[3]
Operating systemMicrosoft Windows, macOS, Linux, FreeBSD, NetBSD, OpenBSD,[4]
PlatformLinux, macOS, Microsoft Windows, BSD, iOS, Android, UWP, HTML5, WebAssembly
Available inMultilingual
TypeGame engine
LicenseMIT License
Websitegodotengine.org

Overview

Godot aims to offer a fully integrated game development environment. It allows developers to create a game from scratch, needing no other tools beyond those used for content creation (art assets, music, etc.). The engine's architecture is built around the concept of a tree of "nodes". Nodes are organized inside of "scenes", which are reusable, instanceable, inheritable, and nestable groups of nodes. All game resources, including scripts and graphical assets, are saved as part of the computer's file system (rather than in a database). This storage solution is intended to facilitate collaboration between game development teams using software version control systems.[7]

The engine supports deployment to multiple platforms and allows specification of texture compression and resolution settings for each platform. Currently, supported platforms include Linux, macOS, Microsoft Windows, BSD,[8] Android, iOS, Universal Windows Platform,[9] HTML5, and WebAssembly.[10]

Scripting

Games using Godot can be created with a variety of programming languages including C++, C#, and any other language with GDNative bindings such as Rust, Nim, and D.

Godot also has its own built-in scripting language, GDScript,[11] a high-level, dynamically typed programming language very similar to Python. Unlike Python, GDScript is optimized for Godot's scene-based architecture and can specify strict typing of variables. Godot's developers have stated that many alternative third-party scripting languages such as Lua, Python, and Squirrel were tested before deciding that using a custom language allowed for superior optimization and editor integration.[12] The engine also supports visual coding via its own built-in visual programming language VisualScript, designed to be a visual equivalent to GDScript[13]

Godot includes a script editor with auto indentation, syntax highlighting and code completion. It also features a debugger with the ability to set breakpoints and program stepping.

Rendering

Godot's graphics engine uses OpenGL ES 3.0[14] for all supported platforms; otherwise, OpenGL ES 2.0 is used. Future support for Vulkan is being developed. The engine supports normal mapping, specularity, dynamic shadows using shadow maps, baked and dynamic Global Illumination, and full-screen post-processing effects like bloom, DOF, HDR, and gamma correction. A simplified shader language, similar to GLSL, is also incorporated. Shaders can be used for materials and post-processing. Alternatively, they can be created by manipulating nodes in a visual editor.

Godot also includes a separate 2D graphics engine that can operate independently of the 3D engine. The 2D engine supports features such as lights, shadows, shaders, tile sets, parallax scrolling, polygons, animations, physics and particles. It is also possible to mix 2D and 3D using a 'viewport node'.

Other features

Godot contains an animation system with a GUI for skeletal animation, blending, animation trees, morphing, and real-time cutscenes. Almost any variable defined or created on a game entity can be animated.[15] The engine uses Bullet for 3D physics simulation.[16]

Additional features include:

History

Godot's development was started by Juan 'reduz' Linietsky and Ariel 'punto' Manzur in 2007.[17][18] Linietsky stated in a presentation that the name "Godot" was chosen due to its relation to Samuel Beckett's play Waiting for Godot, as it represents the never-ending wish of adding new features in the engine, which would get it closer to an exhaustive product, but never will.[19] In February 2014, the source code for Godot was released to the public on GitHub under the MIT License.[20]

On 15 December 2014, Godot reached version 1.0, marking the first stable release and the addition of lightmapping, navmesh support, and more shaders.[21] Version 1.1 was released on 21 May 2015, adding improved auto-completion in the code editor, a visual shader editor, a new API to the operating system for managing screens and windows, a rewritten 2D engine, new 2D navigation polygon support, a much improved Blender Collada exporter, and a new dark theme.[22] The then-new 2D engine included shaders, materials, independent Z ordering per node, lights, shadows with polygonal occluders, normal mapping, and distance-field font support. Godot joined the Software Freedom Conservancy on 4 November 2015.[23]

Godot 2.0 was released on 23 February 2016. New features included better scene instancing and inheritance, a new file system browser, multiple scene editing, and an enhanced debugger.[24][6] This was followed by version 2.1 in August 2016, which introduced an asset database, profiler, and plugin API.[25]

On 22 June 2016, Godot received a $20,000 Mozilla Open Source Support (MOSS) “Mission Partners” award to be used to add WebSockets, WebAssembly and WebGL 2.0 support.[10] Later, with Miguel de Icaza's support, Godot received a $24,000 donation from Microsoft to implement C# as a scripting language in Godot.[26]

Version 3.0 was released on 29 January 2018, adding a brand new PBR renderer implemented in OpenGL ES 3.0, virtual reality compatibility, and C# support (via Mono).[16] Version 3.0 also added the Bullet physics engine in addition to the engine's built-in 3D physics back end and was the first version of Godot to be included in Debian. Godot 3.1 was released on 13 March 2019, with the most notable features being the addition of statically typed GDScript, a script class system for GDScript, and an OpenGL ES 2.0 renderer for older devices and mobile devices.[27] Godot 3.2 was released on 29 January 2020, with the most notable features being massive documentation improvements, greatly improved C# support, and support for glTF 2.0 files.[28] The lead developer, Juan Linietsky, spent most of his time working on a separate Vulkan branch that would later be merged into master for 4.0,[29] so work on 3.2 was mostly done by other contributors. Work on 3.2 continues as a long-term support release,[28] including Godot 3.2.2 on 26 June 2020, a large patch release that added features such as OpenGL ES 2.0 batching and C# support for iOS.[30]

On 3 February 2020, Godot received a $250,000 Epic Games award to improve graphics rendering and the engine's built-in game development language, GDScript.[31] On July 8, 2020, Juan Linietsky mentioned that the Epic Games award will be used to permanently hire himself and George (Marques) for 2 years in order to free donation funds for new purposes.[32]

Usage

Many games by OKAM Studio have been made using Godot, including Dog Mendonça & Pizza Boy, which uses the Escoria adventure game extension.[33] Additionally, it has been used in West Virginia's high school curriculum, due to its ease-of-use for non-programmers and what is described as a "wealth of learning materials that already exist for the software".[34]

Notable games made with Godot

See also

References

  1. Linietsky, Juan (14 January 2014). "Godot Engine - First public release!". Godot Engine. Retrieved 2019-07-01.
  2. Verschelde, Rémi (2020-09-17). "Maintenance release: Godot 3.2.3". Retrieved 2020-09-17.
  3. "The Godot Game Engine Open Source Project on Open Hub". Retrieved 30 July 2015.
  4. Engine, Godot. "Godot Engine - Features". godotengine.org. Retrieved 2020-01-06.
  5. "Historia de Godot". Headsem.
  6. Linietsky, Juan. "Godot 2.0: Talking with the Creator". 80.lv. Retrieved 18 June 2016.
  7. "File system". Getting started. Godot Docs. Retrieved 2019-07-20.
  8. "FreshPorts – devel/godot". Retrieved 29 December 2017.
  9. "Compiling for Universal Windows Apps". Development. Godot Docs. Retrieved 2019-07-20.
  10. "Mozilla Awards $385,000 to Open Source Projects as part of MOSS "Mission Partners" Program". The Mozilla Blog. Retrieved 17 October 2016.
  11. GDScript
  12. "GDScript basics: History". Getting started. Godot Docs. Retrieved 2019-07-20.
  13. "VisualScript — Godot Engine latest documentation". docs.godotengine.org. Retrieved 2020-03-07.
  14. Linietsky, Juan (26 February 2018). "Moving to Vulkan (and ES 2.0) instead of OpenGL ES 3.0". Retrieved 28 July 2019.
  15. "Animations". Getting started. Godot Docs. Retrieved 2019-07-20.
  16. Larable, Michael (29 January 2018). "Godot 3.0 Open-Source Game Engine Released". Phoronix. Retrieved 30 January 2018.
  17. StraToN. "SteamLUG Cast". Retrieved 18 June 2016.
  18. reduz. "Godot history in images!". Retrieved 18 June 2016.
  19. "Juan Linietsky presentation of Godot at RMLL 2015 in Beauvais, France". 7 July 2015. 46 minutes in.
  20. liamdawe (14 February 2014). "Godot Game Engine Is Now Open Source".
  21. Linietsky, Juan (15 December 2014). "Godot Engine Reaches 1.0, Releases First Stable". Godot Engine. Retrieved 2019-07-01.
  22. Linietsky, Juan (21 May 2015). "Godot 1.1 Out!!". Godot Engine. Retrieved 2019-07-01.
  23. "Godot Game Engine is Conservancy's Newest Member Project". Retrieved 13 November 2015.
  24. Linietsky, Juan (23 February 2016). "Godot Engine Reaches 2.0 Stable". Godot Engine. Retrieved 2019-07-01.
  25. Linietsky, Juan (9 August 2016). "Godot Reaches 2.1 Stable". Godot Engine. Retrieved 2019-07-01.
  26. Engine, Godot. "Godot Engine - Introducing C# in Godot". godotengine.org. Retrieved 2020-03-07.
  27. "Godot 3.1 is out, improving usability and features". Retrieved 2020-09-10.
  28. "Here comes Godot 3.2, with quality as priority". Retrieved 2020-09-10.
  29. "Godot 4 One Step Closer -- Vulkan Branch Now Master". Retrieved 2020-09-10.
  30. "Maintenance release: Godot 3.2.2". Retrieved 2020-09-10.
  31. Linietsky, Juan (3 February 2020). "Godot Engine was awarded an Epic MegaGrant". Retrieved 5 February 2020.
  32. Linietsky, Juan (2020-06-08). "Godot Engine - Donation changes". godotengine.org. Retrieved 2020-09-25.
  33. Suckley, Matt (15 August 2015). "OKAM Studio on empowering designers with Godot Engine's adventure game framework Escoria". PocketGamer.biz. Retrieved 29 December 2017.
  34. Brasseur, Vicky (16 August 2016). "Godot open source game engine helps power the future in West Virginia". Opensource.com. Retrieved 29 December 2017.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.