aboutsummaryrefslogtreecommitdiff
path: root/modules/visual_script/visual_script_expression.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-02-09Remove memdelete of button in GIProbeEditor exitKenneth Lorthioir1-2/+0
This issue was causing a heap corruption on windows.
2017-02-09Close out audio drivers when exiting.Kenneth Lorthioir1-0/+5
Prevents a crash when closing the project manager.
2017-02-09Removed DX9 Rasterizer in windows.Kenneth Lorthioir2-8/+0
This doesn't seem to be needed anymore and the code to free the unused rasterizer was throwing a memory violation since it was getting set to a value somehow.
2017-02-09Add STRETCH_KEEP_ASPECT_COVERED to TextureRect StretchModegeequlim4-44/+133
Make TextureButton to the same resize behavior with TextureRect
2017-02-09Make _sc_ files work like ._sc_, fixes #7762Bojidar Marinov1-1/+8
2017-02-08Fixed compilation issues with Visual StudioKenneth Lorthioir3-1/+8
2017-02-09Reorder the folders in tools to prepare moving tools/editorRémi Verschelde130-158/+152
- `certs` and `editor_fonts` go to `thirdparty` - `dist` and `scripts` go to a new `misc` folder - `collada` and `doc` go to `tools/editor` The next step will be to rename `tools/editor` to `editor` directly, but this will be done at the right time to avoid breaking too many PRs.
2017-02-08Added "Scots" locale name, fixing #7630Nuno Donato1-0/+1
2017-02-08Save and restore debug optionsvolzhs5-14/+38
2017-02-08basic contact shadows implementation, will most likely need some polishingJuan Linietsky7-33/+155
2017-02-07HTTPClient properly handle partial data in non-blocking modeFabio Alessandrelli1-2/+4
Use block to send DVector::Write out of scope in HTTPClient::read_response_body_chunk()
2017-02-07Fix tween Transform2D typosanikoyes1-3/+3
2017-02-07Fix msvc compile errorsanikoyes2-2/+2
2017-02-06shadows were not working in-editor for nvidia, fixed nowJuan Linietsky7-11/+24
2017-02-06JSON::parse reports errors on open-ended objectsKarroffel1-2/+2
2017-02-06Add editor option for automatically closing the output when stopping the game.mbalint122-0/+9
2017-02-06ability to adjust propagation in gi probeJuan Linietsky9-15/+101
2017-02-06Several bugfixes, improving the import workflowJuan Linietsky31-148/+476
2017-02-04Ensure proper config version when reading the new configuration file.Juan Linietsky2-2/+15
2017-02-04Renamed engine.cfg to godot.cfg, to forcefully break compatibility with 2.xJuan Linietsky41-271/+271
2017-02-04completed scene importing (I hope?)Juan Linietsky5-10/+227
2017-02-04Fix parsing bug which causes range(variable) to crash the enginelonesurvivor1-4/+3
problem was a segmentation fault caused by trying to access Vector constants[0] which isn't there if op->arguments.size() is not bigger than one. - the changed OR condition didn't make sense (always true), should be AND - changes the "constant" variable to be false per default and gets set to true when there is actually something pushed to "constants"
2017-02-04fix continous reimport bug (i hope)Juan Linietsky1-2/+27
2017-02-04Scene import more or less working, needs some missing features.Juan Linietsky5-6/+1297
2017-02-03Fixed property setter in G6DOF jointm4nu3lf1-1/+1
2017-02-03Changed OGG Vorbis type to be imported, so it's possible to specify loopJuan Linietsky5-76/+184
2017-02-03Selected text is now deselected on ctrl+home/endkbake1-14/+25
This fixes Issue #7694 and also the error mentioned in the comments of that issue.
2017-02-03OBJ file importing!Juan Linietsky7-4/+269
2017-02-02wav file importing!Juan Linietsky6-0/+1341
2017-02-02Sort settings for scripts in the editorBojidar Marinov2-4/+50
2017-02-02Match ERROR_QUERY_FAILED enum with othersvolzhs2-2/+2
2017-02-02Add shape property to TouchScreenButtonPedro J. Estébanez2-3/+78
Adapted from 67a0da34a2d5a95761c54b3012d0a8f1a79e10a6
2017-02-02Fix crash when saving root node by "Save Branch as Scene" with unsaved scenevolzhs1-0/+7
Fix #7667 (cherry picked from commit 43a2599801be348dfd41d928c7a66a590dbe8745)
2017-02-02Fix #7011 ScrollContainer takes into account child's EXPAND flag when ↵Pawel Kowal1-2/+2
scrolling is enabled (cherry picked from commit e9316a009e08e8fe9aa961a0ccef2a77ba7133fc)