summaryrefslogtreecommitdiff
path: root/main/main.cpp
AgeCommit message (Collapse)Author
2016-09-01-Modified Input and added is_action_just_pressed() as well as ↵Juan Linietsky
is_action_just_released()
2016-07-10Fix crash on asset lib installGeorge Marques
This is not the perfect solution, but fixes the crash and avoid a dependency on EditorNode.
2016-07-09removed target_fps option, moved it to debug (it makes no sense for games). ↵Juan Linietsky
Added a frame_delay option for games that don't want to use the CPU fully.
2016-07-07Removed unused variables (first pass)Rémi Verschelde
Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
2016-06-18update EditorDirDialog on external change, closes #4629Juan Linietsky
2016-06-05vsync supportJuan Linietsky
-works on windows -may not work on X11, if so please fix -OSX does not seem to support disabling vsync
2016-06-05Make Input Actions config not affect the editorJuan Linietsky
2016-05-30-Some fixes to OSX retina scaling for window functionsJuan Linietsky
-Implemented HiDPI detection and support for Godot Editor!
2016-05-22Change low processor usage mode to cap to 60 FPS rather than 40 FPSCalinou
This results in smoother operation in the editor, without needing to resort to the "Update Always" method which uses more resources than needed.
2016-05-21First version of ProfilerJuan Linietsky
It is now possible to profile GDScript as well as some parts of Godot internals.
2016-04-15Always set default clear coloreska
2016-03-12Borderless window support for the Win32 build. Default window position is ↵Saracen
now also centred.
2016-03-12-Made editor support SSL certs by default (embedded them)Juan Linietsky
-Made asset sharing support https -Many fixes to HTTPRequest -Added an asset installer dialog -Visual cleanups to asset sharing tab -Fixed some issues in ScrollContainer, hope it does not break things -Asset sharing tab is not visible (hidden on purpose) for now.
2016-03-09remove trailing whitespaceHubert Jarosz
2016-02-25adds -pm and -project_manager command line options to start project managerAriel Manzur
fixes bug where the user has an engine.cfg on the executable directory so it runs the game instead of opening the project manager
2016-02-03Merge pull request #3493 from Hinsbart/wm_classRémi Verschelde
x11: use different strings for WM_CLASS depending on context
2016-01-31do not fail on invalid audio driver, fixes #3466Juan Linietsky
2016-01-27x11: use different strings for WM_CLASS depending on contexthondres
2016-01-16Add ability to set "keep screen on" for androidvolzhs
2016-01-13Fix wrong type check for autoloadRémi Verschelde
Regression from c633a29. Fixes #3342
2016-01-13improve reporting of error in wrong inheritance for autoload scriptJuan Linietsky
2016-01-13attempt another fixJuan Linietsky
2016-01-13Reworked how autoloads are load to make sure identifiers always exist, ↵Juan Linietsky
please check if this resolves bug #3156
2016-01-11Update copyright in remaining files + prints in the UIRémi Verschelde
2016-01-01Update copyright to 2016 in headersGeorge Marques
2015-12-31force thread model to single-safe when running editor, fixes #2387Juan Linietsky
2015-12-29removed wron return types, fixes #2483reduz
removed console, which was obsolete and unused sine long long ago
2015-12-28Ability to set autoloads as singleton global variablesreduz
2015-12-12-added windowed mode with -w, fixes #3020Juan Linietsky
-changed default windowed resolution to 1280x720
2015-11-26Print error if no export destination has been passedest31
2015-11-24Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
Conflicts: main/main.cpp
2015-11-24-work in progress resourceparser and .tscn parser. Still non-functionalJuan Linietsky
-fixed theora so it can compile theoralib but not theora -fixed generation of windows icon in .rc, which didn't previously work in 32 bits
2015-11-24Fix typo, missing quoteRémi Verschelde
2015-11-24Merge pull request #2876 from akien-mga/pr-boot-splash-debugRémi Verschelde
Silence too verbose boot splash debug info
2015-11-23Silence too verbose boot splash debug infoRémi Verschelde
2015-11-22Load main scene if defined when running editor from the command lineRémi Verschelde
If no main scene is defined, or if it's an empty string, the previous behaviour will still be used, i.e. launch the project manager. A small fix was also added not to maximize the window when opening the project manager via -editor (i.e. "godot" and "godot -e" will behave the same when no project is in the path). Fixes #2869.
2015-11-18Merge pull request #2706 from phobos-tro/main_memleaksJuan Linietsky
Fixing memleaks in main/main.cpp
2015-11-01Fix arguments parsing in the main functionRémi Verschelde
Fixes #2611 which was a regression from 692216b86ab97db91e7ff3903ffc9ac8e37433f6. The bogus behaviour considered that if there were more than one arguments left to parse, they would be a pair of arguments (switch and its parameter), and thus skipped the next argument in all cases (thus potentially skipping a "-editor", which triggered #2611). This is fixed by checking first for arguments that don't expect a parameter, and only afterwards for arguments that expect a parameter. And if a "pair" of arguments is not valid, we no longer increment the counter.
2015-10-30Fixing memleaks in main/main.cppPhobos Tro
2015-10-17Merge pull request #2395 from MrMormon/patch-1Juan Linietsky
Fixed misspelled local variable for code clarity
2015-10-17Merge pull request #2481 from firefly2442/cppcheck-arrayindexthencheckJuan Linietsky
ran cppcheck, fixed cases where array index is used before limits check
2015-10-13-A little More control about pixel snapping in 2DJuan Linietsky
2015-10-12ran cppcheck, fixed cases where array index is used before limits checkfirefly2442
2015-09-24Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2015-09-24Added ability to set custom mouse cursors. Not hardware accelerated yet.Juan Linietsky
2015-09-20Ability to visually debug geometry visually:Juan Linietsky
-Visible 2D and 3D Shapes, Polygons, Tile collisions, etc. -Visible Navmesh and Navpoly -Visible collision contacts for 2D and 3D as a red point -Customizable colors in project settings
2015-09-18begin work on debugging collisions....Juan Linietsky
2015-09-10Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2015-09-10HTML5 exporter ImprovementsJuan Linietsky
-Better template handling -Voice support -Stream support
2015-09-05fix game window runs only 800x600volzhs