* Added numpad emulation (fixes #3612)
This commit is contained in:
parent
de6d6633ec
commit
67a839c791
2 changed files with 17 additions and 4 deletions
|
@ -490,6 +490,7 @@ void EditorSettings::_load_defaults() {
|
||||||
hints["3d_editor/pan_modifier"]=PropertyInfo(Variant::INT,"3d_editor/pan_modifier",PROPERTY_HINT_ENUM,"None,Shift,Alt,Meta,Ctrl");
|
hints["3d_editor/pan_modifier"]=PropertyInfo(Variant::INT,"3d_editor/pan_modifier",PROPERTY_HINT_ENUM,"None,Shift,Alt,Meta,Ctrl");
|
||||||
set("3d_editor/zoom_modifier",4);
|
set("3d_editor/zoom_modifier",4);
|
||||||
hints["3d_editor/zoom_modifier"]=PropertyInfo(Variant::INT,"3d_editor/zoom_modifier",PROPERTY_HINT_ENUM,"None,Shift,Alt,Meta,Ctrl");
|
hints["3d_editor/zoom_modifier"]=PropertyInfo(Variant::INT,"3d_editor/zoom_modifier",PROPERTY_HINT_ENUM,"None,Shift,Alt,Meta,Ctrl");
|
||||||
|
set("3d_editor/emulate_numpad",false);
|
||||||
|
|
||||||
set("2d_editor/bone_width",5);
|
set("2d_editor/bone_width",5);
|
||||||
set("2d_editor/bone_color1",Color(1.0,1.0,1.0,0.9));
|
set("2d_editor/bone_color1",Color(1.0,1.0,1.0,0.9));
|
||||||
|
|
|
@ -1631,8 +1631,11 @@ void SpatialEditorViewport::_sinput(const InputEvent &p_event) {
|
||||||
_edit.snap=true;
|
_edit.snap=true;
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
|
case KEY_7:
|
||||||
case KEY_KP_7: {
|
case KEY_KP_7: {
|
||||||
|
bool emulate_numpad = EditorSettings::get_singleton()->get("3d_editor/emulate_numpad");
|
||||||
|
if (!emulate_numpad && k.scancode==KEY_7)
|
||||||
|
return;
|
||||||
cursor.y_rot=0;
|
cursor.y_rot=0;
|
||||||
if (k.mod.shift) {
|
if (k.mod.shift) {
|
||||||
cursor.x_rot=-Math_PI/2.0;
|
cursor.x_rot=-Math_PI/2.0;
|
||||||
|
@ -1647,8 +1650,11 @@ void SpatialEditorViewport::_sinput(const InputEvent &p_event) {
|
||||||
_update_name();
|
_update_name();
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
|
case KEY_1:
|
||||||
case KEY_KP_1: {
|
case KEY_KP_1: {
|
||||||
|
bool emulate_numpad = EditorSettings::get_singleton()->get("3d_editor/emulate_numpad");
|
||||||
|
if (!emulate_numpad && k.scancode==KEY_1)
|
||||||
|
return;
|
||||||
cursor.x_rot=0;
|
cursor.x_rot=0;
|
||||||
if (k.mod.shift) {
|
if (k.mod.shift) {
|
||||||
cursor.y_rot=Math_PI;
|
cursor.y_rot=Math_PI;
|
||||||
|
@ -1664,8 +1670,11 @@ void SpatialEditorViewport::_sinput(const InputEvent &p_event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
} break;
|
} break;
|
||||||
|
case KEY_3:
|
||||||
case KEY_KP_3: {
|
case KEY_KP_3: {
|
||||||
|
bool emulate_numpad = EditorSettings::get_singleton()->get("3d_editor/emulate_numpad");
|
||||||
|
if (!emulate_numpad && k.scancode==KEY_3)
|
||||||
|
return;
|
||||||
cursor.x_rot=0;
|
cursor.x_rot=0;
|
||||||
if (k.mod.shift) {
|
if (k.mod.shift) {
|
||||||
cursor.y_rot=Math_PI/2.0;
|
cursor.y_rot=Math_PI/2.0;
|
||||||
|
@ -1680,8 +1689,11 @@ void SpatialEditorViewport::_sinput(const InputEvent &p_event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
} break;
|
} break;
|
||||||
|
case KEY_5:
|
||||||
case KEY_KP_5: {
|
case KEY_KP_5: {
|
||||||
|
bool emulate_numpad = EditorSettings::get_singleton()->get("3d_editor/emulate_numpad");
|
||||||
|
if (!emulate_numpad && k.scancode==KEY_5)
|
||||||
|
return;
|
||||||
|
|
||||||
//orthogonal = !orthogonal;
|
//orthogonal = !orthogonal;
|
||||||
_menu_option(orthogonal?VIEW_PERSPECTIVE:VIEW_ORTHOGONAL);
|
_menu_option(orthogonal?VIEW_PERSPECTIVE:VIEW_ORTHOGONAL);
|
||||||
|
|
Loading…
Reference in a new issue