blob: 59cdeddd8d6723885ecc0eff5d0afdc8f651ca27 (
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
38
|
#ifndef SHADER_GLOBALS_EDITOR_H
#define SHADER_GLOBALS_EDITOR_H
#include "core/undo_redo.h"
#include "editor/editor_autoload_settings.h"
#include "editor/editor_data.h"
#include "editor/editor_plugin_settings.h"
#include "editor/editor_sectioned_inspector.h"
#include "scene/gui/dialogs.h"
#include "scene/gui/tab_container.h"
class ShaderGlobalsEditorInterface;
class ShaderGlobalsEditor : public VBoxContainer {
GDCLASS(ShaderGlobalsEditor, VBoxContainer)
ShaderGlobalsEditorInterface *interface;
EditorInspector *inspector;
LineEdit *variable_name;
OptionButton *variable_type;
Button *variable_add;
void _variable_added();
void _variable_deleted(const String &p_variable);
void _changed();
protected:
static void _bind_methods();
void _notification(int p_what);
public:
ShaderGlobalsEditor();
~ShaderGlobalsEditor();
};
#endif // SHADER_GLOBALS_EDITOR_H
|