aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/javascript_main.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-05-25Fix virtual methods in InputEventKey.Andreas Haas2-3/+3
This fixes a lot of problems with key input in the engine.
2017-05-25Removed skybox support, added panorama support. Skybox support may come back ↵Juan Linietsky14-258/+256
eventually, but hope not.
2017-05-25Implement OS.alert() for iOSPedro J. Estébanez4-0/+16
2017-05-24Join text menus on the top-left, move shortcut buttons to new locationNuno Donato2-156/+113
2017-05-24Improved default colors for the new themeNuno Donato2-14/+16
Colors inspired from solarized themes. Also moved the theme settings to the Interface category.
2017-05-24Change InputEventScreenTouch from struct to classGeorge Marques1-1/+1
2017-05-24Fix 2D-editor mouse wheel zoom (x11).Martin Capitanio1-1/+1
Fixes #8888
2017-05-23[GDNative] fixed some functions that returned referencesKarroffel4-15/+8
Those errors were introduced with #8821 (6fd217d). These functions need to return reference types, otherwise setting values on those containers does not work.
2017-05-23Fix UWP compilation issuesGeorge Marques5-87/+74
Also fix VS2017 compilation problems.
2017-05-23Fix crash when interacting with the 2d editorGeorge Marques1-2/+2
2017-05-23Make arm64 the default option and set minimum to iOS 9BastiaanOlij1-8/+9
2017-05-23More fixes for iOS Godot 3.0BastiaanOlij3-10/+21
- nicely exit if initialisation fails - fix a few issues around new event handling - use 16bit single channel framebuffer as 32bit is not supported on iOS
2017-05-23-Fix the "set_val" call deferred, it was the only one.. closes #8742Juan Linietsky2-2/+2
-Removed redundant bind in input_event
2017-05-23Fix stex import into black textures when lossless and lossy are selected, ↵Juan Linietsky2-2/+3
closes #8801
2017-05-23Fix a few issues compiling windows and using VS2015 and earlierBastiaanOlij3-51/+58
2017-05-23fixed crash on code that checks InputEventJuan Linietsky1-1/+1
2017-05-23Fix disabled style of LineEditvolzhs1-4/+5
2017-05-22Fix errors on engine startup.Andreas Haas4-7/+5
Fixes a bunch of the most spammy console errors introduced by recent refactorings: - `AudioServerState` does not exist, this was the reference to it in the source. The surrounding code made it clear that `AudioServerLayout` was meant to be used instead. - `StreamCSVTranslation` same here, it's the only reference. I went with `Translation` here, but I'm not 100% sure on this one. - Some methods have been moved from `Texture` to `Image`, but the old bindings were still there. - A few `name == ""` errors related to duplicating nodes.
2017-05-22Fix weigth scale of A* being applied to the whole path and estimationBojidar Marinov1-5/+2
Attempt to fix #8584
2017-05-22Show description box on create new node windowvolzhs1-1/+1
2017-05-22Fit grid with label and component of editorvolzhs1-0/+1
2017-05-22Show disabled item with proper color on FileDialog of editor themevolzhs1-0/+5
Fix #8635
2017-05-22added modifier key to scroll eventtoger51-34/+34
2017-05-22fixed osx input eventtoger51-135/+141
2017-05-21fixed crash when dragging to change color in color pickertoger51-1/+1
2017-05-21Fix 2d path editor controls.Zaven Muradyan1-85/+53
Fixes #502. This appears to have been broken due to a merge conflict after the InputEvents changes.
2017-05-21Avoid overestimating the cost in AStar heuristics.Ferenc Arn2-1/+2
This is a necessary condition for finding optimal solutions. This is achieved by simply requiring/ensuring that no weights are smaller than 1. Fixes #8584.
2017-05-20Removal of InputEvent as built-in Variant type..Juan Linietsky206-9039/+8419
this might cause bugs I haven't found yet..
2017-05-20GDScript can now tell if the wheel is in contact with the ground; change ↵Zireael072-0/+23
roll influence of the wheel in editor
2017-05-20Add recent contributors to AUTHORSRémi Verschelde1-1/+4
2017-05-20Fix crash when saving AudioPlayer without stream.Andreas Haas1-0/+1
Guards against calling this setter with invalid input.
2017-05-20Removing rasterizer from iphoneBastiaanOlij3-3467/+0
2017-05-20Added texture_get_texidBastiaanOlij5-0/+12
2017-05-20Doing a little bit of cleanupBastiaanOlij6-518/+2
2017-05-19Fix #8819. Adds _import_node() that, when used in conjunction with ↵Jon Ross2-12/+15
_import_scene, recurses through the scene tree and exports all available nodes.
2017-05-19Finish implementation of GDnative builtins bindingsEmmanuel Leblond43-2284/+2467
2017-05-19Added bool to allow astar points to be connected in one direction onlyFabian Mathews2-4/+6
2017-05-19Fix android payment logical errorvolzhs1-24/+23
getting sku detail runs only if mod != 0 which means querying 20*n will not get sku details. referenced from https://github.com/googlesamples/android-play-billing/blob/master/TrivialDrive/app/src/main/java/com/example/android/trivialdrivesample/util/IabHelper.java#L1029-L1062
2017-05-19Detect newer Visual Studio compilers correctly like VS2017.Aren Villanueva1-0/+27
2017-05-18Use libsquish to decompress DXT textures.Ferenc Arn5-328/+47
2017-05-18GDScript bindings for various missing Mesh functions.Ferenc Arn1-0/+5
Fixes #8041.
2017-05-18Editor: Make "open 2d/3d/script editor" shortcuts configurable.Andreas Haas3-23/+52
Also adds shortcuts for opening the AssetLib and for switching to the next/prev editor.
2017-05-18Make MessageQueue::flush() reentrantPedro J. Estébanez1-6/+9
2017-05-18Add column_title_pressed signal to Tree nodeyanorax1-0/+21
The Tree node column/table form is missing the ability to capture column title clicks easily. Adding this functionality will give us the ability to create functions such as sort by column, which is a common table manipulation ability in games/apps. https://godotengine.org/qa/7699
2017-05-17Adapt tutorials (Godot Docs) icon to new designRémi Verschelde8-169/+174
2017-05-17Use new Godot icon consistently everywhereRémi Verschelde12-155/+329
2017-05-17Fix two typos from previous commitRémi Verschelde10-107/+42
Also cleanup comments on variant types.
2017-05-17Add extended check option to GDFunctionState::is_valid()Pedro J. Estébanez3-4/+20
2017-05-17MFI gamepad support for iPhoneBastiaanOlij3-80/+451
2017-05-17Removal of Image from Variant, converted to a Resource.Juan Linietsky110-3203/+690