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