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
a511a26ad8
commit
a54a2d65e1
16 changed files with 2308 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
from emscripten_helpers import run_closure_compiler, create_engine_file, add_js_libraries
|
||||
from emscripten_helpers import run_closure_compiler, create_engine_file, add_js_libraries, add_js_pre, add_js_externs
|
||||
from methods import get_compiler_version
|
||||
from SCons.Util import WhereIs
|
||||
|
||||
|
@ -133,6 +133,8 @@ def configure(env):
|
|||
|
||||
# Add helper method for adding libraries.
|
||||
env.AddMethod(add_js_libraries, "AddJSLibraries")
|
||||
env.AddMethod(add_js_pre, "AddJSPre")
|
||||
env.AddMethod(add_js_externs, "AddJSExterns")
|
||||
|
||||
# Add method that joins/compiles our Engine files.
|
||||
env.AddMethod(create_engine_file, "CreateEngineFile")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue