Justo Delgado
Justo Delgado
It might be a neko issue https://github.com/HaxeFoundation/neko/pull/14
You can get the object variables at runtime with [`Object.get_property_list()`](https://docs.godotengine.org/en/3.2/classes/class_object.html#id2) and then filter those. This might work: ```gdscript func _ready(): var list = get_property_list() for v in list: if v.usage...
I had the same or similar crash in `v4.0.stable.official [92bee43ad]` I've got this backtrace in a custom build from 1c1524a651e6d670d0d591b050d8c4bbb721d6e9 ``` ERROR: FATAL: Index p_index = 214 is out of...
I've been debugging a bit and it seems that the `items.rect_cache` is bad. In this block https://github.com/godotengine/godot/blob/d3415ae5aa18e124f65161881ec45e9930e79d36/scene/gui/item_list.cpp#L1201-L1209 the `if(rcache...)` condition is true and keeps changing `lo` to `mid + 1`...
Thanks! I tested the PR locally and the crash doesn't happen anymore but, sadly, the root cause of the issue is still there as the `Gold Donors` list is empty:...
Yep, looks like the glyph is broken:  Because `gl.y_off` is `NaN` it ends setting the ascent and descent to `NaN` here https://github.com/godotengine/godot/blob/c1128e911ccd6f1e8c35646df804d894652a58f1/modules/text_server_adv/text_server_adv.cpp#L4197-L4198 And, yep, it looks like the font...
Looks like you have an `AnimationTree` active. It will override the `AnimationPlayer` and will force the animation values so you won't be able to edit it. You'll need to deactivate...
Done the first part (the ``, ``,...) in https://github.com/TerryCavanagh/diceymodgeons/commit/b003f3be7d375dbca7f980f9e0f7ce060529e7e6 The other `` variables change to a `99` in red. I haven't changed the `FREEx` slots yet.
Updated the load an image example. `Image` already has a `load()` function that will do all the work for us (reading the file and using the correct loader to load...
I had the same issue. The game crashed. I fixed it by following the steps of this issue https://github.com/HaxeFoundation/hxcpp/issues/626#issuecomment-335843891 After changing that line build the game again. Now the game...