mirror of
https://github.com/godotengine/godot.git
synced 2025-02-12 13:51:13 +00:00
Merge branch 'master' of https://github.com/okamstudio/godot
This commit is contained in:
commit
8482611f81
15
.gitignore
vendored
15
.gitignore
vendored
@ -265,3 +265,18 @@ Desktop.ini
|
||||
$RECYCLE.BIN/
|
||||
logo.h
|
||||
*.autosave
|
||||
|
||||
# https://github.com/github/gitignore/blob/master/Global/Tags.gitignore
|
||||
# Ignore tags created by etags, ctags, gtags (GNU global) and cscope
|
||||
TAGS
|
||||
!TAGS/
|
||||
tags
|
||||
!tags/
|
||||
gtags.files
|
||||
GTAGS
|
||||
GRTAGS
|
||||
GPATH
|
||||
cscope.files
|
||||
cscope.out
|
||||
cscope.in.out
|
||||
cscope.po.out
|
||||
|
@ -46,9 +46,8 @@ func _fixed_process(delta):
|
||||
|
||||
vel.x=hvel.x;
|
||||
vel.z=hvel.z
|
||||
|
||||
var motion = vel*delta
|
||||
motion=move(vel*delta)
|
||||
|
||||
var motion = move(vel*delta)
|
||||
|
||||
var on_floor = false
|
||||
var original_vel = vel
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
********************************************************************/
|
||||
|
||||
/**\mainpage
|
||||
/**\file
|
||||
*
|
||||
* \section intro Introduction
|
||||
*
|
||||
|
BIN
logo_small.png
Normal file
BIN
logo_small.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
@ -747,7 +747,8 @@ public class Godot extends Activity implements SensorEventListener, IDownloaderC
|
||||
//}
|
||||
} break;
|
||||
case MotionEvent.ACTION_POINTER_UP: {
|
||||
int pointer_idx = event.getActionIndex();
|
||||
final int indexPointUp = event.getAction() >> MotionEvent.ACTION_POINTER_INDEX_SHIFT;
|
||||
final int pointer_idx = event.getPointerId(indexPointUp);
|
||||
GodotLib.touch(4,pointer_idx,evcount,arr);
|
||||
//System.out.printf("%d - s.up at: %f,%f\n",pointer_idx, event.getX(pointer_idx),event.getY(pointer_idx));
|
||||
} break;
|
||||
|
@ -353,7 +353,7 @@ void EditorHelp::_search(const String&) {
|
||||
String stext=search->get_text();
|
||||
bool keep = prev_search==stext && class_list->get_selected() && prev_search_page==class_list->get_selected()->get_text(0);
|
||||
|
||||
class_desc->search(stext);
|
||||
class_desc->search(stext, keep);
|
||||
|
||||
prev_search=stext;
|
||||
if (class_list->get_selected())
|
||||
|
@ -264,6 +264,7 @@ void EditorSettings::create() {
|
||||
|
||||
singleton = Ref<EditorSettings>( memnew( EditorSettings ) );
|
||||
singleton->config_file_path=config_file_path;
|
||||
singleton->settings_path=config_path+"/"+config_dir;
|
||||
singleton->_load_defaults();
|
||||
singleton->scan_plugins();
|
||||
|
||||
|
@ -479,6 +479,11 @@ Error ProjectExportDialog::export_platform(const String& p_platform, const Strin
|
||||
if (err!=OK) {
|
||||
error->set_text("Error exporting project!");
|
||||
error->popup_centered_minsize();
|
||||
ERR_PRINT("Exporting failed!");
|
||||
if (p_quit_after) {
|
||||
OS::get_singleton()->set_exit_code(255);
|
||||
get_tree()->quit();
|
||||
}
|
||||
return ERR_CANT_CREATE;
|
||||
} else {
|
||||
if (p_quit_after) {
|
||||
|
Loading…
Reference in New Issue
Block a user