We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de37627 + 5f2eb6d commit a872e1bCopy full SHA for a872e1b
editor/plugins/shader_baker_export_plugin.cpp
@@ -111,9 +111,9 @@ bool ShaderBakerExportPlugin::_begin_customize_resources(const Ref<EditorExportP
111
112
StringBuilder to_hash;
113
to_hash.append("[GodotVersionNumber]");
114
- to_hash.append(VERSION_NUMBER);
+ to_hash.append(GODOT_VERSION_NUMBER);
115
to_hash.append("[GodotVersionHash]");
116
- to_hash.append(VERSION_HASH);
+ to_hash.append(GODOT_VERSION_HASH);
117
to_hash.append("[Renderer]");
118
to_hash.append(shader_cache_renderer_name);
119
customization_configuration_hash = to_hash.as_string().hash64();
0 commit comments