diff --git a/crates/lune-roblox/src/datatypes/types/vector2.rs b/crates/lune-roblox/src/datatypes/types/vector2.rs index c402808..370df7b 100644 --- a/crates/lune-roblox/src/datatypes/types/vector2.rs +++ b/crates/lune-roblox/src/datatypes/types/vector2.rs @@ -63,6 +63,14 @@ impl LuaUserData for Vector2 { methods.add_method("Dot", |_, this, rhs: LuaUserDataRef| { Ok(this.0.dot(rhs.0)) }); + methods.add_method( + "FuzzyEq", + |_, this, (rhs, epsilon): (LuaUserDataRef, f32)| { + let eq_x = (rhs.0.x - this.0.x).abs() <= epsilon; + let eq_y = (rhs.0.y - this.0.y).abs() <= epsilon; + Ok(eq_x && eq_y) + }, + ); methods.add_method( "Lerp", |_, this, (rhs, alpha): (LuaUserDataRef, f32)| {