Add vector feature to Luau
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
pub static RUNTIME: &str = include_str!("../runtime/runtime.lua");
|
||||
pub static NUMERIC: &str = include_str!("../runtime/numeric.lua");
|
||||
pub static NUMERIC: &str = if cfg!(feature = "vector") {
|
||||
include_str!("../runtime/numeric_v3.lua")
|
||||
} else {
|
||||
include_str!("../runtime/numeric_tb.lua")
|
||||
};
|
||||
|
||||
pub use translator::{from_inst_list, from_module_typed, from_module_untyped};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user