Complete Entity System: Parent/Child Hierarchies & Distance Query Support #2

Open
MayaTheShy wants to merge 22 commits from feature/support-all-entity-types into main
Showing only changes of commit dfa8b709ec - Show all commits

View File

@@ -177,6 +177,12 @@ impl Reify for BridgeState {
));
Some(text.build())
}
5 => {
// Image entity: use PanelUI as a placeholder for now
eprintln!("[bridge/reify] Image entity type detected for node {}. Using PanelUI as placeholder.", id);
let panel = ast::elements::PanelUI::default();
Some(panel.build())
}
_ => {
match Model::direct(&model_path) {
Ok(mut model) => {