Pedro J. Estébanez
68cca6e619
Fix leaked objects when game ends with yields in progress
2020-04-29 14:13:36 +02:00
Rémi Verschelde
4dda00461f
Merge pull request #38011 from madmiraal/fix-csg-3.2
...
[3.2] Fix multiple issues with CSG module.
2020-04-27 17:05:47 +02:00
Ignacio Etcheverry
8cdcb410e0
Mono/C#: Fix load hook not called for some assemblies on domain reload
...
(cherry picked from commit f5510262bc
)
2020-04-27 10:15:24 +02:00
Ignacio Etcheverry
a98d44f654
C#: Fix always saving copy of csproj even with no changes
...
This was a regression from 93d7ec8836
(#38110 ).
Mono's old implementation of Microsoft.Build hardcodes HasUnsavedChanges to
always return true.
This workaround can be reverted once we switch to official Microsoft.Build.
(cherry picked from commit 81f13f6171
)
2020-04-27 10:15:07 +02:00
Tom Evans
3bd5fc2e5e
Mark assert lines as safe in gdscript
...
Now calling _reduce_node_type with debugging enabled to determine
if assert line is safe. Part of doing this required the assert line
to be stored away. Now the AssertNode line is being correctly set.
Newlines are now marked safe always
(cherry picked from commit 8dc8833782
)
2020-04-27 10:10:20 +02:00
Umang Kalra
94d0f34f70
Fixed the bool _static logic
...
(cherry picked from commit b192c7d1ac
)
2020-04-27 10:09:49 +02:00
Ignacio Etcheverry
6aca932659
C#: Revert marshalling of IDictionary/IEnumerable implementing types
...
Added marshalling for `System.Collections.Generic.List<T>` and
`System.Collections.Generic.Dictionary<TKey, TValue>`.
2020-04-23 15:36:01 +02:00
Ignacio Etcheverry
dfdb7bdc87
Mono/C#: Fix assemblies being reloaded a second time unnecesarily
...
(cherry picked from commit c9882e61e2
)
2020-04-23 11:34:42 +02:00
Ignacio Etcheverry
cf729f2111
Mono/C#: Allow exporting System.Array of type Godot.Object
...
(cherry picked from commit 0fec3cb5ed
)
2020-04-23 11:17:23 +02:00
Ignacio Etcheverry
317d8decad
Mono/C#: Allow debugging exported games
...
- Include PDB files in exported games.
- Release export templates also allow debugging now.
Right now the only way to enable debugging in exported games is with the environment variables, which may be cumbersome or not even possible on some platforms.
(cherry picked from commit 71fc87e101
)
2020-04-23 11:15:35 +02:00
Ignacio Etcheverry
08f41f474b
C#: Save copy of sln and csproj before applying fixes
...
(cherry picked from commit 93d7ec8836
)
2020-04-23 11:14:57 +02:00
Thakee Nathees
95f6bdfa78
GDScript class name existance check enhanced
...
(cherry picked from commit 62280c3d47
)
2020-04-23 11:10:51 +02:00
Thakee Nathees
12c776dba3
line unsafe for indexing with known base type & unkown identifier
...
(cherry picked from commit 0780ad2800
)
2020-04-23 11:10:28 +02:00
Stoofin
243711e77f
Pattern bind counts as assignment
...
Fixes #34697
(cherry picked from commit 44281f233d
)
2020-04-23 11:10:06 +02:00
Rémi Verschelde
253fc093b8
DocData: Skip unexposed classes
...
Properly expose classes that we actually want accessible.
(cherry picked from commit 0ef8bcac4d
)
2020-04-21 14:15:34 +02:00
Marcel Admiraal
11b7f050df
Fix multiple issues with CSG module.
...
- Replaces BuildPoly with Build2DFaces, which creates faces as each
pair of face intersections are processed, instead of trying to create
them after all the intersections are processed. Ensures that faces are
merged when possible, and removes degenerate triangles.
- Treats the child as inside the parent when faces are coplanar.
- General clean up of csg.h and csg.cpp.
2020-04-19 14:32:45 +01:00
Rémi Verschelde
cb1366f006
Mono: Fix include for Android support
...
This was a typo in #37153 .
Co-authored-by: Ignacio Etcheverry <ignalfonsore@gmail.com>
(cherry picked from commit 408fab8442
)
2020-04-18 22:02:07 +02:00
Nico Mitchell
616d106247
Change round return type to float
...
(cherry picked from commits c2ffaf5b2b
and f7cc2b090c
)
2020-04-16 12:57:21 +02:00
Thakee Nathees
3d69fe95e5
autocomplete for disconnect, is_connected implemented
...
(cherry picked from commit efe90fce01
)
2020-04-16 12:47:19 +02:00
lupoDharkael
c0047023e6
NoiseTexture: prevent race condition because of Ref::unref()
...
(cherry picked from commit 1f0f0b8cea
)
2020-04-16 12:47:18 +02:00
Thakee Nathees
3658f7127e
`:=` fails on some nodes fix : #37357
...
(cherry picked from commit bdd7048cb5
)
2020-04-16 11:46:23 +02:00
Ignacio Etcheverry
445f1c6e7b
Mono/C#: Add iOS support
...
Right now, games only work on devices when exported with FullAOT+Interpreter.
There are some issues left that need to addressed for FullAOT alone. Right now,
it's giving issues with the Godot.NativeCalls static constructor.
2020-04-14 18:03:10 +02:00
Ignacio Etcheverry
6b38fe691a
Mono/C#: Fix MinGW build not supporting `.lib` libraries
...
MinGW should support both its own format `.a` and MSVC's format `.lib`, but Mono's module was only using the former. With this change it's now possible to build with MinGW and link the official Mono for Windows which is built with MSVC.
2020-04-14 18:03:10 +02:00
Thakee Nathees
df87601c88
Fix for loop range bug: #37358
...
(cherry picked from commit 0b5bad78c0
)
2020-04-06 20:58:21 +02:00
Hugo Locurcio
dd4569f15c
Remove syntax highlighting for C# verbatim strings due to bugs
...
This closes #32336 .
(cherry picked from commit 49efd6093e
)
2020-04-06 18:18:38 +02:00
Thomas ten Cate
c2469d0c6d
Add missing docs for assert message in GDScript
...
Seems like this was overlooked in PR #31142 . See also issue #17082 .
(cherry picked from commit 4c3c73ef9c
)
2020-04-06 18:17:59 +02:00
Ivan.Shakhov
66e4c8be23
fix RiderPathLocator - searching for toolbox on Mac
...
(cherry picked from commit dc16b8742a
)
2020-04-06 18:15:20 +02:00
Ignacio Etcheverry
bda993dd79
C#: Fix uses of old Configuration names
...
(cherry picked from commit 66c0b7ce98
)
2020-04-06 18:14:07 +02:00
Rajat Goswami
19e71f94d8
Adding missing include guards to header files identified by LGTM.
...
This addresses the issue godotengine/godot#37143
(cherry picked from commit 2ecf928ae3
)
2020-03-25 11:38:54 +01:00
Rémi Verschelde
bdde501594
opus/vorbis: Remove dead code not used since 3.0
...
Since the new audio system in 3.0 we switched the OGG support to
stb_vorbis, and the Opus stream support was disabled as incompatible
(see #7496 ).
We still build the libraries as they are needed by the theora and webm
modules, but we don't need any Godot code apart from `register_types`.
Fixes #7496 .
(cherry picked from commit 7f6b62cef0
)
2020-03-25 11:38:54 +01:00
Andrii Doroshenko (Xrayez)
8fedcfbed2
Generate command line help text for `mono` module
...
(cherry picked from commit 94b6c1363c
)
2020-03-25 11:38:54 +01:00
Ivan.Shakhov
9d0518cf80
Fix warning: Property not found: mono/editor/editor_path_optional ( #36995 )
...
(cherry picked from commit 05946be2f1
)
2020-03-25 11:38:54 +01:00
Ignacio Etcheverry
d46fcbb16a
C#: Replace uses of old Configuration and update old csprojs
...
(cherry picked from commit 1b634785b5
)
2020-03-25 11:38:54 +01:00
Ivan Shakhov
b874e84147
reorder solution configurations + migration
...
(cherry picked from commit ce01b83c4a
)
2020-03-25 11:38:54 +01:00
Thakee Nathees
5798c8135f
logic error in gdscript_parser.cpp for-loop-range
...
there was a logic error in for loop range argument that
check if all of the argument were constants, fixed
(cherry picked from commit bcbcf0f1ea
)
2020-03-25 09:45:47 +01:00
Thakee Nathees
40b53bc29a
duplicate arguments in a function handled
...
(cherry picked from commit 5424b626f9
)
2020-03-25 09:44:51 +01:00
Rafael Delboni
5736e43fe4
fix: Return only scenes for script owners on LSP completion
...
Fix : #36680
(cherry picked from commit 2f08f4ef4e
)
2020-03-25 09:44:09 +01:00
Rafael Delboni
ecfe9c24a2
Improve LSP completion using scene owner
...
Fixes : #36473
(cherry picked from commit 06bce137e3
)
2020-03-25 09:43:49 +01:00
Oliver Frank
41500249e3
Fix crash after closing a GDScript LSP session
...
(cherry picked from commit ed482f6167
)
2020-03-25 09:43:28 +01:00
of9
511105be67
Migrating language server from Websockets to raw TCP
...
(cherry picked from commit 24b27043fe
)
2020-03-25 09:43:05 +01:00
Ignacio Etcheverry
d1a5f8dbf2
[3.2] Sync csproj when files are changed from the Godot FileSystem dock
2020-03-18 17:57:45 +01:00
Thakee Nathees
708aab7920
typo in gdscript_workspace.cpp/remove_cache_parser() fixed
...
(cherry picked from commit 07c99340d1
)
2020-03-09 09:51:59 +01:00
Phischermen
69c1805735
Added parameters to Load()
...
(cherry picked from commit 1b0819bd59
)
2020-03-06 23:55:25 +01:00
Rémi Verschelde
98d0bf7d7a
assimp: Clean and document buildsystem, prepare for unbundling
...
- Improve the SCsub to allow unbundling and remove unnecessary code.
- Move files around to match upstream source.
- Re-sync with upstream commit 308db73d0b3c2d1870cd3e465eaa283692a4cf23
to ensure we don't have local modifications.
- Doesn't actually build against current version 5.0.1 due to the lack
of the new ArmaturePopulate API that Gordon authored. We'll have to
wait for a public release with that API (5.1?) to enable unbundling.
(cherry picked from commit 9d8a9ea826
)
2020-03-06 23:53:23 +01:00
Rémi Verschelde
4c325c0732
Mono: Fix detection of Apple platforms in build script
...
(cherry picked from commit 5b040ef2e8
)
2020-03-06 23:51:26 +01:00
Ivan Shakhov
88f0cd0b27
On Windows find Rider installed for CurrentUser
...
(cherry picked from commit c95e20a089
)
2020-03-04 12:40:15 +01:00
Raul Santos
447acafa97
Fix missing null check in Mono Binding of GD.print
...
(cherry picked from commit 6b9c22542f
)
2020-03-04 12:40:15 +01:00
Hugo Locurcio
a78bbcf8ce
Improve the RegEx class documentation
...
This closes https://github.com/godotengine/godot-docs/issues/2522 .
(cherry picked from commit 5b78f5c464
)
2020-03-04 12:40:14 +01:00
Hugo Locurcio
08cb8420f7
Mention the `duration` parameter unit in `UPNP.add_port_mapping()`
...
(cherry picked from commit 810be27c78
)
2020-03-04 12:40:14 +01:00
Hugo Locurcio
d679edfa7f
Add a practical example for `@GDScript.linear2db()`
...
One of its most common applications in games is for volume sliders.
See https://www.dr-lex.be/info-stuff/volumecontrols.html for
more information.
(cherry picked from commit a6fd6b78dd
)
2020-03-04 12:40:14 +01:00