Godot 4.8 dev 3 is a pre-release snapshot featuring 176 fixes from 91 contributors. Key highlights include native admonition support in documentation (both in-editor and online), more precise GDScript error/warning underlines that highlight only the problematic code segment rather than the entire line, FileSystem quality-of-life improvements (scroll-to-zoom and glob-based search), exposed property clipboard API via EditorInspector, a refactored visionOS module that also lays groundwork for tvOS support, and a fix for mouse input performance issues with high-polling-rate mice on Windows. Additional changes cover physics API additions (get_velocity_at_position for RigidBody2D/3D), rendering fixes, SPIR-V reflection performance improvements, and various editor fixes.

8m read timeFrom godotengine.org
Post cover image
Table of contents
HighlightsChangelogDownloadsGodot is downloading...Known issuesBug reportsSupport

Questions this post answers

What changed with GDScript error and warning highlighting in Godot 4.8?

Godot 4.8 replaces whole-line error/warning highlighting with precise underlines that mark only the specific problematic portion of a line. Previously, an entire line was highlighted when it contained a warning or error, which obscured the exact problem and could hide multiple issues on the same line. The change, introduced in GH-119588, makes debugging GDScript significantly more targeted. Developers tracking Godot scripting improvements find the latest snapshots and discussions on daily.dev.

How do I access the property clipboard in a Godot editor plugin?

Use get_property_clipboard() and set_property_clipboard() on the EditorInspector class. Before Godot 4.8 (GH-87087), the property clipboard was internal to the engine and could not be read or written by plugins. These new methods give plugin developers direct programmatic access to whatever property value the user has copied in the inspector. Plugin developers keeping up with Godot API expansions can follow new snapshot coverage on daily.dev.

What is the visionOS module change in Godot 4.8 and does it affect tvOS support?

The visionOS platform support was refactored from a built-in platform into a standalone module in GH-109975. This simplifies the build server logic and, as a direct consequence, lays the groundwork for tvOS support planned for the near future. The change was authored by Ricardo Sanchez-Saez, Stuart Carnie, and huisedenanhai over roughly a year of work. Teams targeting Apple XR and TV platforms with Godot can track these developments on daily.dev.

16.5K Impressions