118eed485e
All usages of "type" to refer to classes were renamed to "class" ClassDB has been exposed to GDScript. OBJ_TYPE() macro is now GDCLASS()
37 lines
767 B
C++
37 lines
767 B
C++
#ifndef GIPROBEEDITORPLUGIN_H
|
|
#define GIPROBEEDITORPLUGIN_H
|
|
|
|
#include "tools/editor/editor_plugin.h"
|
|
#include "tools/editor/editor_node.h"
|
|
#include "scene/resources/material.h"
|
|
#include "scene/3d/gi_probe.h"
|
|
|
|
|
|
|
|
class GIProbeEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS( GIProbeEditorPlugin, EditorPlugin );
|
|
|
|
GIProbe *gi_probe;
|
|
|
|
Button *bake;
|
|
EditorNode *editor;
|
|
|
|
void _bake();
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
public:
|
|
|
|
virtual String get_name() const { return "GIProbe"; }
|
|
bool has_main_screen() const { return false; }
|
|
virtual void edit(Object *p_node);
|
|
virtual bool handles(Object *p_node) const;
|
|
virtual void make_visible(bool p_visible);
|
|
|
|
GIProbeEditorPlugin(EditorNode *p_node);
|
|
~GIProbeEditorPlugin();
|
|
|
|
};
|
|
|
|
#endif // GIPROBEEDITORPLUGIN_H
|