Tomasz Chabora

Results 934 comments of Tomasz Chabora

I checked the MRP and the new constant has no effect for some reason. It's already 0 by default.

I just realized we have `EditorInterface.mark_scene_as_unsaved()` 🙃 The new method is more general, but it makes the old one redundant. EDIT: Maybe not completely redundant, as that method adds a...

Clearing history is necessary for operations that do changes to the scene which you can't undo them. Also exposing EditorUndoRedoManager is needed for things like #78355 (currently you need an...

How is #87823 related? Is runnable Android preset optional to debug on device? Why does re-plugging fix the issue? A solution could be expanding #87823 to look for Android folder,...

I tried printing `changed_settings` and for some reason after #95171 literally every setting is marked as changed. EDIT: Apparently the `save()` I disabled is required to unmark properties set as...

Also related: #87081 and likely #51547 I don't think this property makes sense specifically in BoxContainer. While it's probably the most commonly used one, you can as well run into...

> What do you think about moving the property and signal to Container, when Container call fit_child_in_rect, check the flag and emit singal? That makes more sense.

Check GDVIRTUAL. It allows making virtual methods to be overriden in script.

Overriding `_fit_child_in_rect` makes the container no longer work. Maybe the method should return `bool` to enable/disable override. Another thing is that container's minimum size will use the default layout, not...

I'm not sure about the best solution. #87081 is the only one that allows using AnimationPlayer, but it duplicates transform properties. I know some users use containers to set layout...