2016-06-18 12:46:12 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* baked_light_editor_plugin.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2016-06-18 12:46:12 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2014-05-14 04:22:15 +00:00
|
|
|
#include "baked_light_editor_plugin.h"
|
2014-06-11 13:41:03 +00:00
|
|
|
#include "io/marshalls.h"
|
|
|
|
#include "io/resource_saver.h"
|
2017-03-18 23:36:26 +00:00
|
|
|
#include "scene/3d/mesh_instance.h"
|
|
|
|
#include "scene/gui/box_container.h"
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-05-24 04:35:47 +00:00
|
|
|
void BakedLightEditor::_end_baking() {
|
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
baker->clear();
|
|
|
|
set_process(false);
|
|
|
|
button_bake->set_pressed(false);
|
|
|
|
bake_info->set_text("");
|
2014-05-24 04:35:47 +00:00
|
|
|
}
|
|
|
|
|
2014-05-14 04:22:15 +00:00
|
|
|
void BakedLightEditor::_node_removed(Node *p_node) {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
if (p_node == node) {
|
2014-05-24 04:35:47 +00:00
|
|
|
_end_baking();
|
2017-03-18 23:36:26 +00:00
|
|
|
node = NULL;
|
2014-06-11 13:41:03 +00:00
|
|
|
|
2014-05-14 04:22:15 +00:00
|
|
|
hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
void BakedLightEditor::_notification(int p_option) {
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
if (p_option == NOTIFICATION_ENTER_TREE) {
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
button_bake->set_icon(get_icon("Bake", "EditorIcons"));
|
|
|
|
button_reset->set_icon(get_icon("Reload", "EditorIcons"));
|
|
|
|
button_make_lightmaps->set_icon(get_icon("LightMap", "EditorIcons"));
|
2014-06-11 13:41:03 +00:00
|
|
|
}
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
if (p_option == NOTIFICATION_PROCESS) {
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
if (baker->is_baking() && !baker->is_paused()) {
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
update_timeout -= get_process_delta_time();
|
|
|
|
if (update_timeout < 0) {
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
if (baker->get_baked_light() != node->get_baked_light()) {
|
2014-06-11 13:41:03 +00:00
|
|
|
_end_baking();
|
|
|
|
return;
|
|
|
|
}
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
uint64_t t = OS::get_singleton()->get_ticks_msec();
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
#ifdef DEBUG_CUBES
|
2017-03-18 23:36:26 +00:00
|
|
|
double norm = baker->get_normalization();
|
|
|
|
float max_lum = 0;
|
2014-06-11 13:41:03 +00:00
|
|
|
|
2014-05-24 04:35:47 +00:00
|
|
|
{
|
2017-03-18 23:36:26 +00:00
|
|
|
DVector<Color>::Write cw = colors.write();
|
|
|
|
BakedLightBaker::Octant *octants = baker->octant_pool.ptr();
|
2014-06-11 13:41:03 +00:00
|
|
|
BakedLightBaker::Octant *oct = &octants[baker->leaf_list];
|
2017-03-18 23:36:26 +00:00
|
|
|
int vert_idx = 0;
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
while (oct) {
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
Color colors[8];
|
2017-03-18 23:36:26 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
colors[i].r = oct->light_accum[i][0] / norm;
|
|
|
|
colors[i].g = oct->light_accum[i][1] / norm;
|
|
|
|
colors[i].b = oct->light_accum[i][2] / norm;
|
2014-06-11 13:41:03 +00:00
|
|
|
|
|
|
|
float lum = colors[i].get_v();
|
|
|
|
//if (lum<0.05)
|
|
|
|
// color.a=0;
|
2017-03-18 23:36:26 +00:00
|
|
|
if (lum > max_lum)
|
|
|
|
max_lum = lum;
|
2014-06-11 13:41:03 +00:00
|
|
|
}
|
2017-03-18 23:36:26 +00:00
|
|
|
static const int vert2cub[36] = { 7, 3, 1, 1, 5, 7, 7, 6, 2, 2, 3, 7, 7, 5, 4, 4, 6, 7, 2, 6, 4, 4, 0, 2, 4, 5, 1, 1, 0, 4, 1, 3, 2, 2, 0, 1 };
|
|
|
|
for (int i = 0; i < 36; i++) {
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
cw[vert_idx++] = colors[vert2cub[i]];
|
2014-05-24 04:35:47 +00:00
|
|
|
}
|
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
if (oct->next_leaf)
|
2017-03-18 23:36:26 +00:00
|
|
|
oct = &octants[oct->next_leaf];
|
2014-06-11 13:41:03 +00:00
|
|
|
else
|
2017-03-18 23:36:26 +00:00
|
|
|
oct = NULL;
|
2014-05-24 04:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-18 23:36:26 +00:00
|
|
|
print_line("MSCOL: " + itos(OS::get_singleton()->get_ticks_msec() - t));
|
2014-06-11 13:41:03 +00:00
|
|
|
t = OS::get_singleton()->get_ticks_msec();
|
2014-05-24 04:35:47 +00:00
|
|
|
|
|
|
|
Array a;
|
|
|
|
a.resize(Mesh::ARRAY_MAX);
|
2017-03-18 23:36:26 +00:00
|
|
|
a[Mesh::ARRAY_VERTEX] = vertices;
|
|
|
|
a[Mesh::ARRAY_COLOR] = colors;
|
|
|
|
while (mesh->get_surface_count())
|
2014-05-24 04:35:47 +00:00
|
|
|
mesh->surface_remove(0);
|
2017-03-18 23:36:26 +00:00
|
|
|
mesh->add_surface(Mesh::PRIMITIVE_TRIANGLES, a);
|
|
|
|
mesh->surface_set_material(0, material);
|
2014-06-11 13:41:03 +00:00
|
|
|
#endif
|
|
|
|
ERR_FAIL_COND(node->get_baked_light().is_null());
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
baker->update_octree_images(octree_texture, light_texture);
|
2014-10-28 01:54:32 +00:00
|
|
|
baker->update_octree_sampler(octree_sampler);
|
2017-03-18 23:36:26 +00:00
|
|
|
// print_line("sampler size: "+itos(octree_sampler.size()*4));
|
2014-10-28 01:54:32 +00:00
|
|
|
|
2014-06-16 13:22:26 +00:00
|
|
|
#if 1
|
2017-03-18 23:36:26 +00:00
|
|
|
//debug
|
|
|
|
Image img(baker->baked_octree_texture_w, baker->baked_octree_texture_h, 0, Image::FORMAT_RGBA, octree_texture);
|
|
|
|
Ref<ImageTexture> it = memnew(ImageTexture);
|
2014-06-11 13:41:03 +00:00
|
|
|
it->create_from_image(img);
|
2017-03-18 23:36:26 +00:00
|
|
|
ResourceSaver::save("baked_octree.png", it);
|
2014-06-11 13:41:03 +00:00
|
|
|
|
|
|
|
#endif
|
2014-10-28 01:54:32 +00:00
|
|
|
|
|
|
|
uint64_t rays_snap = baker->get_rays_thrown();
|
2017-03-18 23:36:26 +00:00
|
|
|
int rays_sec = (rays_snap - last_rays_time) * 1.0 - (update_timeout);
|
|
|
|
last_rays_time = rays_snap;
|
2014-10-28 01:54:32 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
bake_info->set_text("rays/s: " + itos(rays_sec));
|
|
|
|
update_timeout = 1;
|
|
|
|
print_line("MSUPDATE: " + itos(OS::get_singleton()->get_ticks_msec() - t));
|
|
|
|
t = OS::get_singleton()->get_ticks_msec();
|
2014-06-11 13:41:03 +00:00
|
|
|
node->get_baked_light()->set_octree(octree_texture);
|
2014-10-28 01:54:32 +00:00
|
|
|
node->get_baked_light()->set_light(light_texture);
|
|
|
|
node->get_baked_light()->set_sampler_octree(octree_sampler);
|
2014-06-17 14:58:35 +00:00
|
|
|
node->get_baked_light()->set_edited(true);
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
print_line("MSSET: " + itos(OS::get_singleton()->get_ticks_msec() - t));
|
2014-05-24 04:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-14 04:22:15 +00:00
|
|
|
void BakedLightEditor::_menu_option(int p_option) {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
switch (p_option) {
|
2014-05-14 04:22:15 +00:00
|
|
|
|
|
|
|
case MENU_OPTION_BAKE: {
|
|
|
|
|
|
|
|
ERR_FAIL_COND(!node);
|
2014-06-11 13:41:03 +00:00
|
|
|
ERR_FAIL_COND(node->get_baked_light().is_null());
|
2017-03-18 23:36:26 +00:00
|
|
|
baker->bake(node->get_baked_light(), node);
|
2014-08-14 13:31:38 +00:00
|
|
|
node->get_baked_light()->set_mode(BakedLight::MODE_OCTREE);
|
2017-03-18 23:36:26 +00:00
|
|
|
update_timeout = 0;
|
2014-06-11 13:41:03 +00:00
|
|
|
set_process(true);
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
} break;
|
|
|
|
case MENU_OPTION_CLEAR: {
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
void BakedLightEditor::_bake_pressed() {
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
ERR_FAIL_COND(!node);
|
2016-07-26 02:45:20 +00:00
|
|
|
const String conf_warning = node->get_configuration_warning();
|
|
|
|
if (!conf_warning.empty()) {
|
|
|
|
err_dialog->set_text(conf_warning);
|
2015-04-08 17:02:13 +00:00
|
|
|
err_dialog->popup_centered_minsize();
|
2014-06-11 13:41:03 +00:00
|
|
|
button_bake->set_pressed(false);
|
|
|
|
return;
|
|
|
|
}
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
if (baker->is_baking()) {
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
baker->set_pause(!button_bake->is_pressed());
|
|
|
|
if (baker->is_paused()) {
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
set_process(false);
|
|
|
|
bake_info->set_text("");
|
2014-08-14 13:31:38 +00:00
|
|
|
button_reset->show();
|
|
|
|
button_make_lightmaps->show();
|
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
} else {
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
update_timeout = 0;
|
2014-05-24 04:35:47 +00:00
|
|
|
set_process(true);
|
2014-08-14 13:31:38 +00:00
|
|
|
button_make_lightmaps->hide();
|
|
|
|
button_reset->hide();
|
2014-06-11 13:41:03 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-03-18 23:36:26 +00:00
|
|
|
baker->bake(node->get_baked_light(), node);
|
2014-08-14 13:31:38 +00:00
|
|
|
node->get_baked_light()->set_mode(BakedLight::MODE_OCTREE);
|
2017-03-18 23:36:26 +00:00
|
|
|
update_timeout = 0;
|
2014-10-28 01:54:32 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
last_rays_time = 0;
|
2016-07-26 02:45:20 +00:00
|
|
|
button_bake->set_pressed(false);
|
2014-10-28 01:54:32 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
set_process(true);
|
|
|
|
}
|
|
|
|
}
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
void BakedLightEditor::_clear_pressed() {
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
baker->clear();
|
|
|
|
button_bake->set_pressed(false);
|
|
|
|
bake_info->set_text("");
|
2014-05-14 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
void BakedLightEditor::edit(BakedLightInstance *p_baked_light) {
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
if (p_baked_light == NULL || node == p_baked_light) {
|
2014-05-14 04:22:15 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-03-18 23:36:26 +00:00
|
|
|
if (node && node != p_baked_light)
|
2014-06-11 13:41:03 +00:00
|
|
|
_end_baking();
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
node = p_baked_light;
|
2014-06-11 13:41:03 +00:00
|
|
|
//_end_baking();
|
2014-05-14 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-08-14 13:31:38 +00:00
|
|
|
void BakedLightEditor::_bake_lightmaps() {
|
|
|
|
|
|
|
|
Error err = baker->transfer_to_lightmaps();
|
|
|
|
if (err) {
|
|
|
|
|
|
|
|
err_dialog->set_text("Error baking to lightmaps!\nMake sure that a bake has just\n happened and that lightmaps are\n configured. ");
|
2015-04-08 17:02:13 +00:00
|
|
|
err_dialog->popup_centered_minsize();
|
2014-08-14 13:31:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-05-14 04:22:15 +00:00
|
|
|
|
2014-08-14 13:31:38 +00:00
|
|
|
node->get_baked_light()->set_mode(BakedLight::MODE_LIGHTMAPS);
|
|
|
|
}
|
2014-05-14 04:22:15 +00:00
|
|
|
|
|
|
|
void BakedLightEditor::_bind_methods() {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
ObjectTypeDB::bind_method("_menu_option", &BakedLightEditor::_menu_option);
|
|
|
|
ObjectTypeDB::bind_method("_bake_pressed", &BakedLightEditor::_bake_pressed);
|
|
|
|
ObjectTypeDB::bind_method("_clear_pressed", &BakedLightEditor::_clear_pressed);
|
|
|
|
ObjectTypeDB::bind_method("_bake_lightmaps", &BakedLightEditor::_bake_lightmaps);
|
2014-05-14 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BakedLightEditor::BakedLightEditor() {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
bake_hbox = memnew(HBoxContainer);
|
|
|
|
button_bake = memnew(ToolButton);
|
2016-05-04 01:25:37 +00:00
|
|
|
button_bake->set_text(TTR("Bake!"));
|
2014-06-11 13:41:03 +00:00
|
|
|
button_bake->set_toggle_mode(true);
|
2017-03-18 23:36:26 +00:00
|
|
|
button_reset = memnew(Button);
|
|
|
|
button_make_lightmaps = memnew(Button);
|
2014-08-14 13:31:38 +00:00
|
|
|
button_bake->set_tooltip("Start/Unpause the baking process.\nThis bakes lighting into the lightmap octree.");
|
2017-03-18 23:36:26 +00:00
|
|
|
button_make_lightmaps->set_tooltip("Convert the lightmap octree to lightmap textures\n(must have set up UV/Lightmaps properly before!).");
|
2014-08-14 13:31:38 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
bake_info = memnew(Label);
|
|
|
|
bake_hbox->add_child(button_bake);
|
|
|
|
bake_hbox->add_child(button_reset);
|
|
|
|
bake_hbox->add_child(bake_info);
|
2014-08-14 13:31:38 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
err_dialog = memnew(AcceptDialog);
|
2014-05-14 04:22:15 +00:00
|
|
|
add_child(err_dialog);
|
2017-03-18 23:36:26 +00:00
|
|
|
node = NULL;
|
|
|
|
baker = memnew(BakedLightBaker);
|
2014-05-24 04:35:47 +00:00
|
|
|
|
2014-08-14 13:31:38 +00:00
|
|
|
bake_hbox->add_child(button_make_lightmaps);
|
|
|
|
button_make_lightmaps->hide();
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
button_bake->connect("pressed", this, "_bake_pressed");
|
|
|
|
button_reset->connect("pressed", this, "_clear_pressed");
|
|
|
|
button_make_lightmaps->connect("pressed", this, "_bake_lightmaps");
|
2014-08-14 13:31:38 +00:00
|
|
|
button_reset->hide();
|
2016-05-04 01:25:37 +00:00
|
|
|
button_reset->set_tooltip(TTR("Reset the lightmap octree baking process (start over)."));
|
2014-08-14 13:31:38 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
update_timeout = 0;
|
2014-05-14 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BakedLightEditor::~BakedLightEditor() {
|
|
|
|
|
|
|
|
memdelete(baker);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BakedLightEditorPlugin::edit(Object *p_object) {
|
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
baked_light_editor->edit(p_object->cast_to<BakedLightInstance>());
|
2014-05-14 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool BakedLightEditorPlugin::handles(Object *p_object) const {
|
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
return p_object->is_type("BakedLightInstance");
|
2014-05-14 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BakedLightEditorPlugin::make_visible(bool p_visible) {
|
|
|
|
|
|
|
|
if (p_visible) {
|
|
|
|
baked_light_editor->show();
|
2014-06-11 13:41:03 +00:00
|
|
|
baked_light_editor->bake_hbox->show();
|
2014-05-14 04:22:15 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
baked_light_editor->hide();
|
2014-06-11 13:41:03 +00:00
|
|
|
baked_light_editor->bake_hbox->hide();
|
2014-05-14 04:22:15 +00:00
|
|
|
baked_light_editor->edit(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BakedLightEditorPlugin::BakedLightEditorPlugin(EditorNode *p_node) {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
editor = p_node;
|
|
|
|
baked_light_editor = memnew(BakedLightEditor);
|
2014-05-14 04:22:15 +00:00
|
|
|
editor->get_viewport()->add_child(baked_light_editor);
|
2017-03-18 23:36:26 +00:00
|
|
|
add_control_to_container(CONTAINER_SPATIAL_EDITOR_MENU, baked_light_editor->bake_hbox);
|
2014-05-14 04:22:15 +00:00
|
|
|
baked_light_editor->hide();
|
2014-06-11 13:41:03 +00:00
|
|
|
baked_light_editor->bake_hbox->hide();
|
2014-05-14 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
BakedLightEditorPlugin::~BakedLightEditorPlugin() {
|
2014-05-14 04:22:15 +00:00
|
|
|
}
|