summaryrefslogtreecommitdiff
path: root/scene/main/shader_globals_override.h
blob: 33d0dc948f2ef13e2e8768516007fc6927724021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef SHADER_GLOBALS_OVERRIDE_H
#define SHADER_GLOBALS_OVERRIDE_H

#include "scene/3d/node_3d.h"

class ShaderGlobalsOverride : public Node {

	GDCLASS(ShaderGlobalsOverride, Node);

	struct Override {
		bool in_use = false;
		Variant override;
	};

	StringName *_remap(const StringName &p_name) const;

	bool active;
	mutable HashMap<StringName, Override> overrides;
	mutable HashMap<StringName, StringName> param_remaps;

	void _activate();

protected:
	bool _set(const StringName &p_name, const Variant &p_value);
	bool _get(const StringName &p_name, Variant &r_ret) const;
	void _get_property_list(List<PropertyInfo> *p_list) const;

	void _notification(int p_what);
	static void _bind_methods();

public:
	String get_configuration_warning() const;

	ShaderGlobalsOverride();
};

#endif // SHADER_GLOBALS_OVERRIDE_H