From ea683cd152689cfc084fd8e28609bc486ef8ee6a Mon Sep 17 00:00:00 2001 From: BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> Date: Thu, 13 Jun 2024 13:12:55 +0200 Subject: [PATCH] Material: Fix marking as ready --- scene/resources/material.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/resources/material.cpp b/scene/resources/material.cpp index 8e49a8b56fc..65b97acabfd 100644 --- a/scene/resources/material.cpp +++ b/scene/resources/material.cpp @@ -82,7 +82,7 @@ void Material::_validate_property(PropertyInfo &p_property) const { } void Material::_mark_ready() { - init_state = INIT_STATE_INITIALIZING; + init_state = INIT_STATE_READY; } void Material::_mark_initialized(const Callable &p_add_to_dirty_list, const Callable &p_update_shader) {