feat(alias): add aliasing remote signals/methods

This commit is contained in:
Nova
2022-06-19 23:31:38 -04:00
parent 82140c09fa
commit cceda8f72d
6 changed files with 122 additions and 56 deletions

View File

@@ -5,7 +5,6 @@ use glam::Mat4;
use std::sync::Arc;
pub fn create_root(client: &Arc<Client>) {
let node = Node::create("", "", false);
let node = client.scenegraph.add_node(node);
let node = Node::create(client, "", "", false).add_to_scenegraph();
let _ = Spatial::add_to(&node, None, Mat4::IDENTITY);
}