You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@lborg019, The AST conforms to a certain schema, and will need to be converted to a scene with actors.
let ast = import_from_python("./mypythonfile.py");for node in ast {match node {Node::Module(data) => {
scene.add(Module::new(data));},// Match other types of modules// Repeat some stuff recursively
_ => ()}}
alaingalvan
changed the title
Python server to parse python files into abstract syntax trees (AST)
Python to Scene Graph
Jun 7, 2017
I'm on it
The text was updated successfully, but these errors were encountered: