mirror of
https://github.com/Relintai/utilities_gamedev.git
synced 2024-11-12 10:35:11 +01:00
15 lines
249 B
GDScript
15 lines
249 B
GDScript
tool
|
|
extends ViewportContainer
|
|
|
|
export(NodePath) var container_path : NodePath
|
|
|
|
var _container : Node
|
|
|
|
func _ready() -> void:
|
|
_container = get_node(container_path)
|
|
|
|
func preview(n: Control) -> void:
|
|
_container.add_child(n)
|
|
n.owner = _container
|
|
|