We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0e23095 + 3ecf0a9 commit 9fa9e63Copy full SHA for 9fa9e63
crates/languages/bevy_mod_scripting_lua/src/bindings/script_value.rs
@@ -59,7 +59,6 @@ impl FromLua for LuaScriptValue {
59
Value::String(s) => ScriptValue::String(s.to_str()?.to_owned().into()),
60
Value::Function(f) => ScriptValue::Function(
61
(move |_context: FunctionCallContext, args: VecDeque<ScriptValue>| {
62
- println!("Lua function called with args: {args:?}");
63
match f.call::<LuaScriptValue>(
64
args.into_iter()
65
.map(LuaScriptValue)
0 commit comments