1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Re-allows constants in global space to be initialized with function call

This commit is contained in:
Yuri Roubinski
2023-09-13 19:11:12 +03:00
parent 3ed4497113
commit d3d20f15bf
3 changed files with 68 additions and 64 deletions

View File

@@ -711,9 +711,10 @@ public:
HashMap<StringName, Varying> varyings;
HashMap<StringName, Uniform> uniforms;
HashMap<StringName, Struct> structs;
HashMap<StringName, Function> functions;
Vector<StringName> render_modes;
Vector<Function> functions;
Vector<Function> vfunctions;
Vector<Constant> vconstants;
Vector<Struct> vstructs;