mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
14 lines
316 B
GDScript
14 lines
316 B
GDScript
tool
|
|
extends PanelContainer
|
|
|
|
var edited_world
|
|
|
|
func refresh() -> void:
|
|
$TabContainer/World/HSplitContainer/ResourcePropertyList.edit_resource(edited_world)
|
|
$TabContainer/World/VBoxContainer/DataList.set_edited_resource(edited_world)
|
|
|
|
func set_wgworld(wgw : WorldGenWorld) -> void:
|
|
edited_world = wgw
|
|
|
|
refresh()
|