Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 505 Bytes

misc.md

File metadata and controls

31 lines (22 loc) · 505 Bytes

Architecture

flowchart LR

subgraph JS Environment
    v8-->v8.impl
    quickjs-->quickjs.impl
    web{emscripten}-->web.impl
end 

v8.impl-->bridge
quickjs.impl-->bridge
web.impl-->bridge

subgraph Godot Integration
    bridge-->weaver
    bridge-->weaver-editor
end

bridge{{bridge: JS Runtime Bridge}}
internal(internal: Native/Godot Helper Functions)
weaver(weaver: Godot Scripting Intgeration)
weaver-editor(weaver-editor: Godot Editor Intgeration)

Loading

Go Back