01f80201bf
Merge pull request #38645 from KoBeWi/FMR
...
Add filter, map and reduce to Array
2021-05-06 20:44:01 +02:00
3f078c99f6
Rename IP_Unix, IP_Address and TCP_Server to remove underscores
2021-05-06 02:52:01 +02:00
e905e8f145
Highlight control flow keywords with a different color
...
This makes them easier to distinguish from other keywords.
2021-05-05 22:38:12 +02:00
d89d7ecd08
Add PackedDataContainer data pointer check for non nullable
2021-05-05 21:17:49 +05:00
c50acc7339
Add filter, map and reduce to Array
2021-05-05 15:54:57 +02:00
02e96d9748
Fix error handling for user-defined ResourceFormatLoader.load
...
See #48463 .
2021-05-05 15:43:49 +02:00
c9e874b62d
Merge pull request #48442 from akien-mga/posmod-int64_t
...
Re-bind posmod, use int64_t instead of int
2021-05-04 15:15:52 +02:00
ea9cab3e76
Merge pull request #48430 from reduz/add-rpc-to-callable
...
Add RPC support to Callable
2021-05-04 14:07:21 +02:00
e196733e88
Re-bind posmod, use int64_t instead of int
...
Fixes #48420 , fixes #48421 .
The binding was missed when moving GDScript built-in to Global Scope it seems.
Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com >
2021-05-04 13:25:08 +02:00
0de9a7d803
Rename doubleclick to double_click
2021-05-04 04:38:08 -04:00
6653ec7cfe
Merge pull request #48418 from KoBeWi/press_enter_to_complete
...
Add Enter as alternate key to complete code
2021-05-04 09:25:33 +02:00
c76acf6890
Add RPC to Callable
...
-Up to each scripting language to implement this
-If not supported for the function, it will just error when you try to call
2021-05-03 19:21:37 -03:00
76903d2c44
Add Enter as alternate key to complete code
2021-05-03 19:28:59 +02:00
74bdd611bb
Check PHashTranslation generate p_from is valid
2021-05-03 20:40:21 +05:00
7610fc02a0
Cast Unix time to uint in the randomize function
...
This returns a double while the other values are all uint64_t. The
clang compiler gives a warning since converting the constant to double
loses precision.
2021-05-03 11:08:39 -03:00
f9b9992c25
Merge pull request #35245 from qarmin/unsigned_bit_shift
...
Don't allow to use in bit shift negative operands
2021-05-03 15:48:49 +02:00
015fc2ad4f
Merge pull request #48205 from Faless/net/4.x_url_parsing
...
[Net] Implement String::parse_url for parsing URLs.
2021-05-03 13:55:57 +02:00
0eb9b414c1
Add Engine.print_error_messages property to disable printing errors
...
This can be used during unit test suite runs to hide error and warning
messages.
Care should be taken when using this feature, as it can hide important
information if used wrongly.
2021-05-01 23:11:08 +02:00
4a7679e4dd
Merge pull request #48242 from reduz/particle-trails
...
Implement Particle Trails
2021-04-30 23:52:15 +02:00
90056460ad
Implement Particle Trails
...
-Enable the trails and set the length in seconds
-Provide a mesh with a skeleton and a skin
-Or, alternatively use one of the built-in TubeTrailMesh/RibbonTrailMesh
-Works deterministically
-Fixed particle collisions (were broken)
-Not working in 2D yet (that will happen next)
2021-04-30 17:38:02 -03:00
b6a21f85a7
Fix url_decode with mixed percent-encoding/Unicode strings. Treat Unix drive names as UTF-8 encoded.
2021-04-30 21:22:39 +03:00
9e9ac9f6ad
Merge pull request #46476 from DarknessCatt/master
...
Add fill method to Arrays and PackedArrays
2021-04-28 16:52:31 +02:00
a165eed73b
Fix area calculation of Face3
...
There seemed to be a bug in area calculation in Face3::get_area()-function. It returned the area of "imaginary" parallelogram instead of the triangle. Therefore the area returned was twice the real area. This manifested itself when using a hydro module for godot ( https://gitlab.com/ringtechsolutions/godot-tools/hydro/hydro ) causing the buoyancy to be two times the expected value.
"Reference": http://www.maths.usyd.edu.au/u/MOW/vectors/vectors-11/v-11-7.html
2021-04-28 11:09:41 +02:00
305b2a15bf
Merge pull request #48239 from akien-mga/goodbye-copymem
...
Core: Drop custom `copymem`/`zeromem` defines
2021-04-28 11:04:05 +02:00
054d8852b9
Add error_string function
2021-04-27 22:02:35 +02:00
a2c419bdc9
Raise error if Resource is of wrong type as function argument
2021-04-27 21:24:08 +02:00
95cfce661b
Merge pull request #48050 from JFonS/occlusion_culling
2021-04-27 19:07:12 +02:00
8247667a3e
Core: Drop custom copymem/zeromem defines
...
We've been using standard C library functions `memcpy`/`memset` for these since
2016 with 67f65f6639 .
There was still the possibility for third-party platform ports to override the
definitions with a custom header, but this doesn't seem useful anymore.
2021-04-27 16:26:27 +02:00
72bd64c1d5
Merge pull request #47398 from Faless/feature/network-local-port-salvaged
2021-04-27 15:04:30 +02:00
5d124c4a8f
Remove uses of auto for better readability and online code reviews
...
The current code style guidelines forbid the use of `auto`.
Some uses of `auto` are still present, such as in UWP code (which
can't be currently tested) and macros (where removing `auto` isn't
easy).
2021-04-26 14:59:28 +02:00
3bb40669d5
[Net] Implement String::parse_url for parsing URLs.
...
Splits the URL into (scheme, host, port, path).
Supports both literal IPv4 and IPv6.
Strip credentials when present (e.g. http://user:pass@example.com/ ).
Use that function in both HTTPRequest and WebSocketClient.
2021-04-26 09:55:24 +02:00
4d9d99bb82
Implement occlusion culling
...
Added an occlusion culling system with support for static occluder meshes.
It can be enabled via `Project Settings > Rendering > Occlusion Culling > Use Occlusion Culling`.
Occluders are defined via the new `Occluder3D` resource and instanced using the new
`OccluderInstance3D` node. The occluders can also be automatically baked from a
scene using the built-in editor plugin.
2021-04-23 21:45:23 +02:00
12f826da7d
NodePath: Remove unimplemented get_parent() method
...
Fixes #48100 .
2021-04-23 12:37:53 +02:00
22efa850bd
Make randomize() use unix time too
2021-04-22 21:08:33 +02:00
3d46f28558
Add type_traits include for std::is_trivially_destructible
2021-04-22 16:23:55 +02:00
efd27a63c1
Add fill method to Arrays and PackedArrays
2021-04-21 11:33:53 -03:00
a9ecf66342
Merge pull request #47956 from vnen/gdscript-double-stack
...
GDScript: Use special stack space for temporaries to reduce type changes
2021-04-20 17:39:09 +02:00
2b730cad90
Use multiple threads to import.
...
- For now everything imports multithreaded by default (should work I guess, let's test).
- Controllable per importer
Early test benchmark. 64 large textures (importing as lossless, _not_ as vram) on a mobile i7, 12 threads:
Importing goes down from 46 to 7 seconds.
For VRAM I will change the logic to use a compressing thread in a subsequent PR, as well as implementing Betsy.
2021-04-19 14:12:22 -03:00
7e215a4b54
Merge pull request #35666 from Calinou/inputmap-nonexistent-suggestions
...
Print suggestions when requesting a nonexistent InputMap action
2021-04-18 11:39:12 +02:00
71b254f68e
Print suggestions when requesting a nonexistent InputMap action
...
Co-authored-by: Marc Gilleron <marc.gilleron@gmail.com >
2021-04-18 02:38:42 +02:00
0fb4dbf1bd
Avoid creating joy_names map entries when using Map operator[]
2021-04-17 20:29:04 +01:00
a6c5938909
Remove return value type adjust of builtin method calls
...
Make calls faster with the caveat that the caller needs to make sure
that the return value type is already correct.
2021-04-16 12:04:34 -03:00
200d9a734c
Merge pull request #47701 from vnen/gdscript-test-runner
2021-04-16 10:34:39 +02:00
a3ca7844b3
Merge pull request #47726 from dalexeev/patch-1
...
Fix `Color::get_{r,g,b,a}8`
2021-04-16 10:30:53 +02:00
1eaaf2f9a2
Separate set.h from map.h
2021-04-14 11:43:45 +02:00
026b8497d1
Fix PackedFloat32Array get index not working
2021-04-12 23:33:06 +02:00
4d5c8e0b18
This renames PacketPeerUDP.listen to bind.
2021-04-12 21:05:33 +02:00
da8c2310b5
Allow local port control on net_socket connections
2021-04-12 21:05:33 +02:00
33d6eccdec
Fix _File::get_buffer length always set to p_length
2021-04-11 23:11:13 +02:00
c1b4755aa1
Merge pull request #47761 from reduz/packedbytearray-marshalling
...
Add marshalling to PackedByteArray
2021-04-10 19:17:31 +02:00