Merge pull request #50193 from reduz/fix-command-queue-crash

Fix Command Queue Crash
This commit is contained in:
Rémi Verschelde 2021-07-07 16:36:13 +02:00 committed by GitHub
commit 48a5226829
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 80 additions and 24 deletions

View file

@ -79,6 +79,8 @@ class ShaderMaterial : public Material {
GDCLASS(ShaderMaterial, Material);
Ref<Shader> shader;
Map<StringName, Variant> param_cache;
protected:
bool _set(const StringName &p_name, const Variant &p_value);
bool _get(const StringName &p_name, Variant &r_ret) const;