1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00
Files
godot/core
Pedro J. Estébanez 26edc6cd41 Promote object validity checks to release builds
Extra:
- Optimized the debug-only check about why the object is null to determine if it's because it has been deleted (the RC is enough; no need to check the ObjectDB).
- Because of the previous point. the debugger being attached is not required anymore for giving the "Object was deleted" error; from now, it only matters that it's a debug build.
- `is_instance_valid()` is now trustworthy. It will return `true` if, and only if, the last object assigned to a `Variant` is still alive (and not if a new object happened to be created at the same memory address of the old one).
- Replacements of `instance_validate()` are used where possible `Variant::is_invalid_object()` is introduced to help with that. (GDScript's `is_instance_valid()` is good.)
2021-09-21 10:39:04 +02:00
..
2021-08-18 23:19:44 +02:00
2021-07-14 11:43:23 +01:00
2021-07-14 11:43:23 +01:00
2021-06-16 11:56:25 +01:00
2021-07-14 11:43:23 +01:00
2021-07-20 13:05:13 +02:00
2021-06-16 11:56:25 +01:00
2021-08-18 00:46:51 +08:00
2021-08-18 00:46:51 +08:00
2021-07-06 11:24:06 +02:00
2021-01-13 16:17:06 +01:00