Max Beier
Max Beier
Same for me. After I instantiated a `PackedScene`, the resulting children from that new node are (according to the errors) not in the tree. EDIT: Not only in `@tool` scripts,...
@Nazarwadim I did, but only the parent. Do I need to add the children separately as well?
Here's the relevant part, I don't think there's anything wrong ```gdscript var sections: Array[Section] = [] func _load_types(): var path := "res://objects/sections/types/" var dir := DirAccess.open(path) types = [] sections...
This all works fine, the error is when I try to access the global_position of the sockets (the children) of the section. ```gdscript new_section.global_position = section.global_position + (socket.global_position - new_socket.global_position)...
I've managed to compile it to a DyLib with apple's native Clang installed on 14.6.1. Not sure if that's the issue. ```Cmake cmake_minimum_required(VERSION 3.13) project(Convenience VERSION 0.0.1 LANGUAGES CXX) #...