summaryrefslogtreecommitdiffstats
path: root/core/object
Commit message (Expand)AuthorAgeFilesLines
* Allow coexistance of GDScript and GDExtension virtual methods in the same objectanrp2023-10-191-2/+2
* Fix tilemap live editing while game is runningpancelor2023-10-142-21/+24
* Merge pull request #72751 from dalexeev/doc-comment-colorRémi Verschelde2023-10-093-0/+12
|\
| * Highlight doc comments in a different colorDanil Alexeev2023-10-083-0/+12
* | Merge pull request #83003 from AThousandShips/null_check_extraRémi Verschelde2023-10-091-3/+3
|\ \
| * | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-10-081-3/+3
| |/
* | Merge pull request #83002 from AThousandShips/safety_checkRémi Verschelde2023-10-091-2/+2
|\ \
| * | Replace `sanity` with `safety` for checksA Thousand Ships2023-10-081-2/+2
| |/
* / Fixes to allow object-less callables throughout GodotMai Lavelle2023-10-062-16/+39
|/
* Add vararg call() method to C++ Callablekobewi2023-10-051-9/+2
* Merge pull request #82799 from CedNaru/feature/expose_free_instance_bindingRémi Verschelde2023-10-052-2/+2
|\
| * expose Object::free_instance_binding to GDExtensionCed Naru2023-10-042-2/+2
* | Core: Fix `Object::has_method()` for script static methodsDanil Alexeev2023-10-044-1/+14
|/
* Merge pull request #82682 from dsnopek/gdextension-dont-deprecate-script-cate...Rémi Verschelde2023-10-031-2/+0
|\
| * GDExtension: Don't deprecate old method of getting script categoryDavid Snopek2023-10-021-2/+0
* | Fix expected argument count for `Callable` call errorsDanil Alexeev2023-09-291-8/+10
|/
* add GDExtensionScriptInstanceGetClassCategoryDavid Cambré2023-09-271-3/+14
* Merge pull request #80527 from raulsntos/dotnet/generate-compat-methods-from-...Rémi Verschelde2023-09-262-3/+60
|\
| * C#: Generate and use compat methodsRaul Santos2023-09-192-3/+60
* | Merge pull request #82332 from Sauermann/fix-struct-typeRémi Verschelde2023-09-261-1/+1
|\ \
| * | Fix type of notification_funcMarkus Sauermann2023-09-251-1/+1
* | | Merge pull request #80284 from dsnopek/gdextension-hot-reloadRémi Verschelde2023-09-266-12/+163
|\ \ \ | |/ / |/| |
| * | Implement reloading of GDExtensionsDavid Snopek2023-09-256-12/+163
* | | Merge pull request #82195 from AThousandShips/radian_fixRémi Verschelde2023-09-251-1/+1
|\ \ \
| * | | Replace `radians` range hint with `radians_as_degrees`A Thousand Ships2023-09-251-1/+1
| |/ /
* | | Merge pull request #81101 from 398utubzyt/dotnet/abstract-class-supportRémi Verschelde2023-09-256-3/+25
|\ \ \
| * | | C#: Abstract script class support398utubzyt2023-09-156-3/+25
* | | | Merge pull request #78573 from dalexeev/editor-create-script-class-nameRémi Verschelde2023-09-253-0/+6
|\ \ \ \ | |_|/ / |/| | |
| * | | Editor: Remove unused Class Name field from Create Script dialogDanil Alexeev2023-09-123-0/+6
* | | | Merge pull request #81521 from dsnopek/method-bind-default-argument-hash-fixRémi Verschelde2023-09-222-7/+10
|\ \ \ \
| * | | | Fix method hashes with default argumentsDavid Snopek2023-09-212-7/+10
* | | | | Add functions for non-ptr style virtual calls in GDExtensionJeff Ward2023-09-192-7/+22
| |_|/ / |/| | |
* | | | [Core] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-116-45/+45
| |/ / |/| |
* | | Merge pull request #81515 from dsnopek/gdextension-validate-property-objectRémi Verschelde2023-09-113-1/+25
|\ \ \
| * | | Allow implementing `Object::_validate_property()` from GDExtensionDavid Snopek2023-09-103-1/+25
| |/ /
* | | Merge pull request #70329 from Daylily-Zeleen/daylily-zeleen/register_interna...Rémi Verschelde2023-09-113-1/+28
|\ \ \ | |/ / |/| |
| * | Allow GDExtension to register unexposed class.Daylily-Zeleen2023-09-043-1/+28
* | | Merge pull request #81388 from YuriSizov/core-gdvirtual-but-less-confused-abo...Rémi Verschelde2023-09-075-94/+172
|\ \ \
| * | | Extract ScriptInstance to simplify includesYuri Sizov2023-09-065-94/+172
* | | | Merge pull request #81304 from ajreckof/Change-precedence-in-rules-to-make-lo...Rémi Verschelde2023-09-071-1/+1
|\ \ \ \
| * | | | Change precedence in rules to make location after proper casing.ajreckof2023-09-051-1/+1
| |/ / /
* | | | Merge pull request #81261 from dsnopek/gdextension-validate-propertyRémi Verschelde2023-09-071-1/+18
|\ \ \ \ | |/ / / |/| | |
| * | | Allow implementing `ScriptInstance::validate_property()` from GDExtensionDavid Snopek2023-09-041-1/+18
* | | | Merge pull request #74809 from Chaosus/completion_color_xyzwRémi Verschelde2023-09-041-1/+3
|\ \ \ \ | |_|/ / |/| | |
| * | | Add coloring for completion of vector componentsYuri Rubinsky2023-08-301-1/+3
* | | | Merge pull request #81221 from dalexeev/editor-inspector-and-signal-dock-impr...Rémi Verschelde2023-09-032-2/+2
|\ \ \ \ | |_|/ / |/| | |
| * | | Editor: Inspector and Signal docks improvementsDanil Alexeev2023-09-022-2/+2
| |/ /
* | | GDExtension: fix `bool` unknown in CJan Haller2023-09-021-1/+1
* | | GDExtension: Allocate `GDExtensionScriptInstanceInfo2` for compatibility on t...David Snopek2023-08-311-0/+4
|/ /
* | Fix Object::notification orderMarkus Sauermann2023-08-304-10/+38