mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Add Vector2:Ceil()
This commit is contained in:
parent
bdffd3741b
commit
1f35f02e15
1 changed files with 1 additions and 0 deletions
|
@ -84,6 +84,7 @@ impl LuaUserData for Vector2 {
|
|||
Ok(Vector2(this.0.min(rhs.0)))
|
||||
});
|
||||
methods.add_method("Abs", |_, this, ()| Ok(Vector2(this.0.abs())));
|
||||
methods.add_method("Ceil", |_, this, ()| Ok(Vector2(this.0.ceil())));
|
||||
// Metamethods
|
||||
methods.add_meta_method(LuaMetaMethod::Eq, userdata_impl_eq);
|
||||
methods.add_meta_method(LuaMetaMethod::ToString, userdata_impl_to_string);
|
||||
|
|
Loading…
Add table
Reference in a new issue