---
title: "Dev snapshot: Godot 4.8 dev 3 – Godot Engine"
url: https://daily.dev/posts/dev-snapshot-godot-4-8-dev-3-godot-engine-wgag2737z
source_url: https://godotengine.org/article/dev-snapshot-godot-4-8-dev-3
type: article
source: "Godot"
published: 2026-08-07T19:23:53.955Z
updated: 2026-08-07T19:24:29.327Z
tags: ["open-source", "game-development", "godot"]
reading_time: 8
upvotes: 9
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Dev snapshot: Godot 4.8 dev 3 – Godot Engine

**[Godot](https://daily.dev/sources/godot)** · 8 min read · 9 upvotes · 0 comments

## Summary

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.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://godotengine.org/article/dev-snapshot-godot-4-8-dev-3>

## 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._

## Similar posts on daily.dev

- [Dev snapshot: Godot 4.8 dev 2 – Godot Engine](https://daily.dev/posts/dev-snapshot-godot-4-8-dev-2-godot-engine-pyqgwbsgl) · Godot · 14 upvotes · 0 comments
- [Dev snapshot: Godot 4.8 dev 1 – Godot Engine](https://daily.dev/posts/dev-snapshot-godot-4-8-dev-1-godot-engine-3hdxyfeby) · Godot · 21 upvotes · 1 comments

---

Tags: [#open-source](https://daily.dev/tags/open-source), [#game-development](https://daily.dev/tags/game-development), [#godot](https://daily.dev/tags/godot)

[View this post on daily.dev](https://daily.dev/posts/dev-snapshot-godot-4-8-dev-3-godot-engine-wgag2737z)
