summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2018-04-09Merge pull request #18040 from Paulb23/color_region_cacheRémi Verschelde
Fixed colour regions and added local colour region cache
2018-04-09Merge pull request #17864 from NikodemL/fix_mono_bottom_panel_issue_activatedIgnacio Etcheverry
Fixed mono bottom panel to select the correct file when messages are filtered
2018-04-08Merge pull request #16556 from aragar/masterJuan Linietsky
For-in loop variable added to autocompletion
2018-04-07Merge pull request #17583 from RandomShaper/enhance-uri-utilsJuan Linietsky
Enhance uri utils
2018-04-07Merge pull request #17730 from RandomShaper/radio-buttons-in-menusJuan Linietsky
Radio buttons in menus
2018-04-07Fixed color regions and added local color region cachePaulb23
2018-04-07Correct profiling_frame naming in pluginscriptEmmanuel Leblond
2018-04-06Fix Pluginscript add_global_constant mandatory value checkEmmanuel Leblond
2018-04-06Merge pull request #17899 from AndreaCatania/area_cleaningRémi Verschelde
Fixed physics server area cleaning
2018-04-06Fixed physics server area cleaningAndrea Catania
2018-04-06[NativeScript] replace error macros by simple returnskarroffel
2018-04-05Merge pull request #17980 from karroffel/nativescript-1.1-global-type-tagsThomas Herzog
[NativeScript] added global type tag system
2018-04-05Merge pull request #17806 from Zylann/fix_heightmap_shape_size_checkRémi Verschelde
Make heightmap shape usable in PhysicsServer
2018-04-05[NativeScript] added global type tag systemkarroffel
2018-04-04Renamed GDSyntaxHighlighter to GDScriptSyntaxHighlighterPaulb23
2018-04-04Merge pull request #17965 from karroffel/gdnativelib-config-apiThomas Herzog
[GDNative] some GDNativeLibrary improvements
2018-04-04[GDNative] enable saving GDNativeLibrary as sub resourcekarroffel
2018-04-04[GDNative] easier GDNativeLib handlingkarroffel
2018-04-04Corrected physics query max result checkingAndrea Catania
2018-04-04Merge pull request #17959 from AndreaCatania/kinfix2Rémi Verschelde
Fixed kinematic sliding on trimesh
2018-04-04Fixed kinematic sliding on trimeshAndrea Catania
2018-04-04Merge pull request #17923 from Paulb23/add_abstract_syntax_highlighterRémi Verschelde
Abstracted the syntax highlighter from text edit.
2018-04-03Merge pull request #17847 from Faless/lws_updateRémi Verschelde
LWS v2.4.2, mbedTLS v2.8.0, Websocket SSL support
2018-04-03Merge pull request #17865 from delftswa2018/enumLookupFixRémi Verschelde
Ctrl+Clicking a enum now scrolls down to it in the docs.
2018-04-03Merge pull request #17900 from AndreaCatania/area_monRémi Verschelde
physics area added monitorable check
2018-04-03Ctrl+Clicking a enum now scrolls down to it in the docs.Felix Yang
2018-04-03Merge pull request #17834 from Rubonnek/move-to-initializer-listRémi Verschelde
Move GodotSharp and MonoBuildTab member variables to initializer list
2018-04-03Websocket client SSL supportFabio Alessandrelli
2018-04-03Generalize SSL cert reading from fileFabio Alessandrelli
2018-04-03Merge pull request #17940 from Alexander-Alekseev/mono_keep_csharp6Rémi Verschelde
[mono] Fixes #17936 as GodotSharp (Core\Basic.cs) requires C#7 now
2018-04-03Merge pull request #17933 from Rubonnek/comment-debugging-messagesRémi Verschelde
Comment out some debugging messages when playing Theora files
2018-04-03[mono] Fixes #17936 as GodotSharp (Core\Basic.cs) requires C#7 now, but we ↵Alexander Alekseev
most probably should keep C#6 yet
2018-04-02Comment out some debugging messages when playing Theora filesWilson E. Alvarez
2018-04-02Abstracted the syntax highlighter from text editPaulb23
2018-04-02Fix of a possible memory leak: ConcavePolygonShapeBullet::setup was able to ↵Alexander Alekseev
exit without releasing the 'shapeInterface' pointer.
2018-04-01physics area added monitorable checkAndrea Catania
2018-03-31Merge pull request #17878 from karroffel/nativescript-1.1-bughuntThomas Herzog
[GDNative] fixed issue with library unloading order and header update
2018-03-31[GDNative] fixed issue with library unloading orderkarroffel
2018-03-31[GDNative] added GDCALLINGCONV to instance binding functionskarroffel
2018-03-31Merge pull request #17772 from Chaosus/monowrapIgnacio Etcheverry
Add wrap functions to C#
2018-03-30Fixed _issue_activated to take the correct issue id from the listNikodem Lokatelj
2018-03-28Make heightmap shape usable from PhysicsServerMarc Gilleron
- Fixed bad size check - Fixed bad member initialization - Removed unused cell_size (Bullet expects us to use localScaling) - Accept precomputed min/max height, will be calculated if not provided
2018-03-28Fix IPhone and OSX cross compilationFabio Alessandrelli
2018-03-27Move GodotSharp and MonoBuildTab member variables to initializer listWilson E. Alvarez
2018-03-27Use radio-button-like menu entries where applicablePedro J. Estébanez
2018-03-27Unify http- and percent- encode/decodePedro J. Estébanez
There was a percent-prefixed version, which was exposed, and a http-prefixed version which was not (only to GDNative). This commit keeps the percent-prefixed versions, but with the http-prefixed implementations.
2018-03-26Added wrap functions to C#Chaosus
2018-03-24Fix mono basis GetEuler bug and marshalling/unmarshallingCarter Anderson
2018-03-24Merge pull request #17134 from aaronfranke/masterIgnacio Etcheverry
[Mono] Replace float with real_t, other misc C# improvements
2018-03-22Replace float with real_t, default Vectors, other misc C# improvementsAaron Franke
Replace float with real_t in most files, defined at the top of each file via using. Objects such as Vector3 now accept doubles as inputs, and convert to real_t internally. I've added default Vectors such as Vector3.Zero. Other misc C# improvements such as Mathf.RoundToInt(). Color continues to use float only because high precision is not needed for 8-bit color math and to keep things simple. Everything seems to compile and work fine, but testing is requested, as this is the first time I've ever contributed to Godot.