kleonc
kleonc
> What to do, then? Should that PR be reverted? Should the transform be updated **immediately** (likely yes)? Reverted no, it fixed some other issues. From https://github.com/godotengine/godot/pull/80233#issue-1835941578: > This PR...
Duplicate/alternative: #65811.
There's no bug here indeed, should be better documented. I'll open a PR for the class reference later. --- There are 2 separate sets of transform flags (flips+transpose): - Per...
In 4.2.2 (and earlier) there is a discrepancy between what global position "means" in context of `Control.set_global_position` and `Control.get_global_position`. unscaled, unrotated | pivot at center, scaled, rotated -|- | For...
Note I've opened #101719 which changes the behavior to the alternative mentioned in https://github.com/godotengine/godot/issues/95798#issuecomment-2297502534.
> CustomNode's `prop` points to Node2. The `Test` node tries to duplicate CustomNode, but `prop` remains null. The error "failed to duplicate" is output to the console. Your code is:...
With the updated MRP: Can't reproduce in: - v4.2.2.stable.official [15073afe3] - v4.3.dev6.official [89850d553] Can reproduce in: - v4.3.beta1.official [a4f2ea91a] - v4.3.stable.official [77dcf97d8] - v4.4.beta3.official [06acfccf8]
>  > > Look, i want the ArmL was child of Body, so I add it to the Body i want ArmL behind Body, so I set ArmL's Show...
> May be the same issue as #95612 Tested MRP, could reproduce the issue in: • v4.3.stable.official [77dcf97d8] • v4.4.dev.gh-96140 [7a9ed885e] (artifact from #96140) Meaning it's not the same issue...
This makes all vectors display in single line: ```gdscript extends Node @export var v2: Vector2 @export var v3: Vector3 @export var v4: Vector4 ```  (unfortunately couldn't...