Skip to content

Commit

Permalink
fix: return nil if component doesn't exist in lua script. (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
zicklag authored Nov 24, 2023
1 parent d939072 commit 8ac0772
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions framework_crates/bones_scripting/src/lua/bindings/components.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,16 @@ pub fn metatable(ctx: Context) -> Table {
let ecsref = EcsRef {
data: EcsRefData::Component(ComponentRef { store, entity }),
path: default(),
};

// Return nil if the component is not present
if ecsref.borrow().schema_ref().is_err() {
stack.replace(ctx, Value::Nil);
return Ok(CallbackReturn::Return);
}
.into_value(ctx);
stack.push_front(ecsref);

let ecsref = ecsref.into_value(ctx);
stack.replace(ctx, ecsref);

Ok(CallbackReturn::Return)
}),
Expand Down

0 comments on commit 8ac0772

Please sign in to comment.