Run godot --convert-3to4 (automated conversion)
Apply Godot 4.6 automated conversion: renames Spatial.translate->position, margin_*->offset_*, tool->@tool, .empty()->.is_empty(), DynamicFont->FontFile, onready->@onready, export()->@export, and many more. 127 files changed by the tool. Manual fixes still required for: - godot_db_manager plugin (incompatible APIs: WindowDialog, Tabs, etc.) - lod plugin (Spatial -> Node3D renames) - ResourceLoader.load_interactive removed -> load_threaded_request - OS.set_window_fullscreen removed -> DisplayServer - Viewport.set_size_override removed Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -9,33 +9,33 @@ __meta__ = {
|
||||
}
|
||||
|
||||
[node name="MarginContainer" type="MarginContainer" parent="."]
|
||||
margin_right = 1280.0
|
||||
margin_bottom = 1280.0
|
||||
rect_min_size = Vector2( 1280, 1280 )
|
||||
offset_right = 1280.0
|
||||
offset_bottom = 1280.0
|
||||
custom_minimum_size = Vector2( 1280, 1280 )
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
custom_constants/margin_right = 10
|
||||
custom_constants/margin_top = 10
|
||||
custom_constants/margin_left = 10
|
||||
custom_constants/margin_bottom = 10
|
||||
theme_override_constants/margin_right = 10
|
||||
theme_override_constants/margin_top = 10
|
||||
theme_override_constants/margin_left = 10
|
||||
theme_override_constants/margin_bottom = 10
|
||||
|
||||
[node name="TabContainerGeneral" type="TabContainer" parent="MarginContainer"]
|
||||
margin_left = 10.0
|
||||
margin_top = 10.0
|
||||
margin_right = 1270.0
|
||||
margin_bottom = 1270.0
|
||||
rect_min_size = Vector2( 0, 1080 )
|
||||
offset_left = 10.0
|
||||
offset_top = 10.0
|
||||
offset_right = 1270.0
|
||||
offset_bottom = 1270.0
|
||||
custom_minimum_size = Vector2( 0, 1080 )
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
tab_align = 0
|
||||
tab_alignment = 0
|
||||
|
||||
[node name="Generale" type="Tabs" parent="MarginContainer/TabContainerGeneral"]
|
||||
[node name="Generale" type="TabBar" parent="MarginContainer/TabContainerGeneral"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_left = 4.0
|
||||
margin_top = 32.0
|
||||
margin_right = -4.0
|
||||
margin_bottom = -4.0
|
||||
offset_left = 4.0
|
||||
offset_top = 32.0
|
||||
offset_right = -4.0
|
||||
offset_bottom = -4.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
scrolling_enabled = false
|
||||
|
||||
Reference in New Issue
Block a user