refactor: remove redundant lua type wrappers

This commit is contained in:
2025-02-17 23:09:44 -05:00
parent 2cba4d797f
commit 0303244897
9 changed files with 58 additions and 211 deletions

View File

@@ -28,7 +28,7 @@ impl FromLua for Vec3 {
} else {
Err(mlua::Error::FromLuaConversionError {
from: value.type_name(),
to: "Position".to_string(),
to: "Vec3".to_string(),
message: None,
})
}