luaur-compiler 0.1.2

Luau source-to-bytecode compiler (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::functions::set_compile_constant_vector::set_compile_constant_vector;
use crate::type_aliases::lua_compile_constant::lua_CompileConstant;

pub fn luau_set_compile_constant_vector(
    constant: lua_CompileConstant,
    x: f32,
    y: f32,
    z: f32,
    w: f32,
) {
    set_compile_constant_vector(constant as _, x, y, z, w);
}