Merge pull request #12572 from RandomShaper/onion-skinning
Onion skinning
This commit is contained in:
commit
22415e5a31
33 changed files with 774 additions and 75 deletions
|
|
@ -490,7 +490,7 @@ bool AbstractPolygon2DEditor::forward_gui_input(const Ref<InputEvent> &p_event)
|
|||
return false;
|
||||
}
|
||||
|
||||
void AbstractPolygon2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
||||
void AbstractPolygon2DEditor::forward_draw_over_viewport(Control *p_overlay) {
|
||||
if (!_get_node())
|
||||
return;
|
||||
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@ protected:
|
|||
|
||||
public:
|
||||
bool forward_gui_input(const Ref<InputEvent> &p_event);
|
||||
void forward_draw_over_canvas(Control *p_canvas);
|
||||
void forward_draw_over_viewport(Control *p_overlay);
|
||||
|
||||
void edit(Node *p_polygon);
|
||||
AbstractPolygon2DEditor(EditorNode *p_editor, bool p_wip_destructive = true);
|
||||
|
|
@ -152,7 +152,7 @@ class AbstractPolygon2DEditorPlugin : public EditorPlugin {
|
|||
|
||||
public:
|
||||
virtual bool forward_canvas_gui_input(const Ref<InputEvent> &p_event) { return polygon_editor->forward_gui_input(p_event); }
|
||||
virtual void forward_draw_over_canvas(Control *p_canvas) { polygon_editor->forward_draw_over_canvas(p_canvas); }
|
||||
virtual void forward_draw_over_viewport(Control *p_overlay) { polygon_editor->forward_draw_over_viewport(p_overlay); }
|
||||
|
||||
bool has_main_screen() const { return false; }
|
||||
virtual String get_name() const { return klass; }
|
||||
|
|
|
|||
|
|
@ -36,6 +36,12 @@
|
|||
#include "os/keyboard.h"
|
||||
#include "project_settings.h"
|
||||
|
||||
// For onion skinning
|
||||
#include "editor/plugins/canvas_item_editor_plugin.h"
|
||||
#include "editor/plugins/spatial_editor_plugin.h"
|
||||
#include "scene/main/viewport.h"
|
||||
#include "servers/visual_server.h"
|
||||
|
||||
void AnimationPlayerEditor::_node_removed(Node *p_node) {
|
||||
|
||||
if (player && player == p_node) {
|
||||
|
|
@ -98,6 +104,8 @@ void AnimationPlayerEditor::_notification(int p_what) {
|
|||
|
||||
tool_anim->get_popup()->connect("id_pressed", this, "_animation_tool_menu");
|
||||
|
||||
onion_skinning->get_popup()->connect("id_pressed", this, "_onion_skinning_menu");
|
||||
|
||||
blend_editor.next->connect("item_selected", this, "_blend_editor_next_changed");
|
||||
|
||||
get_tree()->connect("node_removed", this, "_node_removed");
|
||||
|
|
@ -132,6 +140,7 @@ void AnimationPlayerEditor::_notification(int p_what) {
|
|||
resource_edit_anim->set_icon(get_icon("EditResource", "EditorIcons"));
|
||||
pin->set_icon(get_icon("Pin", "EditorIcons"));
|
||||
tool_anim->set_icon(get_icon("Tools", "EditorIcons"));
|
||||
onion_skinning->set_icon(get_icon("Onion", "EditorIcons"));
|
||||
|
||||
} break;
|
||||
}
|
||||
|
|
@ -809,6 +818,7 @@ void AnimationPlayerEditor::_update_player() {
|
|||
resource_edit_anim->set_disabled(animlist.size() == 0);
|
||||
save_anim->set_disabled(animlist.size() == 0);
|
||||
tool_anim->set_disabled(player == NULL);
|
||||
onion_skinning->set_disabled(player == NULL);
|
||||
|
||||
int active_idx = -1;
|
||||
for (List<StringName>::Element *E = animlist.front(); E; E = E->next()) {
|
||||
|
|
@ -855,6 +865,9 @@ void AnimationPlayerEditor::_update_player() {
|
|||
|
||||
void AnimationPlayerEditor::edit(AnimationPlayer *p_player) {
|
||||
|
||||
if (onion.enabled)
|
||||
_start_onion_skinning();
|
||||
|
||||
if (player && pin->is_pressed())
|
||||
return; //ignore, pinned
|
||||
player = p_player;
|
||||
|
|
@ -869,6 +882,55 @@ void AnimationPlayerEditor::edit(AnimationPlayer *p_player) {
|
|||
}
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::forward_force_draw_over_viewport(Control *p_overlay) {
|
||||
|
||||
if (!onion.can_overlay)
|
||||
return;
|
||||
|
||||
// Can happen on viewport resize, at least
|
||||
if (!_are_onion_layers_valid())
|
||||
return;
|
||||
|
||||
RID ci = p_overlay->get_canvas_item();
|
||||
Rect2 src_rect = p_overlay->get_global_rect();
|
||||
// Re-flip since captures are already flipped
|
||||
src_rect.position.y = onion.capture_size.y - (src_rect.position.y + src_rect.size.y);
|
||||
src_rect.size.y *= -1;
|
||||
|
||||
Rect2 dst_rect = Rect2(Point2(), p_overlay->get_size());
|
||||
|
||||
float alpha_step = 1.0 / (onion.steps + 1);
|
||||
|
||||
int cidx = 0;
|
||||
if (onion.past) {
|
||||
float alpha = 0;
|
||||
do {
|
||||
alpha += alpha_step;
|
||||
|
||||
if (onion.captures_valid[cidx]) {
|
||||
VS::get_singleton()->canvas_item_add_texture_rect_region(
|
||||
ci, dst_rect, VS::get_singleton()->viewport_get_texture(onion.captures[cidx]), src_rect, Color(1, 1, 1, alpha));
|
||||
}
|
||||
|
||||
cidx++;
|
||||
} while (cidx < onion.steps);
|
||||
}
|
||||
if (onion.future) {
|
||||
float alpha = 1;
|
||||
int base_cidx = cidx;
|
||||
do {
|
||||
alpha -= alpha_step;
|
||||
|
||||
if (onion.captures_valid[cidx]) {
|
||||
VS::get_singleton()->canvas_item_add_texture_rect_region(
|
||||
ci, dst_rect, VS::get_singleton()->viewport_get_texture(onion.captures[cidx]), src_rect, Color(1, 1, 1, alpha));
|
||||
}
|
||||
|
||||
cidx++;
|
||||
} while (cidx < base_cidx + onion.steps); // In case there's the present capture at the end, skip it
|
||||
}
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_animation_duplicate() {
|
||||
|
||||
if (!animation->get_item_count())
|
||||
|
|
@ -1100,6 +1162,70 @@ void AnimationPlayerEditor::_animation_save_menu(int p_option) {
|
|||
}
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_onion_skinning_menu(int p_option) {
|
||||
|
||||
PopupMenu *menu = onion_skinning->get_popup();
|
||||
int idx = menu->get_item_index(p_option);
|
||||
|
||||
switch (p_option) {
|
||||
|
||||
case ONION_SKINNING_ENABLE: {
|
||||
|
||||
onion.enabled = !onion.enabled;
|
||||
menu->set_item_checked(idx, onion.enabled);
|
||||
|
||||
if (onion.enabled)
|
||||
_start_onion_skinning();
|
||||
else
|
||||
_stop_onion_skinning();
|
||||
|
||||
} break;
|
||||
|
||||
case ONION_SKINNING_PAST: {
|
||||
|
||||
// Ensure at least one of past/future is checjed
|
||||
onion.past = onion.future ? !onion.past : true;
|
||||
menu->set_item_checked(idx, onion.past);
|
||||
} break;
|
||||
|
||||
case ONION_SKINNING_FUTURE: {
|
||||
|
||||
// Ensure at least one of past/future is checjed
|
||||
onion.future = onion.past ? !onion.future : true;
|
||||
menu->set_item_checked(idx, onion.future);
|
||||
} break;
|
||||
|
||||
case ONION_SKINNING_1_STEP: // Fall-through
|
||||
case ONION_SKINNING_2_STEPS:
|
||||
case ONION_SKINNING_3_STEPS: {
|
||||
|
||||
onion.steps = (p_option - ONION_SKINNING_1_STEP) + 1;
|
||||
int one_frame_idx = menu->get_item_index(ONION_SKINNING_1_STEP);
|
||||
for (int i = 0; i <= ONION_SKINNING_LAST_STEPS_OPTION - ONION_SKINNING_1_STEP; i++) {
|
||||
menu->set_item_checked(one_frame_idx + i, onion.steps == i + 1);
|
||||
}
|
||||
} break;
|
||||
|
||||
case ONION_SKINNING_DIFFERENCES_ONLY: {
|
||||
|
||||
onion.differences_only = !onion.differences_only;
|
||||
menu->set_item_checked(idx, onion.differences_only);
|
||||
} break;
|
||||
|
||||
case ONION_SKINNING_FORCE_WHITE_MODULATE: {
|
||||
|
||||
onion.force_white_modulate = !onion.force_white_modulate;
|
||||
menu->set_item_checked(idx, onion.force_white_modulate);
|
||||
} break;
|
||||
|
||||
case ONION_SKINNING_INCLUDE_GIZMOS: {
|
||||
|
||||
onion.include_gizmos = !onion.include_gizmos;
|
||||
menu->set_item_checked(idx, onion.include_gizmos);
|
||||
} break;
|
||||
}
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_unhandled_key_input(const Ref<InputEvent> &p_ev) {
|
||||
|
||||
Ref<InputEventKey> k = p_ev;
|
||||
|
|
@ -1126,6 +1252,237 @@ void AnimationPlayerEditor::_unhandled_key_input(const Ref<InputEvent> &p_ev) {
|
|||
}
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_editor_visibility_changed() {
|
||||
|
||||
if (is_visible()) {
|
||||
_start_onion_skinning();
|
||||
}
|
||||
}
|
||||
|
||||
bool AnimationPlayerEditor::_are_onion_layers_valid() {
|
||||
|
||||
ERR_FAIL_COND_V(!onion.past && !onion.future, false);
|
||||
|
||||
Point2 capture_size = get_tree()->get_root()->get_size();
|
||||
return onion.captures.size() == onion.get_needed_capture_count() && onion.capture_size == capture_size;
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_allocate_onion_layers() {
|
||||
|
||||
_free_onion_layers();
|
||||
|
||||
int captures = onion.get_needed_capture_count();
|
||||
Point2 capture_size = get_tree()->get_root()->get_size();
|
||||
|
||||
onion.captures.resize(captures);
|
||||
onion.captures_valid.resize(captures);
|
||||
|
||||
for (int i = 0; i < captures; i++) {
|
||||
bool is_present = onion.differences_only && i == captures - 1;
|
||||
|
||||
// Each capture is a viewport with a canvas item attached that renders a full-size rect with the contents of the main viewport
|
||||
onion.captures[i] = VS::get_singleton()->viewport_create();
|
||||
VS::get_singleton()->viewport_set_usage(onion.captures[i], VS::VIEWPORT_USAGE_2D);
|
||||
VS::get_singleton()->viewport_set_size(onion.captures[i], capture_size.width, capture_size.height);
|
||||
VS::get_singleton()->viewport_set_update_mode(onion.captures[i], VS::VIEWPORT_UPDATE_ALWAYS);
|
||||
VS::get_singleton()->viewport_set_transparent_background(onion.captures[i], !is_present);
|
||||
VS::get_singleton()->viewport_set_vflip(onion.captures[i], true);
|
||||
VS::get_singleton()->viewport_attach_canvas(onion.captures[i], onion.capture.canvas);
|
||||
}
|
||||
|
||||
// Reset the capture canvas item to the current root viewport texture (defensive)
|
||||
VS::get_singleton()->canvas_item_clear(onion.capture.canvas_item);
|
||||
VS::get_singleton()->canvas_item_add_texture_rect(onion.capture.canvas_item, Rect2(Point2(), capture_size), get_tree()->get_root()->get_texture()->get_rid());
|
||||
|
||||
onion.capture_size = capture_size;
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_free_onion_layers() {
|
||||
|
||||
for (int i = 0; i < onion.captures.size(); i++) {
|
||||
if (onion.captures[i].is_valid()) {
|
||||
VS::get_singleton()->free(onion.captures[i]);
|
||||
}
|
||||
}
|
||||
onion.captures.clear();
|
||||
onion.captures_valid.clear();
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_prepare_onion_layers_1() {
|
||||
|
||||
// This would be called per viewport and we want to act once only
|
||||
int64_t frame = get_tree()->get_frame();
|
||||
if (frame == onion.last_frame)
|
||||
return;
|
||||
|
||||
if (!onion.enabled || !is_processing() || !is_visible() || !get_player()) {
|
||||
_stop_onion_skinning();
|
||||
return;
|
||||
}
|
||||
|
||||
onion.last_frame = frame;
|
||||
|
||||
// Refresh viewports with no onion layers overlaid
|
||||
onion.can_overlay = false;
|
||||
plugin->update_overlays();
|
||||
|
||||
if (player->is_playing())
|
||||
return;
|
||||
|
||||
// And go to next step afterwards
|
||||
call_deferred("_prepare_onion_layers_2");
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_prepare_onion_layers_2() {
|
||||
|
||||
Ref<Animation> anim = player->get_animation(player->get_current_animation());
|
||||
if (!anim.is_valid())
|
||||
return;
|
||||
|
||||
if (!_are_onion_layers_valid())
|
||||
_allocate_onion_layers();
|
||||
|
||||
// Hide superfluous elements that would make the overlay unnecessary cluttered
|
||||
Dictionary canvas_edit_state;
|
||||
Dictionary spatial_edit_state;
|
||||
if (SpatialEditor::get_singleton()->is_visible()) {
|
||||
// 3D
|
||||
spatial_edit_state = SpatialEditor::get_singleton()->get_state();
|
||||
Dictionary new_state = spatial_edit_state.copy();
|
||||
new_state["show_grid"] = false;
|
||||
new_state["show_origin"] = false;
|
||||
Array orig_vp = spatial_edit_state["viewports"];
|
||||
Array vp;
|
||||
vp.resize(4);
|
||||
for (int i = 0; i < vp.size(); i++) {
|
||||
Dictionary d = ((Dictionary)orig_vp[i]).copy();
|
||||
d["use_environment"] = false;
|
||||
d["doppler"] = false;
|
||||
d["gizmos"] = onion.include_gizmos ? d["gizmos"] : Variant(false);
|
||||
d["information"] = false;
|
||||
vp[i] = d;
|
||||
}
|
||||
new_state["viewports"] = vp;
|
||||
// TODO: Save/restore only affected entries
|
||||
SpatialEditor::get_singleton()->set_state(new_state);
|
||||
} else { // CanvasItemEditor
|
||||
// 2D
|
||||
canvas_edit_state = CanvasItemEditor::get_singleton()->get_state();
|
||||
Dictionary new_state = canvas_edit_state.copy();
|
||||
new_state["show_grid"] = false;
|
||||
new_state["show_rulers"] = false;
|
||||
new_state["show_guides"] = false;
|
||||
new_state["show_helpers"] = false;
|
||||
// TODO: Save/restore only affected entries
|
||||
CanvasItemEditor::get_singleton()->set_state(new_state);
|
||||
}
|
||||
|
||||
// Tweak the root viewport to ensure it's rendered before our target
|
||||
RID root_vp = get_tree()->get_root()->get_viewport_rid();
|
||||
Rect2 root_vp_screen_rect = get_tree()->get_root()->get_attach_to_screen_rect();
|
||||
VS::get_singleton()->viewport_attach_to_screen(root_vp, Rect2());
|
||||
VS::get_singleton()->viewport_set_update_mode(root_vp, VS::VIEWPORT_UPDATE_ALWAYS);
|
||||
|
||||
RID present_rid;
|
||||
if (onion.differences_only) {
|
||||
// Capture present scene as it is
|
||||
VS::get_singleton()->canvas_item_set_material(onion.capture.canvas_item, RID());
|
||||
present_rid = onion.captures[onion.captures.size() - 1];
|
||||
VS::get_singleton()->viewport_set_active(present_rid, true);
|
||||
VS::get_singleton()->viewport_set_parent_viewport(root_vp, present_rid);
|
||||
VS::get_singleton()->draw(false);
|
||||
VS::get_singleton()->viewport_set_active(present_rid, false);
|
||||
}
|
||||
|
||||
// Backup current animation state
|
||||
AnimatedValuesBackup values_backup = player->backup_animated_values();
|
||||
float cpos = player->get_current_animation_position();
|
||||
|
||||
// Render every past/future step with the capture shader
|
||||
|
||||
VS::get_singleton()->canvas_item_set_material(onion.capture.canvas_item, onion.capture.material->get_rid());
|
||||
onion.capture.material->set_shader_param("bkg_color", GLOBAL_GET("rendering/environment/default_clear_color"));
|
||||
onion.capture.material->set_shader_param("differences_only", onion.differences_only);
|
||||
onion.capture.material->set_shader_param("present", onion.differences_only ? VS::get_singleton()->viewport_get_texture(present_rid) : RID());
|
||||
|
||||
int step_off_a = onion.past ? -onion.steps : 0;
|
||||
int step_off_b = onion.future ? onion.steps : 0;
|
||||
int cidx = 0;
|
||||
onion.capture.material->set_shader_param("dir_color", onion.force_white_modulate ? Color(1, 1, 1) : Color(EDITOR_GET("editors/animation/onion_layers_past_color")));
|
||||
for (int step_off = step_off_a; step_off <= step_off_b; step_off++) {
|
||||
|
||||
if (step_off == 0) {
|
||||
// Skip present step and switch to the color of future
|
||||
if (!onion.force_white_modulate)
|
||||
onion.capture.material->set_shader_param("dir_color", EDITOR_GET("editors/animation/onion_layers_future_color"));
|
||||
continue;
|
||||
}
|
||||
|
||||
float pos = cpos + step_off * anim->get_step();
|
||||
|
||||
bool valid = anim->has_loop() || pos >= 0 && pos <= anim->get_length();
|
||||
onion.captures_valid[cidx] = valid;
|
||||
if (valid) {
|
||||
player->seek(pos, true);
|
||||
get_tree()->flush_transform_notifications(); // Needed for transforms of Spatials
|
||||
values_backup.update_skeletons(); // Needed for Skeletons
|
||||
|
||||
VS::get_singleton()->viewport_set_active(onion.captures[cidx], true);
|
||||
VS::get_singleton()->viewport_set_parent_viewport(root_vp, onion.captures[cidx]);
|
||||
VS::get_singleton()->draw(false);
|
||||
VS::get_singleton()->viewport_set_active(onion.captures[cidx], false);
|
||||
}
|
||||
|
||||
cidx++;
|
||||
}
|
||||
|
||||
// Restore root viewport
|
||||
VS::get_singleton()->viewport_set_parent_viewport(root_vp, RID());
|
||||
VS::get_singleton()->viewport_attach_to_screen(root_vp, root_vp_screen_rect);
|
||||
VS::get_singleton()->viewport_set_update_mode(root_vp, VS::VIEWPORT_UPDATE_WHEN_VISIBLE);
|
||||
|
||||
// Restore animation state
|
||||
// (Seeking with update=true wouldn't do the trick because the current value of the properties
|
||||
// may not match their value for the current point in the animation)
|
||||
player->seek(cpos, false);
|
||||
player->restore_animated_values(values_backup);
|
||||
|
||||
// Restor state of main editors
|
||||
if (SpatialEditor::get_singleton()->is_visible()) {
|
||||
// 3D
|
||||
SpatialEditor::get_singleton()->set_state(spatial_edit_state);
|
||||
} else { // CanvasItemEditor
|
||||
// 2D
|
||||
CanvasItemEditor::get_singleton()->set_state(canvas_edit_state);
|
||||
}
|
||||
|
||||
// Update viewports with skin layers overlaid for the actual engine loop render
|
||||
onion.can_overlay = true;
|
||||
plugin->update_overlays();
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_start_onion_skinning() {
|
||||
|
||||
// FIXME: Using "idle_frame" makes onion layers update one frame behing the current
|
||||
if (!get_tree()->is_connected("idle_frame", this, "call_deferred")) {
|
||||
get_tree()->connect("idle_frame", this, "call_deferred", varray("_prepare_onion_layers_1"));
|
||||
}
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_stop_onion_skinning() {
|
||||
|
||||
if (get_tree()->is_connected("idle_frame", this, "call_deferred")) {
|
||||
|
||||
get_tree()->disconnect("idle_frame", this, "call_deferred");
|
||||
|
||||
_free_onion_layers();
|
||||
|
||||
// Clean up the overlay
|
||||
onion.can_overlay = false;
|
||||
plugin->update_overlays();
|
||||
}
|
||||
}
|
||||
|
||||
void AnimationPlayerEditor::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("_gui_input"), &AnimationPlayerEditor::_gui_input);
|
||||
|
|
@ -1165,6 +1522,10 @@ void AnimationPlayerEditor::_bind_methods() {
|
|||
ClassDB::bind_method(D_METHOD("_unhandled_key_input"), &AnimationPlayerEditor::_unhandled_key_input);
|
||||
ClassDB::bind_method(D_METHOD("_animation_tool_menu"), &AnimationPlayerEditor::_animation_tool_menu);
|
||||
ClassDB::bind_method(D_METHOD("_animation_save_menu"), &AnimationPlayerEditor::_animation_save_menu);
|
||||
ClassDB::bind_method(D_METHOD("_onion_skinning_menu"), &AnimationPlayerEditor::_onion_skinning_menu);
|
||||
ClassDB::bind_method(D_METHOD("_editor_visibility_changed"), &AnimationPlayerEditor::_editor_visibility_changed);
|
||||
ClassDB::bind_method(D_METHOD("_prepare_onion_layers_1"), &AnimationPlayerEditor::_prepare_onion_layers_1);
|
||||
ClassDB::bind_method(D_METHOD("_prepare_onion_layers_2"), &AnimationPlayerEditor::_prepare_onion_layers_2);
|
||||
}
|
||||
|
||||
AnimationPlayerEditor *AnimationPlayerEditor::singleton = NULL;
|
||||
|
|
@ -1173,8 +1534,10 @@ AnimationPlayer *AnimationPlayerEditor::get_player() const {
|
|||
|
||||
return player;
|
||||
}
|
||||
AnimationPlayerEditor::AnimationPlayerEditor(EditorNode *p_editor) {
|
||||
|
||||
AnimationPlayerEditor::AnimationPlayerEditor(EditorNode *p_editor, AnimationPlayerEditorPlugin *p_plugin) {
|
||||
editor = p_editor;
|
||||
plugin = p_plugin;
|
||||
singleton = this;
|
||||
|
||||
updating = false;
|
||||
|
|
@ -1301,6 +1664,29 @@ AnimationPlayerEditor::AnimationPlayerEditor(EditorNode *p_editor) {
|
|||
//tool_anim->get_popup()->add_item("Edit Anim Resource",TOOL_PASTE_ANIM);
|
||||
hb->add_child(tool_anim);
|
||||
|
||||
onion_skinning = memnew(MenuButton);
|
||||
//onion_skinning->set_flat(false);
|
||||
onion_skinning->set_tooltip(TTR("Onion Skinning"));
|
||||
onion_skinning->get_popup()->add_check_shortcut(ED_SHORTCUT("animation_player_editor/onion_skinning", TTR("Enable Onion Skinning")), ONION_SKINNING_ENABLE);
|
||||
onion_skinning->get_popup()->add_separator();
|
||||
onion_skinning->get_popup()->add_item(TTR("Directions"), -1);
|
||||
onion_skinning->get_popup()->set_item_disabled(onion_skinning->get_popup()->get_item_count() - 1, true);
|
||||
onion_skinning->get_popup()->add_check_item(TTR("Past"), ONION_SKINNING_PAST);
|
||||
onion_skinning->get_popup()->set_item_checked(onion_skinning->get_popup()->get_item_count() - 1, true);
|
||||
onion_skinning->get_popup()->add_check_item(TTR("Future"), ONION_SKINNING_FUTURE);
|
||||
onion_skinning->get_popup()->add_separator();
|
||||
onion_skinning->get_popup()->add_item(TTR("Depth"), -1);
|
||||
onion_skinning->get_popup()->set_item_disabled(onion_skinning->get_popup()->get_item_count() - 1, true);
|
||||
onion_skinning->get_popup()->add_check_item(TTR("1 step"), ONION_SKINNING_1_STEP);
|
||||
onion_skinning->get_popup()->set_item_checked(onion_skinning->get_popup()->get_item_count() - 1, true);
|
||||
onion_skinning->get_popup()->add_check_item(TTR("2 steps"), ONION_SKINNING_2_STEPS);
|
||||
onion_skinning->get_popup()->add_check_item(TTR("3 steps"), ONION_SKINNING_3_STEPS);
|
||||
onion_skinning->get_popup()->add_separator();
|
||||
onion_skinning->get_popup()->add_check_item(TTR("Differences Only"), ONION_SKINNING_DIFFERENCES_ONLY);
|
||||
onion_skinning->get_popup()->add_check_item(TTR("Force White Modulate"), ONION_SKINNING_FORCE_WHITE_MODULATE);
|
||||
onion_skinning->get_popup()->add_check_item(TTR("Include Gizmos (3D)"), ONION_SKINNING_INCLUDE_GIZMOS);
|
||||
hb->add_child(onion_skinning);
|
||||
|
||||
pin = memnew(ToolButton);
|
||||
pin->set_toggle_mode(true);
|
||||
hb->add_child(pin);
|
||||
|
|
@ -1387,6 +1773,68 @@ AnimationPlayerEditor::AnimationPlayerEditor(EditorNode *p_editor) {
|
|||
key_editor->connect("animation_step_changed", this, "_animation_key_editor_anim_step_changed");
|
||||
|
||||
_update_player();
|
||||
|
||||
// Onion skinning
|
||||
|
||||
key_editor->connect("visibility_changed", this, "_editor_visibility_changed");
|
||||
|
||||
onion.enabled = false;
|
||||
onion.past = true;
|
||||
onion.future = false;
|
||||
onion.steps = 1;
|
||||
onion.differences_only = false;
|
||||
onion.force_white_modulate = false;
|
||||
onion.include_gizmos = false;
|
||||
|
||||
onion.last_frame = 0;
|
||||
onion.can_overlay = false;
|
||||
onion.capture_size = Size2();
|
||||
onion.capture.canvas = VS::get_singleton()->canvas_create();
|
||||
onion.capture.canvas_item = VS::get_singleton()->canvas_item_create();
|
||||
VS::get_singleton()->canvas_item_set_parent(onion.capture.canvas_item, onion.capture.canvas);
|
||||
|
||||
onion.capture.material = Ref<ShaderMaterial>(memnew(ShaderMaterial));
|
||||
|
||||
onion.capture.shader = Ref<Shader>(memnew(Shader));
|
||||
onion.capture.shader->set_code(" \
|
||||
shader_type canvas_item; \
|
||||
\
|
||||
uniform vec4 bkg_color; \
|
||||
uniform vec4 dir_color; \
|
||||
uniform bool differences_only; \
|
||||
uniform sampler2D present; \
|
||||
\
|
||||
float zero_if_equal(vec4 a, vec4 b) { \
|
||||
return smoothstep(0.0, 0.005, length(a.rgb - b.rgb) / sqrt(3.0)); \
|
||||
} \
|
||||
\
|
||||
void fragment() { \
|
||||
vec4 capture_samp = texture(TEXTURE, UV); \
|
||||
vec4 present_samp = texture(present, UV); \
|
||||
float bkg_mask = zero_if_equal(capture_samp, bkg_color); \
|
||||
float diff_mask = 1.0 - zero_if_equal(present_samp, bkg_color); \
|
||||
diff_mask = min(1.0, diff_mask + float(!differences_only)); \
|
||||
COLOR = vec4(capture_samp.rgb * dir_color.rgb, bkg_mask * diff_mask); \
|
||||
} \
|
||||
");
|
||||
VS::get_singleton()->material_set_shader(onion.capture.material->get_rid(), onion.capture.shader->get_rid());
|
||||
}
|
||||
|
||||
AnimationPlayerEditor::~AnimationPlayerEditor() {
|
||||
|
||||
_free_onion_layers();
|
||||
VS::get_singleton()->free(onion.capture.canvas);
|
||||
VS::get_singleton()->free(onion.capture.canvas_item);
|
||||
}
|
||||
|
||||
void AnimationPlayerEditorPlugin::_notification(int p_what) {
|
||||
|
||||
switch (p_what) {
|
||||
case NOTIFICATION_ENTER_TREE: {
|
||||
|
||||
set_force_draw_over_forwarding_enabled();
|
||||
} break;
|
||||
}
|
||||
}
|
||||
|
||||
void AnimationPlayerEditorPlugin::edit(Object *p_object) {
|
||||
|
|
@ -1420,7 +1868,7 @@ void AnimationPlayerEditorPlugin::make_visible(bool p_visible) {
|
|||
AnimationPlayerEditorPlugin::AnimationPlayerEditorPlugin(EditorNode *p_node) {
|
||||
|
||||
editor = p_node;
|
||||
anim_editor = memnew(AnimationPlayerEditor(editor));
|
||||
anim_editor = memnew(AnimationPlayerEditor(editor, this));
|
||||
anim_editor->set_undo_redo(editor->get_undo_redo());
|
||||
|
||||
editor->add_bottom_panel_item(TTR("Animation"), anim_editor);
|
||||
|
|
|
|||
|
|
@ -42,11 +42,13 @@
|
|||
@author Juan Linietsky <reduzio@gmail.com>
|
||||
*/
|
||||
class AnimationKeyEditor;
|
||||
class AnimationPlayerEditorPlugin;
|
||||
class AnimationPlayerEditor : public VBoxContainer {
|
||||
|
||||
GDCLASS(AnimationPlayerEditor, VBoxContainer);
|
||||
|
||||
EditorNode *editor;
|
||||
AnimationPlayerEditorPlugin *plugin;
|
||||
AnimationPlayer *player;
|
||||
|
||||
enum {
|
||||
|
|
@ -55,6 +57,19 @@ class AnimationPlayerEditor : public VBoxContainer {
|
|||
TOOL_EDIT_RESOURCE
|
||||
};
|
||||
|
||||
enum {
|
||||
ONION_SKINNING_ENABLE,
|
||||
ONION_SKINNING_PAST,
|
||||
ONION_SKINNING_FUTURE,
|
||||
ONION_SKINNING_1_STEP,
|
||||
ONION_SKINNING_2_STEPS,
|
||||
ONION_SKINNING_3_STEPS,
|
||||
ONION_SKINNING_LAST_STEPS_OPTION = ONION_SKINNING_3_STEPS,
|
||||
ONION_SKINNING_DIFFERENCES_ONLY,
|
||||
ONION_SKINNING_FORCE_WHITE_MODULATE,
|
||||
ONION_SKINNING_INCLUDE_GIZMOS,
|
||||
};
|
||||
|
||||
enum {
|
||||
ANIM_SAVE,
|
||||
ANIM_SAVE_AS
|
||||
|
|
@ -84,6 +99,7 @@ class AnimationPlayerEditor : public VBoxContainer {
|
|||
Button *blend_anim;
|
||||
Button *remove_anim;
|
||||
MenuButton *tool_anim;
|
||||
MenuButton *onion_skinning;
|
||||
ToolButton *pin;
|
||||
SpinBox *frame;
|
||||
LineEdit *scale;
|
||||
|
|
@ -115,6 +131,36 @@ class AnimationPlayerEditor : public VBoxContainer {
|
|||
|
||||
AnimationKeyEditor *key_editor;
|
||||
|
||||
// Onion skinning
|
||||
struct {
|
||||
// Settings
|
||||
bool enabled;
|
||||
bool past;
|
||||
bool future;
|
||||
int steps;
|
||||
bool differences_only;
|
||||
bool force_white_modulate;
|
||||
bool include_gizmos;
|
||||
|
||||
int get_needed_capture_count() const {
|
||||
// 'Differences only' needs a capture of the present
|
||||
return (past && future ? 2 * steps : steps) + (differences_only ? 1 : 0);
|
||||
}
|
||||
|
||||
// Rendering
|
||||
int64_t last_frame;
|
||||
int can_overlay;
|
||||
Size2 capture_size;
|
||||
Vector<RID> captures;
|
||||
Vector<bool> captures_valid;
|
||||
struct {
|
||||
RID canvas;
|
||||
RID canvas_item;
|
||||
Ref<ShaderMaterial> material;
|
||||
Ref<Shader> shader;
|
||||
} capture;
|
||||
} onion;
|
||||
|
||||
void _select_anim_by_name(const String &p_anim);
|
||||
void _play_pressed();
|
||||
void _play_from_pressed();
|
||||
|
|
@ -161,8 +207,19 @@ class AnimationPlayerEditor : public VBoxContainer {
|
|||
void _unhandled_key_input(const Ref<InputEvent> &p_ev);
|
||||
void _animation_tool_menu(int p_option);
|
||||
void _animation_save_menu(int p_option);
|
||||
void _onion_skinning_menu(int p_option);
|
||||
|
||||
void _editor_visibility_changed();
|
||||
bool _are_onion_layers_valid();
|
||||
void _allocate_onion_layers();
|
||||
void _free_onion_layers();
|
||||
void _prepare_onion_layers_1();
|
||||
void _prepare_onion_layers_2();
|
||||
void _start_onion_skinning();
|
||||
void _stop_onion_skinning();
|
||||
|
||||
AnimationPlayerEditor();
|
||||
~AnimationPlayerEditor();
|
||||
|
||||
protected:
|
||||
void _notification(int p_what);
|
||||
|
|
@ -182,7 +239,9 @@ public:
|
|||
|
||||
void set_undo_redo(UndoRedo *p_undo_redo) { undo_redo = p_undo_redo; }
|
||||
void edit(AnimationPlayer *p_player);
|
||||
AnimationPlayerEditor(EditorNode *p_editor);
|
||||
void forward_force_draw_over_viewport(Control *p_overlay);
|
||||
|
||||
AnimationPlayerEditor(EditorNode *p_editor, AnimationPlayerEditorPlugin *p_plugin);
|
||||
};
|
||||
|
||||
class AnimationPlayerEditorPlugin : public EditorPlugin {
|
||||
|
|
@ -192,6 +251,9 @@ class AnimationPlayerEditorPlugin : public EditorPlugin {
|
|||
AnimationPlayerEditor *anim_editor;
|
||||
EditorNode *editor;
|
||||
|
||||
protected:
|
||||
void _notification(int p_what);
|
||||
|
||||
public:
|
||||
virtual Dictionary get_state() const { return anim_editor->get_state(); }
|
||||
virtual void set_state(const Dictionary &p_state) { anim_editor->set_state(p_state); }
|
||||
|
|
@ -202,6 +264,8 @@ public:
|
|||
virtual bool handles(Object *p_object) const;
|
||||
virtual void make_visible(bool p_visible);
|
||||
|
||||
virtual void forward_force_draw_over_viewport(Control *p_overlay) { anim_editor->forward_force_draw_over_viewport(p_overlay); }
|
||||
|
||||
AnimationPlayerEditorPlugin(EditorNode *p_node);
|
||||
~AnimationPlayerEditorPlugin();
|
||||
};
|
||||
|
|
|
|||
|
|
@ -2955,8 +2955,13 @@ void CanvasItemEditor::_draw_viewport() {
|
|||
|
||||
EditorPluginList *over_plugin_list = editor->get_editor_plugins_over();
|
||||
if (!over_plugin_list->empty()) {
|
||||
over_plugin_list->forward_draw_over_canvas(viewport);
|
||||
over_plugin_list->forward_draw_over_viewport(viewport);
|
||||
}
|
||||
EditorPluginList *force_over_plugin_list = editor->get_editor_plugins_force_over();
|
||||
if (!force_over_plugin_list->empty()) {
|
||||
force_over_plugin_list->forward_force_draw_over_viewport(viewport);
|
||||
}
|
||||
|
||||
_draw_bones();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@ void CollisionShape2DEditor::_get_current_shape_type() {
|
|||
canvas_item_editor->get_viewport_control()->update();
|
||||
}
|
||||
|
||||
void CollisionShape2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
||||
void CollisionShape2DEditor::forward_draw_over_viewport(Control *p_overlay) {
|
||||
|
||||
if (!node) {
|
||||
return;
|
||||
|
|
@ -448,8 +448,8 @@ void CollisionShape2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
|||
handles[0] = Point2(radius, -height);
|
||||
handles[1] = Point2(0, -(height + radius));
|
||||
|
||||
p_canvas->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_canvas->draw_texture(h, gt.xform(handles[1]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[1]) - size);
|
||||
|
||||
} break;
|
||||
|
||||
|
|
@ -459,7 +459,7 @@ void CollisionShape2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
|||
handles.resize(1);
|
||||
handles[0] = Point2(shape->get_radius(), 0);
|
||||
|
||||
p_canvas->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
|
||||
} break;
|
||||
|
||||
|
|
@ -478,8 +478,8 @@ void CollisionShape2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
|||
handles[0] = shape->get_normal() * shape->get_d();
|
||||
handles[1] = shape->get_normal() * (shape->get_d() + 30.0);
|
||||
|
||||
p_canvas->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_canvas->draw_texture(h, gt.xform(handles[1]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[1]) - size);
|
||||
|
||||
} break;
|
||||
|
||||
|
|
@ -489,7 +489,7 @@ void CollisionShape2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
|||
handles.resize(1);
|
||||
handles[0] = Point2(0, shape->get_length());
|
||||
|
||||
p_canvas->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
|
||||
} break;
|
||||
|
||||
|
|
@ -501,8 +501,8 @@ void CollisionShape2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
|||
handles[0] = Point2(ext.x, 0);
|
||||
handles[1] = Point2(0, -ext.y);
|
||||
|
||||
p_canvas->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_canvas->draw_texture(h, gt.xform(handles[1]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[1]) - size);
|
||||
|
||||
} break;
|
||||
|
||||
|
|
@ -513,8 +513,8 @@ void CollisionShape2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
|||
handles[0] = shape->get_a();
|
||||
handles[1] = shape->get_b();
|
||||
|
||||
p_canvas->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_canvas->draw_texture(h, gt.xform(handles[1]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[0]) - size);
|
||||
p_overlay->draw_texture(h, gt.xform(handles[1]) - size);
|
||||
|
||||
} break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ protected:
|
|||
|
||||
public:
|
||||
bool forward_canvas_gui_input(const Ref<InputEvent> &p_event);
|
||||
void forward_draw_over_canvas(Control *p_canvas);
|
||||
void forward_draw_over_viewport(Control *p_overlay);
|
||||
void edit(Node *p_node);
|
||||
|
||||
CollisionShape2DEditor(EditorNode *p_editor);
|
||||
|
|
@ -88,7 +88,7 @@ class CollisionShape2DEditorPlugin : public EditorPlugin {
|
|||
|
||||
public:
|
||||
virtual bool forward_canvas_gui_input(const Ref<InputEvent> &p_event) { return collision_shape_2d_editor->forward_canvas_gui_input(p_event); }
|
||||
virtual void forward_draw_over_canvas(Control *p_canvas) { return collision_shape_2d_editor->forward_draw_over_canvas(p_canvas); }
|
||||
virtual void forward_draw_over_viewport(Control *p_overlay) { return collision_shape_2d_editor->forward_draw_over_viewport(p_overlay); }
|
||||
|
||||
virtual String get_name() const { return "CollisionShape2D"; }
|
||||
bool has_main_screen() const { return false; }
|
||||
|
|
|
|||
|
|
@ -318,7 +318,7 @@ bool LightOccluder2DEditor::forward_gui_input(const Ref<InputEvent> &p_event) {
|
|||
return false;
|
||||
}
|
||||
|
||||
void LightOccluder2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
||||
void LightOccluder2DEditor::forward_draw_over_viewport(Control *p_overlay) {
|
||||
|
||||
if (!node || !node->get_occluder_polygon().is_valid())
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ protected:
|
|||
|
||||
public:
|
||||
Vector2 snap_point(const Vector2 &p_point) const;
|
||||
void forward_draw_over_canvas(Control *p_canvas);
|
||||
void forward_draw_over_viewport(Control *p_overlay);
|
||||
bool forward_gui_input(const Ref<InputEvent> &p_event);
|
||||
void edit(Node *p_collision_polygon);
|
||||
LightOccluder2DEditor(EditorNode *p_editor);
|
||||
|
|
@ -97,7 +97,7 @@ class LightOccluder2DEditorPlugin : public EditorPlugin {
|
|||
|
||||
public:
|
||||
virtual bool forward_canvas_gui_input(const Ref<InputEvent> &p_event) { return light_occluder_editor->forward_gui_input(p_event); }
|
||||
virtual void forward_draw_over_canvas(Control *p_canvas) { return light_occluder_editor->forward_draw_over_canvas(p_canvas); }
|
||||
virtual void forward_draw_over_viewport(Control *p_overlay) { return light_occluder_editor->forward_draw_over_viewport(p_overlay); }
|
||||
|
||||
virtual String get_name() const { return "LightOccluder2D"; }
|
||||
bool has_main_screen() const { return false; }
|
||||
|
|
|
|||
|
|
@ -269,7 +269,7 @@ bool Path2DEditor::forward_gui_input(const Ref<InputEvent> &p_event) {
|
|||
return false;
|
||||
}
|
||||
|
||||
void Path2DEditor::forward_draw_over_canvas(Control *p_canvas) {
|
||||
void Path2DEditor::forward_draw_over_viewport(Control *p_overlay) {
|
||||
|
||||
if (!node)
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ protected:
|
|||
|
||||
public:
|
||||
bool forward_gui_input(const Ref<InputEvent> &p_event);
|
||||
void forward_draw_over_canvas(Control *p_canvas);
|
||||
void forward_draw_over_viewport(Control *p_overlay);
|
||||
void edit(Node *p_path2d);
|
||||
Path2DEditor(EditorNode *p_editor);
|
||||
};
|
||||
|
|
@ -108,7 +108,7 @@ class Path2DEditorPlugin : public EditorPlugin {
|
|||
|
||||
public:
|
||||
virtual bool forward_canvas_gui_input(const Ref<InputEvent> &p_event) { return path2d_editor->forward_gui_input(p_event); }
|
||||
virtual void forward_draw_over_canvas(Control *p_canvas) { return path2d_editor->forward_draw_over_canvas(p_canvas); }
|
||||
virtual void forward_draw_over_viewport(Control *p_overlay) { return path2d_editor->forward_draw_over_viewport(p_overlay); }
|
||||
|
||||
virtual String get_name() const { return "Path2D"; }
|
||||
bool has_main_screen() const { return false; }
|
||||
|
|
|
|||
|
|
@ -2332,6 +2332,16 @@ static void draw_indicator_bar(Control &surface, real_t fill, Ref<Texture> icon)
|
|||
|
||||
void SpatialEditorViewport::_draw() {
|
||||
|
||||
EditorPluginList *over_plugin_list = EditorNode::get_singleton()->get_editor_plugins_over();
|
||||
if (!over_plugin_list->empty()) {
|
||||
over_plugin_list->forward_draw_over_viewport(surface);
|
||||
}
|
||||
|
||||
EditorPluginList *force_over_plugin_list = editor->get_editor_plugins_force_over();
|
||||
if (!force_over_plugin_list->empty()) {
|
||||
force_over_plugin_list->forward_force_draw_over_viewport(surface);
|
||||
}
|
||||
|
||||
if (surface->has_focus()) {
|
||||
Size2 size = surface->get_size();
|
||||
Rect2 r = Rect2(Point2(), size);
|
||||
|
|
@ -2839,6 +2849,20 @@ void SpatialEditorViewport::set_state(const Dictionary &p_state) {
|
|||
camera->set_doppler_tracking(doppler ? Camera::DOPPLER_TRACKING_IDLE_STEP : Camera::DOPPLER_TRACKING_DISABLED);
|
||||
view_menu->get_popup()->set_item_checked(idx, doppler);
|
||||
}
|
||||
if (p_state.has("gizmos")) {
|
||||
bool gizmos = p_state["gizmos"];
|
||||
|
||||
int idx = view_menu->get_popup()->get_item_index(VIEW_GIZMOS);
|
||||
if (view_menu->get_popup()->is_item_checked(idx) != gizmos)
|
||||
_menu_option(VIEW_GIZMOS);
|
||||
}
|
||||
if (p_state.has("information")) {
|
||||
bool information = p_state["information"];
|
||||
|
||||
int idx = view_menu->get_popup()->get_item_index(VIEW_INFORMATION);
|
||||
if (view_menu->get_popup()->is_item_checked(idx) != information)
|
||||
_menu_option(VIEW_INFORMATION);
|
||||
}
|
||||
if (p_state.has("half_res")) {
|
||||
bool half_res = p_state["half_res"];
|
||||
|
||||
|
|
@ -2870,6 +2894,9 @@ Dictionary SpatialEditorViewport::get_state() const {
|
|||
d["use_environment"] = camera->get_environment().is_valid();
|
||||
d["use_orthogonal"] = camera->get_projection() == Camera::PROJECTION_ORTHOGONAL;
|
||||
d["listener"] = viewport->is_audio_listener();
|
||||
d["doppler"] = view_menu->get_popup()->is_item_checked(view_menu->get_popup()->get_item_index(VIEW_AUDIO_DOPPLER));
|
||||
d["gizmos"] = view_menu->get_popup()->is_item_checked(view_menu->get_popup()->get_item_index(VIEW_GIZMOS));
|
||||
d["information"] = view_menu->get_popup()->is_item_checked(view_menu->get_popup()->get_item_index(VIEW_INFORMATION));
|
||||
d["half_res"] = viewport_container->get_stretch_shrink() > 1;
|
||||
if (previewing) {
|
||||
d["previewing"] = EditorNode::get_singleton()->get_edited_scene()->get_path_to(previewing);
|
||||
|
|
|
|||
|
|
@ -311,6 +311,7 @@ protected:
|
|||
static void _bind_methods();
|
||||
|
||||
public:
|
||||
void update_surface() { surface->update(); }
|
||||
void update_transform_gizmo_view();
|
||||
|
||||
void set_can_preview(Camera *p_preview);
|
||||
|
|
@ -389,6 +390,8 @@ class SpatialEditor : public VBoxContainer {
|
|||
GDCLASS(SpatialEditor, VBoxContainer);
|
||||
|
||||
public:
|
||||
static const unsigned int VIEWPORTS_COUNT = 4;
|
||||
|
||||
enum ToolMode {
|
||||
|
||||
TOOL_MODE_SELECT,
|
||||
|
|
@ -403,8 +406,6 @@ public:
|
|||
};
|
||||
|
||||
private:
|
||||
static const unsigned int VIEWPORTS_COUNT = 4;
|
||||
|
||||
EditorNode *editor;
|
||||
EditorSelection *editor_selection;
|
||||
|
||||
|
|
|
|||
|
|
@ -1183,7 +1183,7 @@ bool TileMapEditor::forward_gui_input(const Ref<InputEvent> &p_event) {
|
|||
return false;
|
||||
}
|
||||
|
||||
void TileMapEditor::forward_draw_over_canvas(Control *p_canvas) {
|
||||
void TileMapEditor::forward_draw_over_viewport(Control *p_overlay) {
|
||||
|
||||
if (!node)
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -184,7 +184,7 @@ public:
|
|||
HBoxContainer *get_toolbar() const { return toolbar; }
|
||||
|
||||
bool forward_gui_input(const Ref<InputEvent> &p_event);
|
||||
void forward_draw_over_canvas(Control *p_canvas);
|
||||
void forward_draw_over_viewport(Control *p_overlay);
|
||||
|
||||
void edit(Node *p_tile_map);
|
||||
|
||||
|
|
@ -200,7 +200,7 @@ class TileMapEditorPlugin : public EditorPlugin {
|
|||
|
||||
public:
|
||||
virtual bool forward_canvas_gui_input(const Ref<InputEvent> &p_event) { return tile_map_editor->forward_gui_input(p_event); }
|
||||
virtual void forward_draw_over_canvas(Control *p_canvas) { tile_map_editor->forward_draw_over_canvas(p_canvas); }
|
||||
virtual void forward_draw_over_viewport(Control *p_overlay) { tile_map_editor->forward_draw_over_viewport(p_overlay); }
|
||||
|
||||
virtual String get_name() const { return "TileMap"; }
|
||||
bool has_main_screen() const { return false; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue