mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Add support for WebXR
This commit is contained in:
parent
ee903becc8
commit
22cfa90ef5
16 changed files with 2312 additions and 1 deletions
|
@ -25,3 +25,15 @@ def add_js_libraries(env, libraries):
|
|||
if "JS_LIBS" not in env:
|
||||
env["JS_LIBS"] = []
|
||||
env.Append(JS_LIBS=env.File(libraries))
|
||||
|
||||
|
||||
def add_js_pre(env, js_pre):
|
||||
if "JS_PRE" not in env:
|
||||
env["JS_PRE"] = []
|
||||
env.Append(JS_PRE=env.File(js_pre))
|
||||
|
||||
|
||||
def add_js_externs(env, externs):
|
||||
if "JS_EXTERNS" not in env:
|
||||
env["JS_EXTERNS"] = []
|
||||
env.Append(JS_EXTERNS=env.File(externs))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue